Skip to content

Commit

Permalink
remove string brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
zachrundle committed Aug 25, 2024
1 parent 080ff24 commit efe8921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions users.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ module "users" {
"Zach Rundle" = {
first_name = "Zach"
last_name = "Rundle"
groups = ["administrators"]
groups = "administrators"
},
"Maverick Dog" = {
first_name = "Maverick"
last_name = "Dog"
groups = ["developers"]
groups = "developers"
},
}
}

0 comments on commit efe8921

Please sign in to comment.