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

Enhance doc for interface_name field in compute_instance_group_manager #5337

Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .changelog/7474.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
4 changes: 2 additions & 2 deletions website/docs/r/compute_instance_group_manager.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -294,13 +294,13 @@ one of which has a `target_size.percent` of `60` will create 2 instances of that

<a name="nested_stateful_internal_ip"></a>The `stateful_internal_ip` block supports:

* `interface_name` - (Required), The network interface name of the internal Ip.
* `interface_name` - (Required), The network interface name of the internal Ip. Possible value: `nic0`

* `delete_rule` - (Optional), A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are `NEVER` and `ON_PERMANENT_INSTANCE_DELETION`. `NEVER` - detach the ip when the VM is deleted, but do not delete the ip. `ON_PERMANENT_INSTANCE_DELETION` will delete the internal ip when the VM is permanently deleted from the instance group.

<a name="nested_stateful_external_ip"></a>The `stateful_external_ip` block supports:

* `interface_name` - (Required), The network interface name of the external Ip.
* `interface_name` - (Required), The network interface name of the external Ip. Possible value: `nic0`

* `delete_rule` - (Optional), A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are `NEVER` and `ON_PERMANENT_INSTANCE_DELETION`. `NEVER` - detach the ip when the VM is deleted, but do not delete the ip. `ON_PERMANENT_INSTANCE_DELETION` will delete the external ip when the VM is permanently deleted from the instance group.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,13 @@ one of which has a `target_size.percent` of `60` will create 2 instances of that

<a name="nested_stateful_internal_ip"></a>The `stateful_internal_ip` block supports:

* `interface_name` - (Required), The network interface name of the internal Ip.
* `interface_name` - (Required), The network interface name of the internal Ip. Possible value: `nic0`.

* `delete_rule` - (Optional), A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are `NEVER` and `ON_PERMANENT_INSTANCE_DELETION`. `NEVER` - detach the ip when the VM is deleted, but do not delete the ip. `ON_PERMANENT_INSTANCE_DELETION` will delete the internal ip when the VM is permanently deleted from the instance group.

<a name="nested_stateful_external_ip"></a>The `stateful_external_ip` block supports:

* `interface_name` - (Required), The network interface name of the external Ip.
* `interface_name` - (Required), The network interface name of the external Ip. Possible value: `nic0`.

* `delete_rule` - (Optional), A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are `NEVER` and `ON_PERMANENT_INSTANCE_DELETION`. `NEVER` - detach the ip when the VM is deleted, but do not delete the ip. `ON_PERMANENT_INSTANCE_DELETION` will delete the external ip when the VM is permanently deleted from the instance group.

Expand Down