Skip to content

Commit df9df02

Browse files
committed
Update module versions to latest release
1 parent 00e5e65 commit df9df02

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

tofu/config/qa/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99

1010
module "backend" {
11-
source = "github.com/codeforamerica/tofu-modules-aws-backend?ref=1.0.0"
11+
source = "github.com/codeforamerica/tofu-modules-aws-backend?ref=1.1.1"
1212

1313
project = "illinois-getchildcare"
1414
environment = "qa"
@@ -29,7 +29,7 @@ module "hosted_zones" {
2929

3030
# Create an S3 bucket and KMS key for logging.
3131
module "logging" {
32-
source = "github.com/codeforamerica/tofu-modules-aws-logging?ref=1.2.1"
32+
source = "github.com/codeforamerica/tofu-modules-aws-logging?ref=2.1.0"
3333

3434
project = "illinois-getchildcare"
3535
environment = "qa"
@@ -38,7 +38,7 @@ module "logging" {
3838
# Create a VPC with public and private subnets. Since this is a staging
3939
# environment, we'll use a single NAT gateway to reduce costs.
4040
module "vpc" {
41-
source = "github.com/codeforamerica/tofu-modules-aws-vpc?ref=1.1.0"
41+
source = "github.com/codeforamerica/tofu-modules-aws-vpc?ref=1.1.1"
4242

4343
cidr = "10.0.28.0/22"
4444
project = "illinois-getchildcare"

tofu/modules/il_gcc_application/main.tf

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module "secrets" {
77

88
secrets = {
99
"consumer/aws" = {
10-
description = "AWS Consumer API credentials for the IL-GCC Application." # is this needed?
10+
description = "AWS Consumer API credentials for the IL-GCC Application."
1111
recovery_window = var.secret_recovery_period
1212
},
1313
"sendgrid" = {
@@ -94,7 +94,7 @@ module "secrets" {
9494
}
9595
}
9696

97-
tags = { service = "document-transfer" }
97+
tags = { service = "il-gcc-application" }
9898
}
9999

100100
module "database" {
@@ -116,9 +116,9 @@ module "database" {
116116

117117
project = "illinois-getchildcare"
118118
environment = var.environment
119-
service = "application"
119+
service = "il-gcc-application"
120120

121-
tags = { service = "application" }
121+
tags = { service = "il-gcc-application" }
122122
}
123123

124124
# Deploy the IL-GCC Application to a Fargate cluster.
@@ -128,7 +128,7 @@ module "service" {
128128
project = "illinois-getchildcare"
129129
project_short = "il-gcc"
130130
environment = var.environment
131-
service = "application"
131+
service = "il-gcc-application"
132132
service_short = "app"
133133
domain = var.domain
134134
vpc_id = var.vpc_id
@@ -209,5 +209,5 @@ module "worker" {
209209
CONVERT_UPLOADS_TO_PDF = "${module.secrets.secrets["il-gcc"].secret_arn}:convert_uploads_to_pdf"
210210
}
211211

212-
tags = { service = "document-transfer" }
212+
tags = { service = "application-worker" }
213213
}

0 commit comments

Comments
 (0)