Difference between revisions of "Assume role policy"

From wikieduonline
Jump to navigation Jump to search
(Created page with " {{Aws iam role test role}}")
 
Line 1: Line 1:
 
+
{{lc}}
  
  
 
{{Aws iam role test role}}
 
{{Aws iam role test role}}

Revision as of 16:18, 29 May 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"
 }
}

Advertising: