github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/website/source/docs/providers/cloudstack/r/network_acl.html.markdown (about)

     1  ---
     2  layout: "cloudstack"
     3  page_title: "CloudStack: cloudstack_network_acl"
     4  sidebar_current: "docs-cloudstack-resource-network-acl"
     5  description: |-
     6    Creates a Network ACL for the given VPC.
     7  ---
     8  
     9  # cloudstack\_network\_acl
    10  
    11  Creates a Network ACL for the given VPC.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "cloudstack_network_acl" "default" {
    17  	name = "test-acl"
    18  	vpc = "vpc-1"
    19  }
    20  ```
    21  
    22  ## Argument Reference
    23  
    24  The following arguments are supported:
    25  
    26  * `name` - (Required) The name of the ACL. Changing this forces a new resource
    27      to be created.
    28  * `description` - (Optional) The description of the ACL. Changing this forces a
    29      new resource to be created.
    30  * `vpc` - (Required) The name or ID of the VPC to create this ACL for. Changing
    31      this forces a new resource to be created.
    32  
    33  ## Attributes Reference
    34  
    35  The following attributes are exported:
    36  
    37  * `id` - The ID of the Network ACL
    38