Skip to content

Commit

Permalink
use correct variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jvisker committed Nov 2, 2023
1 parent d0ffce1 commit e9a8102
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform-iac/modules/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module "my_fargate_api" {
aws_iam_policy.my_dynamo_policy.arn,
aws_iam_policy.my_s3_policy.arn
]

hosted_zone = module.acs.route53_zone
https_certificate_arn = module.acs.certificate.arn
public_subnet_ids = module.acs.public_subnet_ids
Expand Down Expand Up @@ -86,7 +87,7 @@ module "my_fargate_api" {
AfterAllowTraffic = null
}

health_check_grace_period_seconds = 300
health_check_grace_period = 300
}

resource "aws_dynamodb_table" "my_dynamo_table" {
Expand Down

0 comments on commit e9a8102

Please sign in to comment.