Difference between revisions of "Assume role policy"

From wikieduonline
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:
  
  
* [[Terraaform resource: aws_iam_role]]
+
* [[Terraform resource: aws_iam_role]]
 +
* [[aws_iam_policy_attachment]]
  
{{aws_iam_role}}
+
== See also ==
 +
* {{aws_iam_role_resource}}
 +
* {{AWS roles}}

Latest revision as of 16:27, 24 October 2023


resource "aws_iam_role" "test_role" {
 name = "test_role"

 # Terraform's "jsonencode" function converts a
 # Terraform expression result to valid JSON syntax.
 assume_role_policy = jsonencode({
   Version = "2012-10-17"
   Statement = [
     {
       Action = "sts:AssumeRole"
       Effect = "Allow"
       Sid    = ""
       Principal = {
         Service = "ec2.amazonaws.com"
       }
     },
   ]
 })

 tags = {
   tag-key = "tag-value"
 }
}


See also[edit]

Advertising: