Skip to content

Commit 61b60ba

Browse files
authored
fix: update access_tags var description in fscloud profile (#489)
1 parent 1f8131d commit 61b60ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/fscloud/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ No resources.
9494

9595
| Name | Description | Type | Default | Required |
9696
|------|-------------|------|---------|:--------:|
97-
| <a name="input_access_tags"></a> [access\_tags](#input\_access\_tags) | Optional list of access tags to be added to the created resources | `list(string)` | `[]` | no |
97+
| <a name="input_access_tags"></a> [access\_tags](#input\_access\_tags) | A list of access tags to apply to the cos instance created by the module, see https://cloud.ibm.com/docs/account?topic=account-access-tags-tutorial for more details | `list(string)` | `[]` | no |
9898
| <a name="input_activity_tracker_crn"></a> [activity\_tracker\_crn](#input\_activity\_tracker\_crn) | Activity tracker crn for COS bucket. Only required if 'create\_cos\_bucket' is true. | `string` | `null` | no |
9999
| <a name="input_bucket_configs"></a> [bucket\_configs](#input\_bucket\_configs) | Cloud Object Storage bucket configurations | <pre>list(object({<br> access_tags = optional(list(string), [])<br> bucket_name = string<br> kms_encryption_enabled = optional(bool, true)<br> kms_guid = optional(string, null)<br> kms_key_crn = string<br> skip_iam_authorization_policy = optional(bool, false)<br> management_endpoint_type = string<br> cross_region_location = optional(string, null)<br> storage_class = optional(string, "smart")<br> region_location = optional(string, null)<br> resource_group_id = string<br> resource_instance_id = optional(string, null)<br><br> activity_tracking = optional(object({<br> read_data_events = optional(bool, true)<br> write_data_events = optional(bool, true)<br> activity_tracker_crn = optional(string, null)<br> }))<br> archive_rule = optional(object({<br> enable = optional(bool, false)<br> days = optional(number, 20)<br> type = optional(string, "Glacier")<br> }))<br> expire_rule = optional(object({<br> enable = optional(bool, false)<br> days = optional(number, 365)<br> }))<br> metrics_monitoring = optional(object({<br> usage_metrics_enabled = optional(bool, true)<br> request_metrics_enabled = optional(bool, true)<br> metrics_monitoring_crn = optional(string, null)<br> }))<br> object_versioning = optional(object({<br> enable = optional(bool, false)<br> }))<br> retention_rule = optional(object({<br> default = optional(number, 90)<br> maximum = optional(number, 350)<br> minimum = optional(number, 90)<br> permanent = optional(bool, false)<br> }))<br> cbr_rules = optional(list(object({<br> description = string<br> account_id = string<br> rule_contexts = list(object({<br> attributes = optional(list(object({<br> name = string<br> value = string<br> }))) }))<br> enforcement_mode = string<br> tags = optional(list(object({<br> name = string<br> value = string<br> })), [])<br> operations = optional(list(object({<br> api_types = list(object({<br> api_type_id = string<br> }))<br> })))<br> })), [])<br><br> }))</pre> | `[]` | no |
100100
| <a name="input_cos_instance_name"></a> [cos\_instance\_name](#input\_cos\_instance\_name) | The name to give the cloud object storage instance that will be provisioned by this module. Only required if 'create\_cos\_instance' is true. | `string` | `null` | no |

modules/fscloud/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,6 @@ variable "instance_cbr_rules" {
179179

180180
variable "access_tags" {
181181
type = list(string)
182-
description = "Optional list of access tags to be added to the created resources"
182+
description = "A list of access tags to apply to the cos instance created by the module, see https://cloud.ibm.com/docs/account?topic=account-access-tags-tutorial for more details"
183183
default = []
184184
}

0 commit comments

Comments
 (0)