Skip to content

Commit 358c42f

Browse files
chore(deps): update terraform github.com/bcgov/quickstart-aws-helpers to v0.1.1 (#50)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 623d21f commit 358c42f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

infrastructure/api/api-gateway.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Import common configurations
22
module "common" {
3-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.0"
3+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.1"
44

55
target_env = var.target_env
66
app_env = var.app_env
@@ -11,14 +11,14 @@ module "common" {
1111

1212
# Import networking configurations
1313
module "networking" {
14-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.1.0"
14+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/networking?ref=v0.1.1"
1515

1616
target_env = var.target_env
1717
}
1818

1919
# API Gateway with VPC Link using the API Gateway module
2020
module "api_gateway" {
21-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/api-gateway?ref=v0.1.0"
21+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/api-gateway?ref=v0.1.1"
2222

2323
api_name = var.app_name
2424
protocol_type = "HTTP"

infrastructure/api/waf.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
# WAF for API (if public API)
77
module "waf_api" {
88
count = var.is_public_api ? 1 : 0
9-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.0"
9+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.1"
1010

1111
name = "${var.app_name}-api-cf-waf"
1212
description = "API CloudFront WAF Rules"
@@ -28,7 +28,7 @@ module "waf_api" {
2828
# CloudFront logs bucket for API (if public API)
2929
module "cloudfront_api_logs" {
3030
count = var.is_public_api ? 1 : 0
31-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.0"
31+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.1"
3232

3333
bucket_name = "cf-api-logs-${var.app_name}"
3434
log_prefix = "cf/api/"
@@ -38,7 +38,7 @@ module "cloudfront_api_logs" {
3838
# CloudFront distribution for API (if public API)
3939
module "cloudfront_api" {
4040
count = var.is_public_api ? 1 : 0
41-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.0"
41+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.1"
4242

4343
app_name = var.app_name
4444
repo_name = var.repo_name

infrastructure/database/dynamodb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Import common configurations
22
module "common" {
3-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.0"
3+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.1"
44

55
target_env = var.target_env
66
app_env = var.app_env

infrastructure/frontend/cloudfront.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Import common configurations
22
module "common" {
3-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.0"
3+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/common?ref=v0.1.1"
44

55
target_env = var.target_env
66
app_env = var.app_env
@@ -11,7 +11,7 @@ module "common" {
1111

1212
# Create the frontend S3 bucket using the secure bucket module
1313
module "frontend_bucket" {
14-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-secure-bucket?ref=v0.1.0"
14+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-secure-bucket?ref=v0.1.1"
1515

1616
bucket_name = "${var.app_name}-static-assets"
1717
force_destroy = true
@@ -23,7 +23,7 @@ module "frontend_bucket" {
2323

2424
# Create CloudFront Origin Access Identity
2525
module "cloudfront_oai" {
26-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront-oai?ref=v0.1.0"
26+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront-oai?ref=v0.1.1"
2727

2828
comment = "OAI for ${var.app_name} site."
2929
s3_bucket_name = module.frontend_bucket.bucket_name
@@ -32,7 +32,7 @@ module "cloudfront_oai" {
3232

3333
# Create CloudFront logs bucket
3434
module "cloudfront_logs" {
35-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.0"
35+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/s3-cloudfront-logs?ref=v0.1.1"
3636

3737
bucket_name = "${var.app_name}-cf-logs"
3838
log_prefix = "${var.app_name}/cloudfront-logs/"
@@ -41,7 +41,7 @@ module "cloudfront_logs" {
4141

4242
# Create CloudFront distribution using the CloudFront module
4343
module "cloudfront_distribution" {
44-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.0"
44+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/cloudfront?ref=v0.1.1"
4545

4646
app_name = var.app_name
4747
repo_name = var.repo_name

infrastructure/frontend/waf.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Create WAF for CloudFront using the WAF module
22
module "waf_cloudfront" {
3-
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.0"
3+
source = "git::https://github.com/bcgov/quickstart-aws-helpers.git//terraform/modules/waf?ref=v0.1.1"
44

55
name = "${var.app_name}-waf-cloudfront"
66
description = "CloudFront WAF Rules"

0 commit comments

Comments
 (0)