From 607a9038078c7dd997a0f609fb00df8c5b7de2aa Mon Sep 17 00:00:00 2001 From: Ujjwal Kumar Date: Fri, 24 Sep 2021 20:36:29 +0530 Subject: [PATCH] added a document update regarding allow_ip_spoofing on network interfaces --- website/docs/r/is_instance.html.markdown | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/website/docs/r/is_instance.html.markdown b/website/docs/r/is_instance.html.markdown index b38f8e10da..dda3da6346 100644 --- a/website/docs/r/is_instance.html.markdown +++ b/website/docs/r/is_instance.html.markdown @@ -278,6 +278,10 @@ Review the argument references that you can specify for your resource. Nested scheme for `network_interaces`: - `allow_ip_spoofing`- (Optional, Bool) Indicates whether IP spoofing is allowed on the interface. If **false**, IP spoofing is prevented on the interface. If **true**, IP spoofing is allowed on the interface. + **NOTE**: + - `allow_ip_spoofing` requires **IP spoofing operator** access under VPC infrastructure Services. As the **IP spoofing operator**, you can enable or disable the IP spoofing check on virtual server instances. + - Use this only if you have **IP spoofing operator** access. + - `name` - (Optional, String) The name of the network interface. - `primary_ipv4_address` - (Optional, Forces new resource, String) The IPV4 address of the interface. - `subnet` - (Required, String) The ID of the subnet. @@ -286,6 +290,10 @@ Review the argument references that you can specify for your resource. Nested scheme for `primary_network_interface`: - `allow_ip_spoofing`- (Optional, Bool) Indicates whether IP spoofing is allowed on the interface. If **false**, IP spoofing is prevented on the interface. If **true**, IP spoofing is allowed on the interface. + **NOTE**: + - `allow_ip_spoofing` requires **IP spoofing operator** access under VPC infrastructure Services. As the **IP spoofing operator**, you can enable or disable the IP spoofing check on virtual server instances. + - Use this only if you have **IP spoofing operator** access. + - `name` - (Optional, String) The name of the network interface. - `port_speed` - (Deprecated, Integer) Speed of the network interface. - `primary_ipv4_address` - (Optional, Forces new resource, String) The IPV4 address of the interface. @@ -346,7 +354,7 @@ In addition to all argument reference list, you can access the following attribu - `network_interfaces`- (List of Strings) A list of more network interfaces that are attached to the instance. Nested scheme for `network_interfaces`: - - `allow_ip_spoofing` - (String) Indicates whether IP spoofing is allowed on the interface. + - `allow_ip_spoofing` - (Bool) Indicates whether IP spoofing is allowed on the interface. - `id` - (String) The ID of the network interface. - `name` - (String) The name of the network interface. - `subnet` - (String) The ID of the subnet. @@ -355,7 +363,7 @@ In addition to all argument reference list, you can access the following attribu - `primary_network_interface`- (List of Strings) A list of primary network interfaces that are attached to the instance. Nested scheme for `primary_network_interface`: - - `allow_ip_spoofing` - (String) Indicates whether IP spoofing is allowed on the interface. + - `allow_ip_spoofing` - (Bool) Indicates whether IP spoofing is allowed on the interface. - `id` - (String) The ID of the primary network interface. - `name` - (String) The name of the primary network interface. - `subnet` - (String) The ID of the subnet that the primary network interface is attached to.