-
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.
Update version.tf and remove unuse variable (#51)
* feat: update version.tf and remove unuse variable * feat: update version.tf and remove unuse variable * feat: update version.tf and remove unuse variable * feat: update github-action version and use locals in example * feat: update gitinnore and acm version * feat: update tf version
- Loading branch information
1 parent
8af7e4a
commit 7eb9457
Showing
16 changed files
with
178 additions
and
97 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
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
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
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" | ||
} |
Binary file not shown.
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.6.1" | ||
|
||
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
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.6.1" | ||
|
||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.20.0" | ||
} | ||
} | ||
} |
Oops, something went wrong.