Files
opentf/website/source/docs/providers/cloudstack/r/ipaddress.html.markdown
Sander van Harmelen 6b8d37e938 Fix issue #3033 and update tweak several cloudstack resources
- Added a retry loop for attaching disks as this something was tried to
fast when the VM was still booting
- Fix issue #3033
- Update docs for latest updates and done some minor refactoring
(styling)
2015-08-21 16:59:35 +02:00

1.1 KiB

layout, page_title, sidebar_current, description
layout page_title sidebar_current description
cloudstack CloudStack: cloudstack_ipaddress docs-cloudstack-resource-ipaddress Acquires and associates a public IP.

cloudstack_ipaddress

Acquires and associates a public IP.

Example Usage

resource "cloudstack_ipaddress" "default" {
  network = "test-network"
}

Argument Reference

The following arguments are supported:

  • network - (Optional) The name or ID of the network for which an IP address should be acquired and associated. Changing this forces a new resource to be created.

  • vpc - (Optional) The name or ID of the VPC for which an IP address should be acquired and associated. 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.

NOTE: Either network or vpc should have a value!

Attributes Reference

The following attributes are exported:

  • id - The ID of the acquired and associated IP address.
  • ipaddress - The IP address that was acquired and associated.