Difference between revisions of "Terraform resource: aws iam user"

From wikieduonline
Jump to navigation Jump to search
Line 42: Line 42:
 
== See also ==
 
== See also ==
 
* {{terraform aws iam resources}}
 
* {{terraform aws iam resources}}
* {{terraform aws resources}}
 
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Revision as of 16:52, 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: