Skip to content

Commit

Permalink
Documentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-lifshits committed Apr 3, 2024
1 parent e998d9a commit 6a302fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/resources/machine_config_v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ The following attributes are exported:
* `subnet_id` - (Required++) OpenTelekomCloud subnet ID of the machine. Conflicts with `subnet_name` (string)
* `subnet_name` - (Required++) OpenTelekomCloud subnet name of the machine. Conflicts with `subnet_id` (string)
* `token` - (Optional/Sensitive) OpenTelekomCloud authentication token (string)
* `tags` - (Optional) OpenTelekomCloud tags (e.g. key1,value1,key2,value2) (string)
* `tags` - (Optional) OpenTelekomCloud tags (e.g. key1.value1,key2.value2,key3) (string)
* `user_data_file` - (Optional) File containing an OpenTelekomCloud userdata script (string)
* `user_data_raw` - (Optional) Contents of the OpenTelekomCloud userdata as a string (string)
* `username` - (Optional) OpenTelekomCloud username (string)
Expand Down
8 changes: 4 additions & 4 deletions rancher2/schema_machine_config_v2_opentelekomcloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ func machineConfigV2OpentelekomcloudFields() map[string]*schema.Schema {
Optional: true,
Computed: true,
Sensitive: true,
Description: "Access key used for AK/SK auth ",
Description: "Access key used for AK/SK auth",
},
"secret_key": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Sensitive: true,
Description: "Access key used for AK/SK auth ",
Description: "Access key used for AK/SK auth",
},
"auth_url": {
Type: schema.TypeString,
Expand Down Expand Up @@ -237,7 +237,7 @@ func machineConfigV2OpentelekomcloudFields() map[string]*schema.Schema {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "OTC Tags (e.g. key1,value1,key2,value2)",
Description: "OTC Tags (e.g. key1.value1,key2.value2,key3)",
},
"user_data_file": {
Type: schema.TypeString,
Expand All @@ -253,7 +253,7 @@ func machineConfigV2OpentelekomcloudFields() map[string]*schema.Schema {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "OpenTelekomCloud username ",
Description: "OpenTelekomCloud username",
},
"vpc_id": {
Type: schema.TypeString,
Expand Down

0 comments on commit 6a302fb

Please sign in to comment.