diff --git a/Makefile b/Makefile index 5f46363..a6832d9 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,10 @@ TF_MODULES = $(sort $(dir $(wildcard $(CURRENT_DIR)modules/*/))) # ------------------------------------------------------------------------------------------------- # Container versions # ------------------------------------------------------------------------------------------------- -TF_VERSION = 1.0.11 -TFDOCS_VERSION = 0.16.0-0.31 -FL_VERSION = 0.4 -JL_VERSION = 1.6.0-0.5 +TF_VERSION = 1.5.7 +TFDOCS_VERSION = 0.16.0-0.34 +FL_VERSION = latest-0.8 +JL_VERSION = 1.6.0-0.14 # ------------------------------------------------------------------------------------------------- diff --git a/README.md b/README.md index 76d705d..0682a58 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ | Name | Version | |------|---------| -| [aws](#provider\_aws) | n/a | +| [aws](#provider\_aws) | >= 5 | @@ -26,7 +26,8 @@ | Name | Version | |------|---------| -| [terraform](#requirement\_terraform) | ~> 1.0 | +| [terraform](#requirement\_terraform) | >= 1.0 | +| [aws](#requirement\_aws) | >= 5 | @@ -45,14 +46,6 @@ Type: `string` The following input variables are optional (have default values): -### [account\_assume\_role](#input\_account\_assume\_role) - -Description: A name of assume role used in the AWS account to execute terraform. - -Type: `string` - -Default: `"ASSUME-ATLANTIS"` - ### [cluster\_name](#input\_cluster\_name) Description: The name of the OpenSearch cluster. diff --git a/variables.tf b/variables.tf index 9987579..0494542 100644 --- a/variables.tf +++ b/variables.tf @@ -1,9 +1,3 @@ -variable "account_assume_role" { - description = "A name of assume role used in the AWS account to execute terraform." - type = string - default = "ASSUME-ATLANTIS" -} - variable "cluster_name" { description = "The name of the OpenSearch cluster." type = string diff --git a/versions.tf b/versions.tf index ab789a3..5ef3c40 100644 --- a/versions.tf +++ b/versions.tf @@ -1,3 +1,9 @@ terraform { - required_version = "~> 1.0" + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5" + } + } + required_version = ">= 1.0" }