Files
opentf/website/source/docs/providers/cloudstack/r/static_nat.html.markdown
George Christou 61277c0dbd website/docs: Run terraform fmt on code examples (#12075)
* docs/vsphere: Fix code block

* docs: Convert `...` to `# ...` to allow `terraform fmt`ing

* docs: Trim trailing whitespace

* docs: First-pass run of `terraform fmt` on code examples
2017-02-19 00:48:50 +02:00

1.4 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
cloudstack CloudStack: cloudstack_static_nat docs-cloudstack-resource-static-nat Enables static NAT for a given IP address.

cloudstack_static_nat

Enables static NAT for a given IP address

Example Usage

resource "cloudstack_static_nat" "default" {
  ip_address_id      = "f8141e2f-4e7e-4c63-9362-986c908b7ea7"
  virtual_machine_id = "6ca2a163-bc68-429c-adc8-ab4a620b1bb3"
}

Argument Reference

The following arguments are supported:

  • ip_address_id - (Required) The public IP address ID for which static NAT will be enabled. Changing this forces a new resource to be created.

  • virtual_machine_id - (Required) The virtual machine ID to enable the static NAT feature for. Changing this forces a new resource to be created.

  • vm_guest_ip - (Optional) The virtual machine IP address to forward the static NAT traffic to (useful when the virtual machine has secondary NICs or IP addresses). Changing this forces a new resource to be created.

  • project - (Optional) The name or ID of the project to deploy this instance to. Changing this forces a new resource to be created.

Attributes Reference

The following attributes are exported:

  • id - The static nat ID.
  • vm_guest_ip - The IP address of the virtual machine that is used to forward the static NAT traffic to.