Skip to content

Commit 828a207

Browse files
committed
fix: update S3 bucket configuration and project name in Terragrunt files
1 parent 10ff97e commit 828a207

3 files changed

Lines changed: 4 additions & 13 deletions

File tree

terragrunt/environments/prod/cloudfront/terragrunt.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dependency "s3" {
66
config_path = "../s3"
77

88
mock_outputs = {
9-
bucket_id = "gcharest-github-io"
10-
bucket_arn = "arn:aws:s3:::gcharest-github-io"
11-
bucket_regional_domain_name = "gcharest-github-io.s3.us-east-1.amazonaws.com"
9+
bucket_id = "gcharest-ca-website"
10+
bucket_arn = "arn:aws:s3:::gcharest-ca-website"
11+
bucket_regional_domain_name = "gcharest-ca-website.s3.us-east-1.amazonaws.com"
1212
}
1313

1414
mock_outputs_allowed_terraform_commands = ["plan", "validate", "init"]

terragrunt/environments/prod/region.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
locals {
22
environment = "prod"
33
aws_region = "us-east-1" # Required for CloudFront + ACM
4-
project_name = "gcharest"
4+
project_name = "gcharest-ca-website"
55
domain_name = "gcharest.ca"
66

77
tags = {

terragrunt/root.hcl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,6 @@ terraform {
3333
3434
provider "aws" {
3535
region = var.aws_region
36-
37-
default_tags {
38-
tags = {
39-
Project = "gcharest"
40-
Environment = var.environment
41-
ManagedBy = "Terraform"
42-
CreatedAt = timestamp()
43-
}
44-
}
4536
}
4637
EOF
4738
}

0 commit comments

Comments
 (0)