2015-07-16 17:40:04 +02:00
|
|
|
---
|
|
|
|
layout: "cloudstack"
|
|
|
|
page_title: "CloudStack: cloudstack_secondary_ipaddress"
|
|
|
|
sidebar_current: "docs-cloudstack-resource-secondary-ipaddress"
|
|
|
|
description: |-
|
|
|
|
Assigns a secondary IP to a NIC.
|
|
|
|
---
|
|
|
|
|
|
|
|
# cloudstack\_secondary\_ipaddress
|
|
|
|
|
|
|
|
Assigns a secondary IP to a NIC.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "cloudstack_secondary_ipaddress" "default" {
|
2016-04-11 17:14:19 +02:00
|
|
|
virtual_machine_id = "server-1"
|
2015-07-16 17:40:04 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
2016-04-04 22:13:27 +02:00
|
|
|
* `ip_address` - (Optional) The IP address to attach the to NIC. If not supplied
|
2016-04-11 17:14:19 +02:00
|
|
|
an IP address will be selected randomly. Changing this forces a new resource
|
|
|
|
to be created.
|
2015-07-16 17:40:04 +02:00
|
|
|
|
2016-04-04 22:13:27 +02:00
|
|
|
* `ipaddress` - (Optional, Deprecated) The IP address to attach the to NIC. If
|
|
|
|
not supplied an IP address will be selected randomly. Changing this forces
|
|
|
|
a new resource to be created.
|
|
|
|
|
2016-04-11 17:14:19 +02:00
|
|
|
* `nic_id` - (Optional) The NIC ID to which you want to attach the secondary IP
|
|
|
|
address. Changing this forces a new resource to be created (defaults to the
|
|
|
|
ID of the primary NIC)
|
2015-07-16 17:40:04 +02:00
|
|
|
|
2016-04-11 17:14:19 +02:00
|
|
|
* `nicid` - (Optional, Deprecated) The ID of the NIC to which you want to attach
|
|
|
|
the secondary IP address. Changing this forces a new resource to be created
|
|
|
|
(defaults to the ID of the primary NIC)
|
|
|
|
|
|
|
|
* `virtual_machine_id` - (Required) The ID of the virtual machine to which you
|
|
|
|
want to attach the secondary IP address. Changing this forces a new resource
|
|
|
|
to be created.
|
|
|
|
|
|
|
|
* `virtual_machine` - (Required, Deprecated) The name or ID of the virtual
|
|
|
|
machine to which you want to attach the secondary IP address. Changing this
|
|
|
|
forces a new resource to be created.
|
2015-07-16 17:40:04 +02:00
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The secondary IP address ID.
|