You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this functionality isn't supported by terraform and I'd like to figure out the best way to implement it. @ctiwald and I need this functionality in order to port our current configuration to terraform tf files.
It would seem that, based on issues like #2197 and #1419, it's best to implement this as a top level resource.
Proposed format:
resource "aws_iam_group_association" "dev" {
name = "dev"
users = [
"${aws_iam_user.dev1.name}",
"${aws_iam_user.dev2.name}",
...
]
group = "${aws_iam_group.dev.name}"
}
with files: builtin/providers/aws/resource_aws_iam_group_association.go builtin/providers/aws/resource_aws_iam_group_association_test.go
Does this sound acceptable or is there another preferred method/syntax?
The text was updated successfully, but these errors were encountered:
It's currently just a 1-to-1 mapping of user to group though, mostly just to get the ball rolling. Does anyone mentioned here think strongly enough that it needs to be 1-to-many?
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
ghost
locked and limited conversation to collaborators
May 2, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, this functionality isn't supported by terraform and I'd like to figure out the best way to implement it. @ctiwald and I need this functionality in order to port our current configuration to terraform tf files.
It would seem that, based on issues like #2197 and #1419, it's best to implement this as a top level resource.
Proposed format:
with files:
builtin/providers/aws/resource_aws_iam_group_association.go
builtin/providers/aws/resource_aws_iam_group_association_test.go
Does this sound acceptable or is there another preferred method/syntax?
The text was updated successfully, but these errors were encountered: