feat: Add permissions boundary to fargate execution IAM role (#1108)

This commit is contained in:
Ryan
2020-12-22 18:43:08 +08:00
committed by GitHub
parent ea2f6982d5
commit b0f51fdbe5
4 changed files with 14 additions and 5 deletions

View File

@@ -38,6 +38,12 @@ variable "fargate_profiles" {
default = {}
}
variable "permissions_boundary" {
description = "If provided, all IAM roles will be created with this permissions boundary attached."
type = string
default = null
}
variable "subnets" {
description = "A list of subnets for the EKS Fargate profiles."
type = list(string)