File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,13 @@ Create an S3 bucket intended to serve as a Helm repo. Configures basic encryptio
77
88| Name | Description | Type | Default | Required |
99| ------| -------------| :----:| :-----:| :-----:|
10- | cluster\_ name | | string | n/a | yes |
11- | tags | | map(string) | ` {} ` | no |
10+ | name | Prefix name for the helm repo \( e.g., EKS cluster name\) | string | ` "default" ` | no |
11+ | tags | Tags to add to supported resources | map(string) | ` {} ` | no |
12+
13+ ## Outputs
14+
15+ | Name | Description |
16+ | ------| -------------|
17+ | s3\_ bucket\_ repo | |
1218
1319<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -34,5 +34,5 @@ resource "aws_s3_bucket_public_access_block" "this" {
3434 create_before_destroy = true
3535 }
3636
37- depends_on = [aws_s3_bucket . repo_bucket ]
37+ depends_on = [aws_s3_bucket . this ]
3838}
Original file line number Diff line number Diff line change 11variable "name" {
2- default = " default"
2+ default = " default"
33 description = " Prefix name for the helm repo (e.g., EKS cluster name)"
4- type = string
4+ type = string
55}
66
77variable "tags" {
8- default = {}
8+ default = {}
99 description = " Tags to add to supported resources"
10- type = map (string )
10+ type = map (string )
1111}
You can’t perform that action at this time.
0 commit comments