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.
|
|
|
|
|
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
|
|
|
|
2015-01-03 19:31:53 +01:00
|
|
|
* `vpc` - (Optional) The name 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-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.
|
|
|
|
|
|
|
|
## Attributes Reference
|
|
|
|
|
|
|
|
The following attributes are exported:
|
|
|
|
|
|
|
|
* `id` - The ID of the network.
|
|
|
|
* `display_text` - The display text of the network.
|