Skip to content

Commit c4f7dfd

Browse files
chore(deps): update terraform github.com/bcgov/quickstart-aws-helpers to v0.2.0 (#164)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c09ed59 commit c4f7dfd

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

infra/modules/api/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ locals {
6161
# MODULES (alphabetical)
6262
# -------------------------
6363
module "api_gateway" {
64-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/api-gateway?ref=v0.1.2"
64+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/api-gateway?ref=v0.2.0"
6565
api_name = var.app_name
6666
protocol_type = "HTTP"
6767
subnet_ids = module.networking.subnets.web.ids
@@ -75,7 +75,7 @@ module "api_gateway" {
7575

7676
module "cloudfront_api" {
7777
count = var.is_public_api ? 1 : 0
78-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.2"
78+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.2.0"
7979
app_name = var.app_name
8080
repo_name = var.repo_name
8181
distribution_type = "api"
@@ -104,14 +104,14 @@ module "cloudfront_api" {
104104

105105
module "cloudfront_api_logs" {
106106
count = var.is_public_api ? 1 : 0
107-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.2"
107+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.2.0"
108108
bucket_name = "cf-api-logs-${var.app_name}"
109109
log_prefix = "cf/api/"
110110
tags = module.common.common_tags
111111
}
112112

113113
module "common" {
114-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.2"
114+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.2.0"
115115
target_env = var.target_env
116116
app_env = var.app_env
117117
app_name = var.app_name
@@ -120,13 +120,13 @@ module "common" {
120120
}
121121

122122
module "networking" {
123-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.1.2"
123+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.2.0"
124124
target_env = var.target_env
125125
}
126126

127127
module "waf_api" {
128128
count = var.is_public_api ? 1 : 0
129-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.2"
129+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.2.0"
130130
name = "${var.app_name}-api-cf-waf"
131131
description = "API CloudFront WAF Rules"
132132
scope = "CLOUDFRONT"

infra/modules/database/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module "aurora_postgresql_v2" {
5757
}
5858

5959
module "common" {
60-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.2"
60+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.2.0"
6161

6262
target_env = var.target_env
6363
app_env = var.app_env
@@ -67,7 +67,7 @@ module "common" {
6767
}
6868

6969
module "networking" {
70-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.1.2"
70+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.2.0"
7171
target_env = var.target_env
7272
}
7373

infra/modules/frontend/main.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010

1111
# Import common configurations
1212
module "common" {
13-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.2"
13+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.2.0"
1414

1515
app_env = var.app_env
1616
app_name = var.app_name
@@ -21,7 +21,7 @@ module "common" {
2121

2222
# Create CloudFront distribution using the CloudFront module
2323
module "cloudfront_distribution" {
24-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.2"
24+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.2.0"
2525

2626
app_name = var.app_name
2727
cache_allowed_methods = ["GET", "HEAD"]
@@ -53,7 +53,7 @@ module "cloudfront_distribution" {
5353

5454
# Create CloudFront logs bucket
5555
module "cloudfront_logs" {
56-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.2"
56+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.2.0"
5757

5858
bucket_name = "${var.app_name}-cf-logs"
5959
log_prefix = "${var.app_name}/cloudfront-logs/"
@@ -62,7 +62,7 @@ module "cloudfront_logs" {
6262

6363
# Create CloudFront Origin Access Identity
6464
module "cloudfront_oai" {
65-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront-oai?ref=v0.1.2"
65+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront-oai?ref=v0.2.0"
6666

6767
comment = "OAI for ${var.app_name} site."
6868
s3_bucket_arn = module.frontend_bucket.bucket_arn
@@ -71,7 +71,7 @@ module "cloudfront_oai" {
7171

7272
# Create the frontend S3 bucket using the secure bucket module
7373
module "frontend_bucket" {
74-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-secure-bucket?ref=v0.1.2"
74+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-secure-bucket?ref=v0.2.0"
7575

7676
bucket_name = "${var.app_name}-static-assets"
7777
encryption_algorithm = "AES256"
@@ -81,7 +81,7 @@ module "frontend_bucket" {
8181
tags = module.common.common_tags
8282
}
8383
module "waf_cloudfront" {
84-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.2"
84+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.2.0"
8585

8686
description = "CloudFront WAF Rules"
8787
enable_bad_inputs = true

0 commit comments

Comments
 (0)