Skip to content

Commit

Permalink
tflint
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoo committed Oct 23, 2024
1 parent 4b149e3 commit 9b51a12
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 17 deletions.
5 changes: 0 additions & 5 deletions fast/stages/0-bootstrap/organization.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,6 @@ locals {
role = b.role
}
}
# compute authoritative and additive roles for use by add-ons
iam_roles_authoritative = distinct(concat(
flatten(values(local.iam_principals)),
keys(local.iam)
))
}

# TODO: add a check block to ensure our custom roles exist in the factory files
Expand Down
4 changes: 0 additions & 4 deletions fast/stages/2-networking-a-simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ locals {
values(module.landing-vpc.subnet_regions),
values(module.prod-spoke-vpc.subnet_regions),
))
service_accounts = {
for k, v in coalesce(var.service_accounts, {}) :
k => "serviceAccount:${v}" if v != null
}
spoke_connection = coalesce(
var.spoke_configs.peering_configs != null ? "peering" : null,
var.spoke_configs.vpn_configs != null ? "vpn" : null,
Expand Down
4 changes: 0 additions & 4 deletions fast/stages/2-networking-b-nva/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ locals {
values(module.dmz-vpc.subnet_regions),
values(module.prod-spoke-vpc.subnet_regions),
))
service_accounts = {
for k, v in coalesce(var.service_accounts, {}) :
k => "serviceAccount:${v}" if v != null
}
}

module "folder" {
Expand Down
4 changes: 0 additions & 4 deletions fast/stages/2-networking-c-separate-envs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ locals {
values(module.dev-spoke-vpc.subnet_regions),
values(module.prod-spoke-vpc.subnet_regions),
))
service_accounts = {
for k, v in coalesce(var.service_accounts, {}) :
k => "serviceAccount:${v}" if v != null
}
}

module "folder" {
Expand Down

0 comments on commit 9b51a12

Please sign in to comment.