You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "The private IP to be assigned to this instance, must be in the provided subnet and available. Cannot be set at the same time as `private_ip_addresses`.",
148
149
},
149
150
"private_ip_addresses": {
150
-
Type: schema.TypeList,
151
+
Type: schema.TypeSet,
151
152
Elem: &schema.Schema{Type: schema.TypeString},
152
153
Optional: true,
153
154
Computed: true,
@@ -436,9 +437,20 @@ func doResourceTencentCloudInstanceSetCreate(d *schema.ResourceData, meta interf
Copy file name to clipboardExpand all lines: website/docs/r/instance_set.html.markdown
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ The following arguments are supported:
96
96
*`key_name` - (Optional, String) The key pair to use for the instance, it looks like `skey-16jig7tx`. Modifying will cause the instance reset.
97
97
*`password` - (Optional, String) Password for the instance. In order for the new password to take effect, the instance will be restarted after the password change. Modifying will cause the instance reset.
98
98
*`placement_group_id` - (Optional, String, ForceNew) The ID of a placement group.
99
-
*`private_ip_addresses` - (Optional, List: [`String`]) Private network subnet IP array, which can be used when creating an instance or modifying instance vpc attributes. Currently, only batch creation of multiple instances supports passing in multiple IPs of the same subnet. Cannot be set at the same time as `private_ip`.
99
+
*`private_ip_addresses` - (Optional, Set: [`String`]) Private network subnet IP array, which can be used when creating an instance or modifying instance vpc attributes. Currently, only batch creation of multiple instances supports passing in multiple IPs of the same subnet. Cannot be set at the same time as `private_ip`.
100
100
*`private_ip` - (Optional, String) The private IP to be assigned to this instance, must be in the provided subnet and available. Cannot be set at the same time as `private_ip_addresses`.
101
101
*`project_id` - (Optional, Int) The project the instance belongs to, default to 0.
102
102
*`security_groups` - (Optional, Set: [`String`]) A list of security group IDs to associate with.
0 commit comments