Last active
February 27, 2020 15:21
-
-
Save ezalejski/8702b31d9f153a7a78e112be776beaac to your computer and use it in GitHub Desktop.
Terraform users example
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
resource "aws_iam_user" "first_user" { | |
name = "first.user" | |
} | |
resource "aws_iam_user" "second_user" { | |
name = "second.user" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment