Advertisement
Guest User

Untitled

a guest
Jun 1st, 2022
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. .
  2. ├── README.md
  3. ├── ap-southeast-1
  4. │ ├── acm
  5. │ │ └── certificate
  6. │ │ └── wildcard_redacted_com
  7. │ │ ├── 00-terraform.tf
  8. │ │ ├── 01-providers.tf
  9. │ │ ├── 02-main.tf
  10. │ │ └── 03-outputs.tf
  11. │ ├── code_pipeline
  12. │ │ ├── ubuntu-20-base
  13. │ │ │ ├── backend.tf
  14. │ │ │ └── main.tf
  15. │ │ └── ubuntu-20-bastion
  16. │ │ ├── backend.tf
  17. │ │ └── main.tf
  18. │ ├── general
  19. │ │ └── parameter-store
  20. │ │ └── redacted
  21. │ │ ├── 00-terraform.tf
  22. │ │ ├── 01-providers.tf
  23. │ │ ├── 02-main.tf
  24. │ │ └── 03-outputs.tf
  25. │ ├── lambda-layers
  26. │ │ └── shared
  27. │ │ └── x-ray
  28. │ │ ├── 00-backend.tf
  29. │ │ ├── 01-data.tf
  30. │ │ ├── 02-locals.tf
  31. │ │ ├── 03-main.tf
  32. │ │ ├── 04-outputs.tf
  33. │ │ └── src
  34. │ │ └── lambda-layer-main.zip
  35. │ ├── s3
  36. │ │ └── golden-ami-build-manifest
  37. │ │ ├── backend.tf
  38. │ │ ├── main.tf
  39. │ │ └── versions.tf
  40. │ ├── services
  41. │ │ ├── redacted
  42. │ │ │ ├── application
  43. │ │ │ │ ├── main.py
  44. │ │ │ │ └── requirements.txt
  45. │ │ │ ├── backend.tf
  46. │ │ │ ├── data.tf
  47. │ │ │ ├── locals.tf
  48. │ │ │ ├── main.tf
  49. │ │ │ └── scripts
  50. │ │ │ └── create_pkg.sh
  51. │ │ └── redacted_1
  52. │ │ ├── backend.tf
  53. │ │ ├── local.tf
  54. │ │ ├── main.tf
  55. │ │ └── output.tf
  56. │ └── vpc
  57. │ └── production
  58. │ ├── 00-terraform.tf
  59. │ ├── 01-providers.tf
  60. │ ├── 02-data.tf
  61. │ ├── 03-main.tf
  62. │ └── 04-outputs.tf
  63. ├── global
  64. │ ├── iam
  65. │ │ └── role
  66. │ │ ├── ReadOnly
  67. │ │ │ ├── 00-terraform.tf
  68. │ │ │ ├── 02-main.tf
  69. │ │ │ └── 03-outputs.tf
  70. │ │ └── SuperAdmin
  71. │ │ ├── 00-terraform.tf
  72. │ │ ├── 01-providers.tf
  73. │ │ ├── 02-main.tf
  74. │ │ └── 03-outputs.tf
  75. │ └── route53
  76. │ └── zone
  77. │ ├── redacted_cloud_private
  78. │ │ ├── 00-terraform.tf
  79. │ │ ├── 01-providers.tf
  80. │ │ ├── 02-locals.tf
  81. │ │ ├── 03-data.tf
  82. │ │ ├── 04-main.tf
  83. │ │ └── 05-outputs.tf
  84. │ ├── redacted_cloud_public
  85. │ │ ├── 00-terraform.tf
  86. │ │ ├── 01-providers.tf
  87. │ │ ├── 02-locals.tf
  88. │ │ ├── 03-main.tf
  89. │ │ └── 04-outputs.tf
  90. │ └── redacted_com
  91. │ ├── 00-terraform.tf
  92. │ ├── 01-providers.tf
  93. │ ├── 02-locals.tf
  94. │ ├── 03-main.tf
  95. │ └── 04-outputs.tf
  96. └── us-east-1
  97. ├── acm
  98. │ └── certificate
  99. │ └── wildcard_redacted_com
  100. │ ├── 00-terraform.tf
  101. │ ├── 01-providers.tf
  102. │ ├── 02-main.tf
  103. │ └── 03-outputs.tf
  104. └── cloudwatch
  105. └── logs
  106. └── policy
  107. └── route53_query_logging
  108. ├── 00-terraform.tf
  109. ├── 01-providers.tf
  110. ├── 02-data.tf
  111. ├── 03-main.tf
  112. └── 04-outputs.tf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement