sample_data.yaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ---
  2. accounts:
  3. - :name: production
  4. - :name: testing
  5. regions:
  6. - us-east-1:
  7. - us-east-1a
  8. - us-east-1b
  9. - us-east-1c
  10. - us-east-1d
  11. - us-east-1e
  12. - us-west-1:
  13. - us-west-1a
  14. - us-west-1c
  15. ssh_keys:
  16. - name: prod1
  17. account: production
  18. - name: prod2
  19. account: production
  20. - name: test-key
  21. account: testing
  22. vpcs:
  23. - vpc_id: vpc-21121
  24. name: prod-vpc-1
  25. state: available
  26. default: false
  27. cidr: 192.168.0.0/24
  28. region: us-east-1
  29. account: production
  30. - vpc_id: vpc-21122
  31. name: test-vpc-1
  32. state: available
  33. default: false
  34. cidr: 192.168.5.0/24
  35. region: us-west-1
  36. account: testing
  37. subnets:
  38. - subnet_id: subnet-444444
  39. cidr: 192.168.5.0/25
  40. name: test-subnet-public
  41. ip_count: 128
  42. state: avaliable
  43. az: us-west-1a
  44. vpc_id: vpc-21122
  45. - subnet_id: subnet-444445
  46. cidr: 192.168.5.128/25
  47. name: test-subnet-private
  48. ip_count: 128
  49. state: avaliable
  50. az: us-west-1c
  51. vpc_id: vpc-21122
  52. - subnet_id: subnet-555555
  53. cidr: 192.168.0.0/26
  54. name: test-subnet-public
  55. ip_count: 64
  56. state: avaliable
  57. az: us-east-1a
  58. vpc_id: vpc-21121
  59. - subnet_id: subnet-555556
  60. cidr: 192.168.0.64/26
  61. name: test-subnet-private
  62. ip_count: 64
  63. state: avaliable
  64. az: us-east-1b
  65. vpc_id: vpc-21121
  66. - subnet_id: subnet-555557
  67. cidr: 192.168.0.128/25
  68. name: test-subnet-private
  69. ip_count: 128
  70. state: avaliable
  71. az: us-east-1d
  72. vpc_id: vpc-21121
  73. nodes:
  74. - node_id: i-1111111111
  75. name: web1
  76. ip: 192.168.5.2
  77. public_ip: 8.8.8.8
  78. size: m1.medium
  79. ami: ami-12345678
  80. subnet_id: subnet-444444
  81. az: us-west-1a
  82. ssh_key: test-key
  83. account: testing
  84. - node_id: i-1111111112
  85. name: web2
  86. ip: 192.168.5.3
  87. public_ip: 8.8.8.4
  88. size: m1.medium
  89. ami: ami-12345678
  90. subnet_id: subnet-444444
  91. az: us-west-1a
  92. ssh_key: test-key
  93. account: testing
  94. - node_id: i-1111111113
  95. name: app1
  96. ip: 192.168.5.201
  97. public_ip: ""
  98. size: m1.medium
  99. ami: ami-12345678
  100. subnet_id: subnet-444445
  101. az: us-west-1a
  102. ssh_key: test-key
  103. account: testing