2014-12-10 22:20:52 +01:00
|
|
|
---
|
|
|
|
layout: "cloudstack"
|
|
|
|
page_title: "CloudStack: cloudstack_network"
|
|
|
|
sidebar_current: "docs-cloudstack-resource-network"
|
|
|
|
description: |-
|
|
|
|
Creates a network.
|
|
|
|
---
|
|
|
|
|
|
|
|
# cloudstack\_network
|
|
|
|
|
|
|
|
Creates a network.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
Basic usage:
|
|
|
|
|
|
|
|
```
|
|
|
|
resource "cloudstack_network" "default" {
|
|
|
|
name = "test-network"
|
|
|
|
cidr = "10.0.0.0/16"
|
|
|
|
network_offering = "Default Network"
|
|
|
|
zone = "zone-1"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Argument Reference
|
|
|
|
|
|
|
|
The following arguments are supported:
|
|
|
|
|
|
|
|
* `name` - (Required) The name of the network.
|
|
|
|
|
|
|
|
* `display_text` - (Optional) The display text of the network.
|
|
|
|
|
|
|
|
* `cidr` - (Required) The CIDR block for the network. Changing this forces a new
|
|
|
|
resource to be created.
|
|
|
|
|
2016-01-15 05:58:33 +01:00
|
|
|
* `startip` - (Optional) Start of the IP block that will be available on the
|
2016-01-15 21:26:26 +01:00
|
|
|
network. Defaults to the second available IP in the range.
|
2016-01-15 05:58:33 +01:00
|
|
|
|
|
|
|
* `endip` - (Optional) End of the IP block that will be available on the
|
2016-01-15 21:26:26 +01:00
|
|
|
network. Defaults to the last available IP in the range.
|
2016-01-15 05:58:33 +01:00
|
|
|
|
|
|
|
* `gateway` - (Optional) Gateway that will be provided to the instances in this
|
2016-01-15 21:26:26 +01:00
|
|
|
network. Defaults to the first usable IP in the range.
|
2016-01-15 05:58:33 +01:00
|
|
|
|
2015-04-29 11:21:37 +02:00
|
|
|
* `network_offering` - (Required) The name or ID of the network offering to use
|
|
|
|
for this network.
|
2014-12-10 22:20:52 +01:00
|
|
|
|
2016-01-15 05:58:33 +01:00
|
|
|
* `vlan` - (Optional) The VLAN number (1-4095) the network will use. This might be
|
2016-01-21 16:52:27 +01:00
|
|
|
required by the Network Offering if specifyVlan=true is set. Only the ROOT
|
|
|
|
admin can set this value.
|
2016-01-15 05:58:33 +01:00
|
|
|
|
2015-07-16 17:40:04 +02:00
|
|
|
* `vpc` - (Optional) The name or ID of the VPC to create this network for. Changing
|
2014-12-10 22:20:52 +01:00
|
|
|
this forces a new resource to be created.
|
|
|
|
|
|
|
|
* `aclid` - (Optional) The ID of a network ACL that should be attached to the
|
|
|
|
network. Changing this forces a new resource to be created.
|
|
|
|
|
2015-08-21 16:59:35 +02:00
|
|
|
* `project` - (Optional) The name or ID of the project to deploy this
|
|
|
|
instance to. Changing this forces a new resource to be created.
|
|
|
|
|
2015-04-29 11:21:37 +02:00
|
|
|
* `zone` - (Required) The name or ID of the zone where this disk volume will be
|
2014-12-10 22:20:52 +01:00
|
|
|
available. Changing this forces a new resource to be created.
|
|
|
|
|
2016-01-19 18:41:18 +01:00
|
|
|
* `tags` - (Optional) A mapping of tags to assign to the resource.
|
|
|
|
|
2014-12-10 22:20:52 +01:00
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The ID of the network.
|
|
|
|
* `display_text` - The display text of the network.
|