Skip to content

Commit 9a5c057

Browse files
committed
Run tofu fmt -recursive
1 parent 953a563 commit 9a5c057

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

iac/app/cpy.tfvars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "cpy"
22
aws_account_id = "539738229445"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5-
deploy_test_postman_environment = "../../.postman/cpy-tst.postman_environment.json"
4+
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5+
deploy_test_postman_environment = "../../.postman/cpy-tst.postman_environment.json"

iac/app/dev.tfvars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "dev"
22
aws_account_id = "977306314792"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5-
deploy_test_postman_environment = "../../.postman/dev-tst.postman_environment.json"
4+
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5+
deploy_test_postman_environment = "../../.postman/dev-tst.postman_environment.json"

iac/app/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ provider "aws" {
2626

2727
default_tags {
2828
tags = {
29-
app = local.name
30-
repo = "https://github.com/${local.gh_org}/${local.gh_repo}"
31-
data-sensitivity = "public"
32-
env = var.env
29+
app = local.name
30+
repo = "https://github.com/${local.gh_org}/${local.gh_repo}"
31+
data-sensitivity = "public"
32+
env = var.env
3333
# resource-creator-email = "GitHub-Actions"
3434
}
3535
}
@@ -53,9 +53,9 @@ variable "deploy_test_postman_environment" {
5353
}
5454

5555
locals {
56-
name = "hw-lambda-api"
57-
gh_org = "byu-oit"
58-
gh_repo = "hw-lambda-api"
56+
name = "hw-lambda-api"
57+
gh_org = "byu-oit"
58+
gh_repo = "hw-lambda-api"
5959
some_secret_name = "/${local.name}/${var.env}/some-secret"
6060
some_secret_arn = "arn:aws:ssm:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:parameter${local.some_secret_name}"
6161
}

iac/app/moved.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,37 +12,37 @@ moved {
1212

1313
moved {
1414
from = module.app.aws_dynamodb_table.my_dynamo_table
15-
to = aws_dynamodb_table.my_dynamo_table
15+
to = aws_dynamodb_table.my_dynamo_table
1616
}
1717

1818
moved {
1919
from = module.app.aws_iam_policy.my_ssm_policy
20-
to = aws_iam_policy.my_ssm_policy
20+
to = aws_iam_policy.my_ssm_policy
2121
}
2222

2323
moved {
2424
from = module.app.aws_dynamodb_table.my_dynamo_table
25-
to = aws_dynamodb_table.my_dynamo_table
25+
to = aws_dynamodb_table.my_dynamo_table
2626
}
2727

2828
moved {
2929
from = module.app.aws_iam_policy.my_dynamo_policy
30-
to = aws_iam_policy.my_dynamo_policy
30+
to = aws_iam_policy.my_dynamo_policy
3131
}
3232

3333
moved {
3434
from = module.app.aws_s3_bucket.my_s3_bucket
35-
to = aws_s3_bucket.my_s3_bucket
35+
to = aws_s3_bucket.my_s3_bucket
3636
}
3737

3838
moved {
3939
from = module.app.aws_s3_bucket_public_access_block.default
40-
to = aws_s3_bucket_public_access_block.default
40+
to = aws_s3_bucket_public_access_block.default
4141
}
4242

4343
moved {
4444
from = module.app.aws_iam_policy.my_s3_policy
45-
to = aws_iam_policy.my_s3_policy
45+
to = aws_iam_policy.my_s3_policy
4646
}
4747

4848
moved {

iac/app/prd.tfvars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "prd"
22
aws_account_id = "539738229445"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5-
deploy_test_postman_environment = "../../.postman/prd-tst.postman_environment.json"
4+
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5+
deploy_test_postman_environment = "../../.postman/prd-tst.postman_environment.json"

iac/app/stg.tfvars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
env = "stg"
22
aws_account_id = "977306314792"
33

4-
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5-
deploy_test_postman_environment = "../../.postman/stg-tst.postman_environment.json"
4+
deploy_test_postman_collection = "../../.postman/hw-fargate-api.postman_collection.json"
5+
deploy_test_postman_environment = "../../.postman/stg-tst.postman_environment.json"

iac/setup/setup.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ provider "aws" {
2727
default_tags {
2828
tags = {
2929
# app = local.name
30-
repo = "https://github.com/${local.gh_org}/${local.gh_repo}"
31-
data-sensitivity = "public"
32-
env = var.env
30+
repo = "https://github.com/${local.gh_org}/${local.gh_repo}"
31+
data-sensitivity = "public"
32+
env = var.env
3333
# resource-creator-email = "GitHub-Actions"
3434
}
3535
}

0 commit comments

Comments
 (0)