Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added a document update regarding allow_ip_spoofing on network interfaces for VSIs #3145

Merged
merged 1 commit into from
Sep 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions website/docs/r/is_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand Down