Skip to content

Commit

Permalink
Remove obsolete variable and update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov committed Oct 2, 2024
1 parent 67e5afb commit f81af09
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 21 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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


# -------------------------------------------------------------------------------------------------
Expand Down
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5 |

<!-- TFDOCS_PROVIDER_END -->

Expand All @@ -26,7 +26,8 @@

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5 |

<!-- TFDOCS_REQUIREMENTS_END -->

Expand All @@ -45,14 +46,6 @@ Type: `string`

The following input variables are optional (have default values):

### <a name="input_account_assume_role"></a> [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"`

### <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name)

Description: The name of the OpenSearch cluster.
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 7 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
terraform {
required_version = "~> 1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5"
}
}
required_version = ">= 1.0"
}

0 comments on commit f81af09

Please sign in to comment.