Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
philchristensen committed Sep 26, 2024
1 parent 4344d8e commit 024d0df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module "autoscaler_role" {
# Rather than create a whole cluster, just fake the OIDC URL
# eks_cluster_oidc_issuer_url = module.eks_cluster.eks_cluster_identity_oidc_issuer
eks_cluster_oidc_issuer_urls = ["https://oidc.eks.us-west-2.amazonaws.com/id/FEDCBA9876543210FEDCBA9876543210"]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]

context = module.this.context
}
Expand All @@ -40,7 +40,7 @@ module "multiple_service_accounts_short" {
# Rather than create a whole cluster, just fake the OIDC URL
# eks_cluster_oidc_issuer_url = module.eks_cluster.eks_cluster_identity_oidc_issuer
eks_cluster_oidc_issuer_urls = ["https://oidc.eks.us-west-2.amazonaws.com/id/FEDCBA9876543210FEDCBA9876543210"]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]

context = module.this.context
}
Expand Down Expand Up @@ -86,7 +86,7 @@ module "multiple_service_accounts_long" {
# Rather than create a whole cluster, just fake the OIDC URL
# eks_cluster_oidc_issuer_url = module.eks_cluster.eks_cluster_identity_oidc_issuer
eks_cluster_oidc_issuer_urls = ["https://oidc.eks.us-west-2.amazonaws.com/id/FEDCBA9876543210FEDCBA9876543210"]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]
aws_iam_policy_document = [one(data.aws_iam_policy_document.autoscaler[*].json)]

context = module.this.context
}
Expand All @@ -103,7 +103,7 @@ module "cert-manager_role" {
# Rather than create a whole cluster, just fake the OIDC URL
# eks_cluster_oidc_issuer_url = module.eks_cluster.eks_cluster_identity_oidc_issuer
eks_cluster_oidc_issuer_urls = ["https://oidc.eks.us-west-2.amazonaws.com/id/FEDCBA9876543210FEDCBA9876543210"]
aws_iam_policy_document = [one(data.aws_iam_policy_document.cert-manager[*].json)]
aws_iam_policy_document = [one(data.aws_iam_policy_document.cert-manager[*].json)]

context = module.this.context
}
Expand Down

0 comments on commit 024d0df

Please sign in to comment.