github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/ignition/d/group.html.md (about)

     1  ---
     2  layout: "ignition"
     3  page_title: "Ignition: ignition_group"
     4  sidebar_current: "docs-ignition-datasource-group"
     5  description: |-
     6    Describes the desired group additions to the passwd database.
     7  ---
     8  
     9  # ignition\_group
    10  
    11  Describes the desired group additions to the passwd database.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  data "ignition_group" "foo" {
    17  	name = "foo"
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23  The following arguments are supported:
    24  
    25  * `name` - (Required) The groupname for the account.
    26  
    27  * `password_hash` - (Optional) The encrypted password for the account.
    28  
    29  * `gid` - (Optional) The group ID of the new account.
    30  
    31  ## Attributes Reference
    32  
    33  The following attributes are exported:
    34  
    35  * `id` - ID used to reference this resource in _ignition_config_.