-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require correct OIDC Audience value to assume role (#33)
- Loading branch information
Showing
13 changed files
with
1,119 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
output "autoscaler_role" { | ||
value = module.autoscaler_role.service_account_role_name | ||
value = module.autoscaler_role.service_account_role_name | ||
description = "The name of the IAM role for the autoscaler service account" | ||
} | ||
|
||
output "autoscaler_policy" { | ||
value = data.aws_iam_policy.autoscaler.policy | ||
value = one(data.aws_iam_policy.autoscaler[*].policy) | ||
description = "The IAM policy for the autoscaler service account" | ||
} | ||
|
||
output "multiple_service_accounts_role_short" { | ||
value = module.multiple_service_accounts_short.service_account_role_name | ||
description = "The name of the IAM role for the multiple_service_accounts_short test case" | ||
} | ||
|
||
output "multiple_service_accounts_role_long" { | ||
value = module.multiple_service_accounts_long.service_account_role_name | ||
description = "The name of the IAM role for the multiple_service_accounts_long test case" | ||
} | ||
|
||
output "cert-manager_role" { | ||
value = module.cert-manager_role.service_account_role_name | ||
value = module.cert-manager_role.service_account_role_name | ||
description = "The name of the IAM role for the cert-manager service account" | ||
} | ||
|
||
output "cert-manager_policy" { | ||
value = data.aws_iam_policy.cert-manager.policy | ||
value = one(data.aws_iam_policy.cert-manager[*].policy) | ||
description = "The IAM policy for the cert-manager service account" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.