Difference between revisions of "Terraform resource: aws iam user"
Jump to navigation
Jump to search
Line 38: | Line 38: | ||
== Related == | == Related == | ||
* <code>[[aws_iam_role]]</code> | * <code>[[aws_iam_role]]</code> | ||
+ | * [[aws_iam_user_policy]] | ||
== See also == | == See also == |
Revision as of 16:56, 11 May 2023
Example
resource "aws_iam_user" "lb" { name = "loadbalancer" path = "/system/" tags = { tag-key = "tag-value" } } resource "aws_iam_access_key" "lb" { user = aws_iam_user.lb.name } resource "aws_iam_user_policy" "lb_ro" { name = "test" user = aws_iam_user.lb.name
policy = <<EOF { "Version": "2012-10-17", "Statement": [ { "Action": [ "ec2:Describe*" ], "Effect": "Allow", "Resource": "*" } ] } EOF }
Related
See also
Advertising: