6 lines
127 B
HCL
6 lines
127 B
HCL
resource "aws_iam_group" "Group1" {
|
|
name = "Team-${random_pet.this.id}"
|
|
path = "/users/"
|
|
}
|
|
|
|
resource "random_pet" "this" {} |