11# Import common configurations
22module "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
1313module "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
2525module "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
3434module "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
4343module "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
0 commit comments