Difference between revisions of "Assume role policy"

From wikieduonline
Jump to navigation Jump to search
(Created page with " {{Aws iam role test role}}")
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{lc}}
  
  
 +
{{Aws iam role test role}}
  
{{Aws iam role test role}}
+
 
 +
 
 +
* [[Terraform resource: aws_iam_role]]
 +
* [[aws_iam_policy_attachment]]
 +
 
 +
== 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: