Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Make additional policies & SA names optional #133

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Make additional policies & SA names optional
  • Loading branch information
ElvenSpellmaker committed Jul 22, 2024
commit 925892d5d5a08e242068db8cfa7a7a5f65546ed3
6 changes: 5 additions & 1 deletion aws/modules/infrastructure_modules/eks_irsa/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ variable "policy_path" {
variable "additional_policies" {
type = set(string)
description = "A set of pre-exisiting AWS Policies to apply to the IRSA role, e.g. CloudWatchAgentServerPolicy"

default = []
}

variable "resource_description" {
Expand All @@ -60,5 +62,7 @@ variable "service_account_name" {

variable "additional_service_account_names" {
type = set(string)
description = "Addiotional Service Accounts allowed to assume this role"
description = "Additional Service Accounts allowed to assume this role"

default = []
}