-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update version.tf and remove unuse variable
- Loading branch information
1 parent
8af7e4a
commit d9dfef7
Showing
4 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Terraform version | ||
terraform { | ||
required_version = ">= 1.5.7" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.20.0" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Terraform version | ||
terraform { | ||
required_version = ">= 1.5.7" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.20.0" | ||
} | ||
} | ||
} |