Guest User

Untitled

a guest
Jun 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. resource "aws_iot_policy" "thing_policy" {
  2.  
  3. name = "iot-thing-policy"
  4.  
  5. policy = <<POLICY
  6. {
  7. "Version": "2012-10-17",
  8. "Statement": {
  9. "Effect": "Allow",
  10. "Action": "iot:AssumeRoleWithCertificate",
  11. "Resource": "*"
  12. }
  13. }
  14. POLICY
  15.  
  16. }
Add Comment
Please, Sign In to add comment