diff --git a/_examples/complete/example.tf b/_examples/complete/example.tf index 3a1c876..651c1f8 100644 --- a/_examples/complete/example.tf +++ b/_examples/complete/example.tf @@ -10,7 +10,7 @@ provider "aws" { ####---------------------------------------------------------------------------------- module "acm" { source = "clouddrove/acm/aws" - version = "1.3.0" + version = "1.4.1" name = "certificate" environment = "test" diff --git a/_examples/complete/outputs.tf b/_examples/complete/outputs.tf index 6fb1fbb..eef9623 100644 --- a/_examples/complete/outputs.tf +++ b/_examples/complete/outputs.tf @@ -1,19 +1,19 @@ output "api_id" { - value = join("", module.api_gateway.*.api_id) + value = join("", module.api_gateway[*].api_id) description = "The API identifier." } output "api_arn" { - value = join("", module.api_gateway.*.api_arn) + value = join("", module.api_gateway[*].api_arn) description = "The API arn." } output "api_endpoint" { - value = join("", module.api_gateway.*.api_endpoint) + value = join("", module.api_gateway[*].api_endpoint) description = "The URI of the API, of the form {api-id}.execute-api.{region}.amazonaws.com." } output "invoke_url" { - value = join("", module.api_gateway.*.invoke_url) + value = join("", module.api_gateway[*].invoke_url) description = "URL to invoke the API pointing to the stage" } \ No newline at end of file diff --git a/_examples/complete/versions.tf b/_examples/complete/versions.tf new file mode 100644 index 0000000..8ef3662 --- /dev/null +++ b/_examples/complete/versions.tf @@ -0,0 +1,11 @@ +# Terraform version +terraform { + required_version = ">= 1.5.7" + + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5.20.0" + } + } +} \ No newline at end of file diff --git a/_examples/vpc_link_api/versions.tf b/_examples/vpc_link_api/versions.tf new file mode 100644 index 0000000..8ef3662 --- /dev/null +++ b/_examples/vpc_link_api/versions.tf @@ -0,0 +1,11 @@ +# Terraform version +terraform { + required_version = ">= 1.5.7" + + required_providers { + aws = { + source = "hashicorp/aws" + version = ">= 5.20.0" + } + } +} \ No newline at end of file