Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # dynamicを使わない場合
  2. data "aws_iam_policy_document" "dynamic_test_document" {
  3. statement {
  4. sid = "1"
  5.  
  6. effect = "Allow"
  7. actions = [
  8.  
  9. ]
  10. resources = [
  11.  
  12. ]
  13. }
  14. statement {
  15. sid = "2"
  16.  
  17. effect = "Deny"
  18. actions = [
  19.  
  20. ]
  21. resources = [
  22.  
  23. ]
  24. }
  25. statement {
  26. sid = "3"
  27.  
  28. effect = "Allow"
  29. actions = [
  30.  
  31. ]
  32. resources = [
  33.  
  34. ]
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement