This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert repo to work with Terraform 0.12 (#37)
* Switch tests to terraform 0.12 * Upgrade test/all.tf to 0.12 format * Terraform 0.12upgrade for root module * Terraform 0.12upgrade for vpc * Terraform 0.12upgrade of wildcard cert * Terraform 0.12upgrade of app_base * Terraform 0.12upgrade of command console * Terraform 0.12upgrade of database * Terraform 0.12upgrade of encryptkey * Terraform 0.12upgrade of fargate_cluster * Terrform 0.12upgrade ingress * Terrform 0.12upgrade lambda_cron * Remove unused soapbox module * Terraform 0.12upgrade of plain_instance * Terraform 0.12upgrade of static_site * Terraform 0.12upgrade of utilities * Clean-up automated warnings and validation errors * Add new recursive flag for fmt
- Loading branch information
1 parent
cd0e3a7
commit 3962e9d
Showing
89 changed files
with
1,323 additions
and
1,150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
output "app_sg_id" { | ||
value = "${aws_security_group.app_sg.id}" | ||
value = aws_security_group.app_sg.id | ||
} | ||
|
||
output "lb_tg_arn" { | ||
value = "${aws_alb_target_group.application_target_group.arn}" | ||
value = aws_alb_target_group.application_target_group.arn | ||
} | ||
|
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} |
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
Oops, something went wrong.