github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/opc/r/opc_compute_acl.html.markdown (about)

     1  ---
     2  layout: "opc"
     3  page_title: "Oracle: opc_compute_acl"
     4  sidebar_current: "docs-opc-resource-acl"
     5  description: |-
     6    Creates and manages an ACL in an OPC identity domain.
     7  ---
     8  
     9  # opc\_compute\_acl
    10  
    11  The ``opc_compute_acl`` resource creates and manages an ACL in an OPC identity domain.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "opc_compute_acl" "default" {
    17    name        = "ACL1"
    18    description = "This is a description for an acl"
    19    tags        = ["tag1", "tag2"]
    20  }
    21  ```
    22  
    23  ## Argument Reference
    24  
    25  The following arguments are supported:
    26  
    27  * `name` - (Required) The name of the ACL.
    28  
    29  * `enabled` - (Optional) Enables or disables the ACL. Set to true by default.
    30  
    31  * `description` - (Optional) A description of the ACL.
    32  
    33  * `tags` - (Optional) List of tags that may be applied to the ACL.
    34  
    35  In addition to the above, the following values are exported:
    36  
    37  * `uri` - The Uniform Resource Identifier for the ACL
    38  
    39  ## Import
    40  
    41  ACL's can be imported using the `resource name`, e.g.
    42  
    43  ```shell
    44  $ terraform import opc_compute_acl.acl1 example
    45  ```