Skip to content

Commit d8d79df

Browse files
authored
feat: Reset default value of s3_bucket_arns to empty (#23)
1 parent a2dd3d2 commit d8d79df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/virtual-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ No modules.
141141
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Kubernetes namespace for EMR on EKS | `string` | `"emr-containers"` | no |
142142
| <a name="input_oidc_provider_arn"></a> [oidc\_provider\_arn](#input\_oidc\_provider\_arn) | OIDC provider ARN for the EKS cluster | `string` | `""` | no |
143143
| <a name="input_role_name"></a> [role\_name](#input\_role\_name) | Name to use on IAM role created for EMR on EKS job execution role as well as Kubernetes RBAC role | `string` | `null` | no |
144-
| <a name="input_s3_bucket_arns"></a> [s3\_bucket\_arns](#input\_s3\_bucket\_arns) | S3 bucket ARNs for EMR on EKS job execution role to list, get objects, and put objects | `list(string)` | <pre>[<br> "*"<br>]</pre> | no |
144+
| <a name="input_s3_bucket_arns"></a> [s3\_bucket\_arns](#input\_s3\_bucket\_arns) | S3 bucket ARNs for EMR on EKS job execution role to list, get objects, and put objects | `list(string)` | `[]` | no |
145145
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources | `map(string)` | `{}` | no |
146146

147147
## Outputs

modules/virtual-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ variable "oidc_provider_arn" {
7979
variable "s3_bucket_arns" {
8080
description = "S3 bucket ARNs for EMR on EKS job execution role to list, get objects, and put objects"
8181
type = list(string)
82-
default = ["*"]
82+
default = []
8383
}
8484

8585
variable "role_name" {

0 commit comments

Comments
 (0)