Created
January 7, 2016 20:43
-
-
Save Kuberchaun/082f2902e67b4426b2ef to your computer and use it in GitHub Desktop.
Case1: Terraform Variables file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "user_names" { | |
| description = "User names to create user accounts from" | |
| } | |
| variable "group_names" { | |
| description = "The group names to create groups from" | |
| } | |
| variable "group_membership_names" { | |
| description = "The group names to create group memberships from" | |
| } | |
| variable "user_membership_names" { | |
| description = "User names to create user/group memberships from" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment