diff --git a/README.md b/README.md index 83a5ece..b798cbf 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ module "org_scps" { | deny\_leaving\_orgs\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP denying the ability to leave the AWS Organization | `list(string)` | `[]` | no | | deny\_root\_account\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP denying the root user from taking any action | `list(string)` | `[]` | no | | protect\_iam\_role\_resources | IAM role resource ARNs to protect from modification and deletion | `list(string)` |
[
""
]
| no | -| protect\_iam\_role\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP protecting IAM roles | `list(string)` | `[]` | no | +| protect\_iam\_role\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP protecting IAM roles | `list(string)` |
[
""
]
| no | | protect\_s3\_bucket\_resources | S3 bucket resource ARNs to protect from bucket and object deletion | `list(string)` |
[
""
]
| no | | protect\_s3\_bucket\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP protecting S3 buckets and objects | `list(string)` | `[]` | no | | require\_s3\_encryption\_target\_ids | Target ids (AWS Account or Organizational Unit) to attach an SCP requiring S3 encryption | `list(string)` | `[]` | no | diff --git a/variables.tf b/variables.tf index 82475da..2d81cfc 100644 --- a/variables.tf +++ b/variables.tf @@ -61,7 +61,7 @@ variable "protect_s3_bucket_resources" { variable "protect_iam_role_target_ids" { description = "Target ids (AWS Account or Organizational Unit) to attach an SCP protecting IAM roles" type = list(string) - default = [] + default = [""] } variable "protect_iam_role_resources" {