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: "If create dynamic vip CLB instance, `true` or `false`.",
220
221
},
222
+
"eip_address_id": {
223
+
Type: schema.TypeString,
224
+
Optional: true,
225
+
Description: "The unique ID of the EIP, such as eip-1v2rmbwk, is only applicable to the intranet load balancing binding EIP. During the EIP change, there may be a brief network interruption.",
226
+
},
221
227
"domain": {
222
228
Type: schema.TypeString,
223
229
Computed: true,
@@ -406,6 +412,10 @@ func resourceTencentCloudClbInstanceCreate(d *schema.ResourceData, meta interfac
406
412
request.DynamicVip=helper.Bool(v.(bool))
407
413
}
408
414
415
+
ifv, ok:=d.GetOk("eip_address_id"); ok {
416
+
request.EipAddressId=helper.String(v.(string))
417
+
}
418
+
409
419
iftags:=helper.GetTags(d, "tags"); len(tags) >0 {
410
420
fork, v:=rangetags {
411
421
tmpKey:=k
@@ -675,6 +685,40 @@ func resourceTencentCloudClbInstanceRead(d *schema.ResourceData, meta interface{
*`delete_protect` - (Optional, Bool) Whether to enable delete protection.
488
525
*`dynamic_vip` - (Optional, Bool) If create dynamic vip CLB instance, `true` or `false`.
526
+
*`eip_address_id` - (Optional, String) The unique ID of the EIP, such as eip-1v2rmbwk, is only applicable to the intranet load balancing binding EIP. During the EIP change, there may be a brief network interruption.
489
527
*`internet_bandwidth_max_out` - (Optional, Int) Max bandwidth out, only applicable to open CLB. Valid value ranges is [1, 2048]. Unit is MB.
490
528
*`internet_charge_type` - (Optional, String) Internet charge type, only applicable to open CLB. Valid values are `TRAFFIC_POSTPAID_BY_HOUR`, `BANDWIDTH_POSTPAID_BY_HOUR` and `BANDWIDTH_PACKAGE`.
491
529
*`load_balancer_pass_to_target` - (Optional, Bool) Whether the target allow flow come from clb. If value is true, only check security group of clb, or check both clb and backend instance security group.
0 commit comments