cody 0.1.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/.cody/buildspec.yml +8 -0
  3. data/.cody/project.rb +4 -0
  4. data/.cody/settings.yml +13 -0
  5. data/.gitignore +17 -10
  6. data/.gitmodules +9 -0
  7. data/.rspec +1 -1
  8. data/.ruby-version +1 -0
  9. data/CHANGELOG.md +59 -0
  10. data/Gemfile +3 -1
  11. data/Guardfile +19 -0
  12. data/LICENSE.txt +18 -17
  13. data/README.md +145 -18
  14. data/Rakefile +9 -2
  15. data/cody.gemspec +26 -12
  16. data/exe/cody +14 -0
  17. data/img/github-admin-settings-tab.png +0 -0
  18. data/lib/cody.rb +17 -1
  19. data/lib/cody/autoloader.rb +21 -0
  20. data/lib/cody/aws_services.rb +16 -0
  21. data/lib/cody/aws_services/helpers.rb +72 -0
  22. data/lib/cody/cli.rb +61 -0
  23. data/lib/cody/command.rb +82 -0
  24. data/lib/cody/completer.rb +159 -0
  25. data/lib/cody/completer/script.rb +6 -0
  26. data/lib/cody/completer/script.sh +10 -0
  27. data/lib/cody/core.rb +63 -0
  28. data/lib/cody/create.rb +12 -0
  29. data/lib/cody/default/settings.yml +3 -0
  30. data/lib/cody/delete.rb +27 -0
  31. data/lib/cody/deploy.rb +40 -0
  32. data/lib/cody/dsl/project.rb +119 -0
  33. data/lib/cody/dsl/project/ssm.rb +22 -0
  34. data/lib/cody/dsl/role.rb +50 -0
  35. data/lib/cody/dsl/schedule.rb +30 -0
  36. data/lib/cody/evaluate.rb +47 -0
  37. data/lib/cody/help.rb +9 -0
  38. data/lib/cody/help/completion.md +22 -0
  39. data/lib/cody/help/completion_script.md +3 -0
  40. data/lib/cody/help/deploy.md +32 -0
  41. data/lib/cody/help/init.md +71 -0
  42. data/lib/cody/help/start.md +12 -0
  43. data/lib/cody/init.rb +102 -0
  44. data/lib/cody/project.rb +72 -0
  45. data/lib/cody/role.rb +87 -0
  46. data/lib/cody/schedule.rb +102 -0
  47. data/lib/cody/sequence.rb +66 -0
  48. data/lib/cody/setting.rb +82 -0
  49. data/lib/cody/stack.rb +93 -0
  50. data/lib/cody/start.rb +69 -0
  51. data/lib/cody/update.rb +12 -0
  52. data/lib/cody/variables.rb +17 -0
  53. data/lib/cody/version.rb +2 -2
  54. data/lib/template/project/buildspec.yml +28 -0
  55. data/lib/template/project/project.rb.tt +29 -0
  56. data/lib/template/project/role.rb +2 -0
  57. data/lib/template/project/schedule.rb +3 -0
  58. data/lib/template/top/README.md +32 -0
  59. data/lib/template/top/settings.yml +9 -0
  60. data/lib/template/top/variables/base.rb +1 -0
  61. data/lib/template/top/variables/development.rb +1 -0
  62. data/lib/template/top/variables/production.rb +1 -0
  63. data/vendor/aws_data/CHANGELOG.md +7 -0
  64. data/vendor/aws_data/Gemfile +4 -0
  65. data/vendor/aws_data/LICENSE.txt +21 -0
  66. data/vendor/aws_data/README.md +42 -0
  67. data/vendor/aws_data/Rakefile +6 -0
  68. data/vendor/aws_data/aws_data.gemspec +30 -0
  69. data/{bin → vendor/aws_data/bin}/console +1 -1
  70. data/{bin → vendor/aws_data/bin}/setup +0 -0
  71. data/vendor/aws_data/lib/aws_data.rb +91 -0
  72. data/vendor/aws_data/lib/aws_data/version.rb +3 -0
  73. data/vendor/aws_data/spec/aws_data_spec.rb +5 -0
  74. data/vendor/aws_data/spec/spec_helper.rb +14 -0
  75. data/vendor/cfn-status/Gemfile +4 -0
  76. data/vendor/cfn-status/LICENSE.txt +21 -0
  77. data/vendor/cfn-status/README.md +56 -0
  78. data/vendor/cfn-status/Rakefile +6 -0
  79. data/vendor/cfn-status/bin/console +14 -0
  80. data/vendor/cfn-status/bin/setup +8 -0
  81. data/vendor/cfn-status/cfn-status.gemspec +30 -0
  82. data/vendor/cfn-status/lib/cfn/aws_service.rb +56 -0
  83. data/vendor/cfn-status/lib/cfn/status.rb +220 -0
  84. data/vendor/cfn-status/lib/cfn/status/version.rb +5 -0
  85. data/vendor/cfn-status/spec/cfn/status_spec.rb +81 -0
  86. data/vendor/cfn-status/spec/fixtures/cfn/stack-events-complete.json +1080 -0
  87. data/vendor/cfn-status/spec/fixtures/cfn/stack-events-in-progress.json +1080 -0
  88. data/vendor/cfn-status/spec/fixtures/cfn/stack-events-update-rollback-complete.json +1086 -0
  89. data/vendor/cfn-status/spec/spec_helper.rb +14 -0
  90. data/vendor/cfn_camelizer/CHANGELOG.md +10 -0
  91. data/vendor/cfn_camelizer/Gemfile +4 -0
  92. data/vendor/cfn_camelizer/LICENSE.txt +21 -0
  93. data/vendor/cfn_camelizer/README.md +40 -0
  94. data/vendor/cfn_camelizer/Rakefile +6 -0
  95. data/vendor/cfn_camelizer/bin/console +14 -0
  96. data/vendor/cfn_camelizer/bin/setup +8 -0
  97. data/vendor/cfn_camelizer/cfn_camelizer.gemspec +32 -0
  98. data/vendor/cfn_camelizer/lib/camelizer.yml +33 -0
  99. data/vendor/cfn_camelizer/lib/cfn_camelizer.rb +92 -0
  100. data/vendor/cfn_camelizer/lib/cfn_camelizer/version.rb +3 -0
  101. data/vendor/cfn_camelizer/spec/cfn_camelizer_spec.rb +79 -0
  102. data/vendor/cfn_camelizer/spec/spec_helper.rb +14 -0
  103. metadata +268 -21
  104. data/.travis.yml +0 -7
@@ -0,0 +1,1080 @@
1
+ {
2
+ "stack_events": [
3
+ {
4
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
5
+ "event_id": "ElbSecurityGroup-b915d3d7-0136-43af-86f5-7e0f2aa25811",
6
+ "stack_name": "demo-web",
7
+ "logical_resource_id": "ElbSecurityGroup",
8
+ "physical_resource_id": "sg-e3da72a8",
9
+ "resource_type": "AWS::EC2::SecurityGroup",
10
+ "timestamp": "2018-06-19 01:43:25 UTC",
11
+ "resource_status": "DELETE_IN_PROGRESS"
12
+ },
13
+ {
14
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
15
+ "event_id": "Elb-48e41804-9d23-4302-97f6-12023a7179e1",
16
+ "stack_name": "demo-web",
17
+ "logical_resource_id": "Elb",
18
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a",
19
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
20
+ "timestamp": "2018-06-19 01:43:23 UTC",
21
+ "resource_status": "DELETE_COMPLETE"
22
+ },
23
+ {
24
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
25
+ "event_id": "Elb-807571cb-2d4a-43b7-b2f0-5f801b4f7b14",
26
+ "stack_name": "demo-web",
27
+ "logical_resource_id": "Elb",
28
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a",
29
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
30
+ "timestamp": "2018-06-19 01:43:23 UTC",
31
+ "resource_status": "DELETE_IN_PROGRESS"
32
+ },
33
+ {
34
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
35
+ "event_id": "TargetGroup-ec634c43-b887-4bde-a525-7c69782865a6",
36
+ "stack_name": "demo-web",
37
+ "logical_resource_id": "TargetGroup",
38
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1",
39
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
40
+ "timestamp": "2018-06-19 01:43:22 UTC",
41
+ "resource_status": "DELETE_COMPLETE"
42
+ },
43
+ {
44
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
45
+ "event_id": "TargetGroup-3b2887fb-00d0-4629-bc21-c6343de22da4",
46
+ "stack_name": "demo-web",
47
+ "logical_resource_id": "TargetGroup",
48
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1",
49
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
50
+ "timestamp": "2018-06-19 01:43:21 UTC",
51
+ "resource_status": "DELETE_IN_PROGRESS"
52
+ },
53
+ {
54
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
55
+ "event_id": "EcsService-65a49928-5719-417c-8b88-d46615a819e0",
56
+ "stack_name": "demo-web",
57
+ "logical_resource_id": "EcsService",
58
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1N7ADZ6ZXNSHZ",
59
+ "resource_type": "AWS::ECS::Service",
60
+ "timestamp": "2018-06-19 01:43:20 UTC",
61
+ "resource_status": "DELETE_COMPLETE"
62
+ },
63
+ {
64
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
65
+ "event_id": "EcsSecurityGroupRule-cd75e919-18d3-4358-a079-1ce5601f1472",
66
+ "stack_name": "demo-web",
67
+ "logical_resource_id": "EcsSecurityGroupRule",
68
+ "physical_resource_id": "EcsSecurityGroupRule",
69
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
70
+ "timestamp": "2018-06-19 01:42:50 UTC",
71
+ "resource_status": "DELETE_COMPLETE"
72
+ },
73
+ {
74
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
75
+ "event_id": "Listener-40b1dc95-4c2c-43b4-9a3f-a72c0a9a8db2",
76
+ "stack_name": "demo-web",
77
+ "logical_resource_id": "Listener",
78
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a/0269156c6f8a5d37",
79
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
80
+ "timestamp": "2018-06-19 01:42:50 UTC",
81
+ "resource_status": "DELETE_COMPLETE"
82
+ },
83
+ {
84
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
85
+ "event_id": "EcsSecurityGroupRule-426d9090-c431-41f7-a9eb-58dbfa5754ec",
86
+ "stack_name": "demo-web",
87
+ "logical_resource_id": "EcsSecurityGroupRule",
88
+ "physical_resource_id": "EcsSecurityGroupRule",
89
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
90
+ "timestamp": "2018-06-19 01:42:49 UTC",
91
+ "resource_status": "DELETE_IN_PROGRESS"
92
+ },
93
+ {
94
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
95
+ "event_id": "Listener-edc90e3f-5d30-4470-be0f-eaf821cdaf96",
96
+ "stack_name": "demo-web",
97
+ "logical_resource_id": "Listener",
98
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a/0269156c6f8a5d37",
99
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
100
+ "timestamp": "2018-06-19 01:42:49 UTC",
101
+ "resource_status": "DELETE_IN_PROGRESS"
102
+ },
103
+ {
104
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
105
+ "event_id": "EcsService-60b2bae3-abb1-40bc-add1-901baf9cbc38",
106
+ "stack_name": "demo-web",
107
+ "logical_resource_id": "EcsService",
108
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1N7ADZ6ZXNSHZ",
109
+ "resource_type": "AWS::ECS::Service",
110
+ "timestamp": "2018-06-19 01:42:49 UTC",
111
+ "resource_status": "DELETE_IN_PROGRESS"
112
+ },
113
+ {
114
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
115
+ "event_id": "1191b0b0-7362-11e8-8f9f-500c285eae99",
116
+ "stack_name": "demo-web",
117
+ "logical_resource_id": "demo-web",
118
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
119
+ "resource_type": "AWS::CloudFormation::Stack",
120
+ "timestamp": "2018-06-19 01:42:47 UTC",
121
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
122
+ },
123
+ {
124
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
125
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-19T01:42:45.150Z",
126
+ "stack_name": "demo-web",
127
+ "logical_resource_id": "EcsService",
128
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-COSKF0KEJ778",
129
+ "resource_type": "AWS::ECS::Service",
130
+ "timestamp": "2018-06-19 01:42:45 UTC",
131
+ "resource_status": "UPDATE_COMPLETE",
132
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
133
+ },
134
+ {
135
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
136
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:40:43.817Z",
137
+ "stack_name": "demo-web",
138
+ "logical_resource_id": "EcsService",
139
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-COSKF0KEJ778",
140
+ "resource_type": "AWS::ECS::Service",
141
+ "timestamp": "2018-06-19 01:40:43 UTC",
142
+ "resource_status": "UPDATE_IN_PROGRESS",
143
+ "resource_status_reason": "Resource creation Initiated",
144
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
145
+ },
146
+ {
147
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
148
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:40:43.135Z",
149
+ "stack_name": "demo-web",
150
+ "logical_resource_id": "EcsService",
151
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1N7ADZ6ZXNSHZ",
152
+ "resource_type": "AWS::ECS::Service",
153
+ "timestamp": "2018-06-19 01:40:43 UTC",
154
+ "resource_status": "UPDATE_IN_PROGRESS",
155
+ "resource_status_reason": "Requested update requires the creation of a new physical resource; hence creating one.",
156
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
157
+ },
158
+ {
159
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
160
+ "event_id": "c32cb870-7361-11e8-aa12-500c28b3e29a",
161
+ "stack_name": "demo-web",
162
+ "logical_resource_id": "demo-web",
163
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
164
+ "resource_type": "AWS::CloudFormation::Stack",
165
+ "timestamp": "2018-06-19 01:40:35 UTC",
166
+ "resource_status": "UPDATE_IN_PROGRESS",
167
+ "resource_status_reason": "User Initiated"
168
+ },
169
+ {
170
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
171
+ "event_id": "b17cfae0-7361-11e8-8652-500c524058c6",
172
+ "stack_name": "demo-web",
173
+ "logical_resource_id": "demo-web",
174
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
175
+ "resource_type": "AWS::CloudFormation::Stack",
176
+ "timestamp": "2018-06-19 01:40:06 UTC",
177
+ "resource_status": "UPDATE_COMPLETE"
178
+ },
179
+ {
180
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
181
+ "event_id": "EcsService-7817b4fd-6a5d-473d-a098-fffc31f8be02",
182
+ "stack_name": "demo-web",
183
+ "logical_resource_id": "EcsService",
184
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-3WUGSQGMX5D7",
185
+ "resource_type": "AWS::ECS::Service",
186
+ "timestamp": "2018-06-19 01:40:05 UTC",
187
+ "resource_status": "DELETE_COMPLETE"
188
+ },
189
+ {
190
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
191
+ "event_id": "EcsService-40f58304-ce99-4a1c-8457-0c1d4c659a8a",
192
+ "stack_name": "demo-web",
193
+ "logical_resource_id": "EcsService",
194
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-3WUGSQGMX5D7",
195
+ "resource_type": "AWS::ECS::Service",
196
+ "timestamp": "2018-06-19 01:39:34 UTC",
197
+ "resource_status": "DELETE_IN_PROGRESS"
198
+ },
199
+ {
200
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
201
+ "event_id": "9d9ffd10-7361-11e8-b9a6-50fae984a0d1",
202
+ "stack_name": "demo-web",
203
+ "logical_resource_id": "demo-web",
204
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
205
+ "resource_type": "AWS::CloudFormation::Stack",
206
+ "timestamp": "2018-06-19 01:39:32 UTC",
207
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
208
+ },
209
+ {
210
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
211
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-19T01:39:30.206Z",
212
+ "stack_name": "demo-web",
213
+ "logical_resource_id": "EcsService",
214
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1N7ADZ6ZXNSHZ",
215
+ "resource_type": "AWS::ECS::Service",
216
+ "timestamp": "2018-06-19 01:39:30 UTC",
217
+ "resource_status": "UPDATE_COMPLETE",
218
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
219
+ },
220
+ {
221
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
222
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:37:29.037Z",
223
+ "stack_name": "demo-web",
224
+ "logical_resource_id": "EcsService",
225
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1N7ADZ6ZXNSHZ",
226
+ "resource_type": "AWS::ECS::Service",
227
+ "timestamp": "2018-06-19 01:37:29 UTC",
228
+ "resource_status": "UPDATE_IN_PROGRESS",
229
+ "resource_status_reason": "Resource creation Initiated",
230
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
231
+ },
232
+ {
233
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
234
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:37:28.467Z",
235
+ "stack_name": "demo-web",
236
+ "logical_resource_id": "EcsService",
237
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-3WUGSQGMX5D7",
238
+ "resource_type": "AWS::ECS::Service",
239
+ "timestamp": "2018-06-19 01:37:28 UTC",
240
+ "resource_status": "UPDATE_IN_PROGRESS",
241
+ "resource_status_reason": "Requested update requires the creation of a new physical resource; hence creating one.",
242
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
243
+ },
244
+ {
245
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
246
+ "event_id": "Listener-CREATE_COMPLETE-2018-06-19T01:37:28.191Z",
247
+ "stack_name": "demo-web",
248
+ "logical_resource_id": "Listener",
249
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a/0269156c6f8a5d37",
250
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
251
+ "timestamp": "2018-06-19 01:37:28 UTC",
252
+ "resource_status": "CREATE_COMPLETE",
253
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
254
+ },
255
+ {
256
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
257
+ "event_id": "Listener-CREATE_IN_PROGRESS-2018-06-19T01:37:27.393Z",
258
+ "stack_name": "demo-web",
259
+ "logical_resource_id": "Listener",
260
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a/0269156c6f8a5d37",
261
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
262
+ "timestamp": "2018-06-19 01:37:27 UTC",
263
+ "resource_status": "CREATE_IN_PROGRESS",
264
+ "resource_status_reason": "Resource creation Initiated",
265
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
266
+ },
267
+ {
268
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
269
+ "event_id": "Listener-CREATE_IN_PROGRESS-2018-06-19T01:37:27.013Z",
270
+ "stack_name": "demo-web",
271
+ "logical_resource_id": "Listener",
272
+ "physical_resource_id": "",
273
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
274
+ "timestamp": "2018-06-19 01:37:27 UTC",
275
+ "resource_status": "CREATE_IN_PROGRESS",
276
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
277
+ },
278
+ {
279
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
280
+ "event_id": "TargetGroup-CREATE_COMPLETE-2018-06-19T01:37:24.475Z",
281
+ "stack_name": "demo-web",
282
+ "logical_resource_id": "TargetGroup",
283
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1",
284
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
285
+ "timestamp": "2018-06-19 01:37:24 UTC",
286
+ "resource_status": "CREATE_COMPLETE",
287
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"TargetGroupAttributes\":[{\"Value\":\"0\",\"Key\":\"deregistration_delay.timeout_seconds\"}],\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
288
+ },
289
+ {
290
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
291
+ "event_id": "TargetGroup-CREATE_IN_PROGRESS-2018-06-19T01:37:23.290Z",
292
+ "stack_name": "demo-web",
293
+ "logical_resource_id": "TargetGroup",
294
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-16TC4INRX3RED/f48205693f50b7a1",
295
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
296
+ "timestamp": "2018-06-19 01:37:23 UTC",
297
+ "resource_status": "CREATE_IN_PROGRESS",
298
+ "resource_status_reason": "Resource creation Initiated",
299
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"TargetGroupAttributes\":[{\"Value\":\"0\",\"Key\":\"deregistration_delay.timeout_seconds\"}],\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
300
+ },
301
+ {
302
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
303
+ "event_id": "TargetGroup-CREATE_IN_PROGRESS-2018-06-19T01:37:22.878Z",
304
+ "stack_name": "demo-web",
305
+ "logical_resource_id": "TargetGroup",
306
+ "physical_resource_id": "",
307
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
308
+ "timestamp": "2018-06-19 01:37:22 UTC",
309
+ "resource_status": "CREATE_IN_PROGRESS",
310
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"TargetGroupAttributes\":[{\"Value\":\"0\",\"Key\":\"deregistration_delay.timeout_seconds\"}],\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
311
+ },
312
+ {
313
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
314
+ "event_id": "Elb-CREATE_COMPLETE-2018-06-19T01:37:20.680Z",
315
+ "stack_name": "demo-web",
316
+ "logical_resource_id": "Elb",
317
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a",
318
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
319
+ "timestamp": "2018-06-19 01:37:20 UTC",
320
+ "resource_status": "CREATE_COMPLETE",
321
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-e3da72a8\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-23\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
322
+ },
323
+ {
324
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
325
+ "event_id": "EcsSecurityGroupRule-CREATE_COMPLETE-2018-06-19T01:35:18.518Z",
326
+ "stack_name": "demo-web",
327
+ "logical_resource_id": "EcsSecurityGroupRule",
328
+ "physical_resource_id": "EcsSecurityGroupRule",
329
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
330
+ "timestamp": "2018-06-19 01:35:18 UTC",
331
+ "resource_status": "CREATE_COMPLETE",
332
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-e3da72a8\",\"GroupId\":\"sg-dc379997\"}"
333
+ },
334
+ {
335
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
336
+ "event_id": "Elb-CREATE_IN_PROGRESS-2018-06-19T01:35:18.390Z",
337
+ "stack_name": "demo-web",
338
+ "logical_resource_id": "Elb",
339
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-3VO09GCMW764/44104adf26b1873a",
340
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
341
+ "timestamp": "2018-06-19 01:35:18 UTC",
342
+ "resource_status": "CREATE_IN_PROGRESS",
343
+ "resource_status_reason": "Resource creation Initiated",
344
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-e3da72a8\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-23\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
345
+ },
346
+ {
347
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
348
+ "event_id": "EcsSecurityGroupRule-CREATE_IN_PROGRESS-2018-06-19T01:35:17.697Z",
349
+ "stack_name": "demo-web",
350
+ "logical_resource_id": "EcsSecurityGroupRule",
351
+ "physical_resource_id": "EcsSecurityGroupRule",
352
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
353
+ "timestamp": "2018-06-19 01:35:17 UTC",
354
+ "resource_status": "CREATE_IN_PROGRESS",
355
+ "resource_status_reason": "Resource creation Initiated",
356
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-e3da72a8\",\"GroupId\":\"sg-dc379997\"}"
357
+ },
358
+ {
359
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
360
+ "event_id": "Elb-CREATE_IN_PROGRESS-2018-06-19T01:35:17.537Z",
361
+ "stack_name": "demo-web",
362
+ "logical_resource_id": "Elb",
363
+ "physical_resource_id": "",
364
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
365
+ "timestamp": "2018-06-19 01:35:17 UTC",
366
+ "resource_status": "CREATE_IN_PROGRESS",
367
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-e3da72a8\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-23\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
368
+ },
369
+ {
370
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
371
+ "event_id": "EcsSecurityGroupRule-CREATE_IN_PROGRESS-2018-06-19T01:35:17.523Z",
372
+ "stack_name": "demo-web",
373
+ "logical_resource_id": "EcsSecurityGroupRule",
374
+ "physical_resource_id": "",
375
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
376
+ "timestamp": "2018-06-19 01:35:17 UTC",
377
+ "resource_status": "CREATE_IN_PROGRESS",
378
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-e3da72a8\",\"GroupId\":\"sg-dc379997\"}"
379
+ },
380
+ {
381
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
382
+ "event_id": "ElbSecurityGroup-CREATE_COMPLETE-2018-06-19T01:35:15.453Z",
383
+ "stack_name": "demo-web",
384
+ "logical_resource_id": "ElbSecurityGroup",
385
+ "physical_resource_id": "sg-e3da72a8",
386
+ "resource_type": "AWS::EC2::SecurityGroup",
387
+ "timestamp": "2018-06-19 01:35:15 UTC",
388
+ "resource_status": "CREATE_COMPLETE",
389
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
390
+ },
391
+ {
392
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
393
+ "event_id": "ElbSecurityGroup-CREATE_IN_PROGRESS-2018-06-19T01:35:12.980Z",
394
+ "stack_name": "demo-web",
395
+ "logical_resource_id": "ElbSecurityGroup",
396
+ "physical_resource_id": "sg-e3da72a8",
397
+ "resource_type": "AWS::EC2::SecurityGroup",
398
+ "timestamp": "2018-06-19 01:35:12 UTC",
399
+ "resource_status": "CREATE_IN_PROGRESS",
400
+ "resource_status_reason": "Resource creation Initiated",
401
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
402
+ },
403
+ {
404
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
405
+ "event_id": "ElbSecurityGroup-CREATE_IN_PROGRESS-2018-06-19T01:35:12.117Z",
406
+ "stack_name": "demo-web",
407
+ "logical_resource_id": "ElbSecurityGroup",
408
+ "physical_resource_id": "",
409
+ "resource_type": "AWS::EC2::SecurityGroup",
410
+ "timestamp": "2018-06-19 01:35:12 UTC",
411
+ "resource_status": "CREATE_IN_PROGRESS",
412
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
413
+ },
414
+ {
415
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
416
+ "event_id": "ff4de5f0-7360-11e8-856b-50fae9882035",
417
+ "stack_name": "demo-web",
418
+ "logical_resource_id": "demo-web",
419
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
420
+ "resource_type": "AWS::CloudFormation::Stack",
421
+ "timestamp": "2018-06-19 01:35:07 UTC",
422
+ "resource_status": "UPDATE_IN_PROGRESS",
423
+ "resource_status_reason": "User Initiated"
424
+ },
425
+ {
426
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
427
+ "event_id": "badb9ed0-7360-11e8-ba23-503aca4a5835",
428
+ "stack_name": "demo-web",
429
+ "logical_resource_id": "demo-web",
430
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
431
+ "resource_type": "AWS::CloudFormation::Stack",
432
+ "timestamp": "2018-06-19 01:33:12 UTC",
433
+ "resource_status": "UPDATE_COMPLETE"
434
+ },
435
+ {
436
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
437
+ "event_id": "ElbSecurityGroup-a7a54761-56ba-4410-9e3f-1e219a8a4a90",
438
+ "stack_name": "demo-web",
439
+ "logical_resource_id": "ElbSecurityGroup",
440
+ "physical_resource_id": "sg-f5c26bbe",
441
+ "resource_type": "AWS::EC2::SecurityGroup",
442
+ "timestamp": "2018-06-19 01:33:11 UTC",
443
+ "resource_status": "DELETE_COMPLETE"
444
+ },
445
+ {
446
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
447
+ "event_id": "ElbSecurityGroup-da33b83e-80a5-49ce-b651-aca71f2e04c4",
448
+ "stack_name": "demo-web",
449
+ "logical_resource_id": "ElbSecurityGroup",
450
+ "physical_resource_id": "sg-f5c26bbe",
451
+ "resource_type": "AWS::EC2::SecurityGroup",
452
+ "timestamp": "2018-06-19 01:32:05 UTC",
453
+ "resource_status": "DELETE_IN_PROGRESS"
454
+ },
455
+ {
456
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
457
+ "event_id": "Elb-479bb2c6-00b0-41da-84ed-194b3e9c1168",
458
+ "stack_name": "demo-web",
459
+ "logical_resource_id": "Elb",
460
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
461
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
462
+ "timestamp": "2018-06-19 01:32:04 UTC",
463
+ "resource_status": "DELETE_COMPLETE"
464
+ },
465
+ {
466
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
467
+ "event_id": "Elb-31b43685-4613-41ed-aa71-cdd65d3a9ed0",
468
+ "stack_name": "demo-web",
469
+ "logical_resource_id": "Elb",
470
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
471
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
472
+ "timestamp": "2018-06-19 01:32:03 UTC",
473
+ "resource_status": "DELETE_IN_PROGRESS"
474
+ },
475
+ {
476
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
477
+ "event_id": "TargetGroup-d5082134-ddcc-4db2-bae1-3b5555a8893d",
478
+ "stack_name": "demo-web",
479
+ "logical_resource_id": "TargetGroup",
480
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209",
481
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
482
+ "timestamp": "2018-06-19 01:32:02 UTC",
483
+ "resource_status": "DELETE_COMPLETE"
484
+ },
485
+ {
486
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
487
+ "event_id": "TargetGroup-5ec17653-f24b-44c0-8a28-c88fdb59967b",
488
+ "stack_name": "demo-web",
489
+ "logical_resource_id": "TargetGroup",
490
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209",
491
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
492
+ "timestamp": "2018-06-19 01:32:02 UTC",
493
+ "resource_status": "DELETE_IN_PROGRESS"
494
+ },
495
+ {
496
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
497
+ "event_id": "EcsService-59707204-ad72-4eec-94d2-2ed97455b404",
498
+ "stack_name": "demo-web",
499
+ "logical_resource_id": "EcsService",
500
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
501
+ "resource_type": "AWS::ECS::Service",
502
+ "timestamp": "2018-06-19 01:32:01 UTC",
503
+ "resource_status": "DELETE_COMPLETE"
504
+ },
505
+ {
506
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
507
+ "event_id": "EcsSecurityGroupRule-b2b44dee-965c-48cd-940b-f743b6b5baf0",
508
+ "stack_name": "demo-web",
509
+ "logical_resource_id": "EcsSecurityGroupRule",
510
+ "physical_resource_id": "EcsSecurityGroupRule",
511
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
512
+ "timestamp": "2018-06-19 01:31:01 UTC",
513
+ "resource_status": "DELETE_COMPLETE"
514
+ },
515
+ {
516
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
517
+ "event_id": "Listener-36080d15-51a8-4a64-8e46-59e7b158ee74",
518
+ "stack_name": "demo-web",
519
+ "logical_resource_id": "Listener",
520
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158/8a3e327ae285dedb",
521
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
522
+ "timestamp": "2018-06-19 01:31:00 UTC",
523
+ "resource_status": "DELETE_COMPLETE"
524
+ },
525
+ {
526
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
527
+ "event_id": "Listener-51bdedbf-5dd3-4c58-9a04-8dd8e11ea07f",
528
+ "stack_name": "demo-web",
529
+ "logical_resource_id": "Listener",
530
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158/8a3e327ae285dedb",
531
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
532
+ "timestamp": "2018-06-19 01:31:00 UTC",
533
+ "resource_status": "DELETE_IN_PROGRESS"
534
+ },
535
+ {
536
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
537
+ "event_id": "EcsSecurityGroupRule-c3e534f1-ace5-41fa-bf63-c19fba8dbf02",
538
+ "stack_name": "demo-web",
539
+ "logical_resource_id": "EcsSecurityGroupRule",
540
+ "physical_resource_id": "EcsSecurityGroupRule",
541
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
542
+ "timestamp": "2018-06-19 01:31:00 UTC",
543
+ "resource_status": "DELETE_IN_PROGRESS"
544
+ },
545
+ {
546
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
547
+ "event_id": "EcsService-8ed38b67-3f65-41d5-9bf1-80a9d14fc3b2",
548
+ "stack_name": "demo-web",
549
+ "logical_resource_id": "EcsService",
550
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
551
+ "resource_type": "AWS::ECS::Service",
552
+ "timestamp": "2018-06-19 01:30:59 UTC",
553
+ "resource_status": "DELETE_IN_PROGRESS"
554
+ },
555
+ {
556
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
557
+ "event_id": "6afa3fc0-7360-11e8-8cc6-500c5242948e",
558
+ "stack_name": "demo-web",
559
+ "logical_resource_id": "demo-web",
560
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
561
+ "resource_type": "AWS::CloudFormation::Stack",
562
+ "timestamp": "2018-06-19 01:30:58 UTC",
563
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
564
+ },
565
+ {
566
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
567
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-19T01:30:55.783Z",
568
+ "stack_name": "demo-web",
569
+ "logical_resource_id": "EcsService",
570
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-3WUGSQGMX5D7",
571
+ "resource_type": "AWS::ECS::Service",
572
+ "timestamp": "2018-06-19 01:30:55 UTC",
573
+ "resource_status": "UPDATE_COMPLETE",
574
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
575
+ },
576
+ {
577
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
578
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:28:54.696Z",
579
+ "stack_name": "demo-web",
580
+ "logical_resource_id": "EcsService",
581
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-3WUGSQGMX5D7",
582
+ "resource_type": "AWS::ECS::Service",
583
+ "timestamp": "2018-06-19 01:28:54 UTC",
584
+ "resource_status": "UPDATE_IN_PROGRESS",
585
+ "resource_status_reason": "Resource creation Initiated",
586
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
587
+ },
588
+ {
589
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
590
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-19T01:28:54.020Z",
591
+ "stack_name": "demo-web",
592
+ "logical_resource_id": "EcsService",
593
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
594
+ "resource_type": "AWS::ECS::Service",
595
+ "timestamp": "2018-06-19 01:28:54 UTC",
596
+ "resource_status": "UPDATE_IN_PROGRESS",
597
+ "resource_status_reason": "Requested update requires the creation of a new physical resource; hence creating one.",
598
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
599
+ },
600
+ {
601
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
602
+ "event_id": "1cc446c0-7360-11e8-8a08-500c28604ce6",
603
+ "stack_name": "demo-web",
604
+ "logical_resource_id": "demo-web",
605
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
606
+ "resource_type": "AWS::CloudFormation::Stack",
607
+ "timestamp": "2018-06-19 01:28:47 UTC",
608
+ "resource_status": "UPDATE_IN_PROGRESS",
609
+ "resource_status_reason": "User Initiated"
610
+ },
611
+ {
612
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
613
+ "event_id": "d78988e0-7346-11e8-93ce-500c28659c35",
614
+ "stack_name": "demo-web",
615
+ "logical_resource_id": "demo-web",
616
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
617
+ "resource_type": "AWS::CloudFormation::Stack",
618
+ "timestamp": "2018-06-18 22:27:53 UTC",
619
+ "resource_status": "UPDATE_COMPLETE"
620
+ },
621
+ {
622
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
623
+ "event_id": "d707fcd0-7346-11e8-a61b-500c524058f2",
624
+ "stack_name": "demo-web",
625
+ "logical_resource_id": "demo-web",
626
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
627
+ "resource_type": "AWS::CloudFormation::Stack",
628
+ "timestamp": "2018-06-18 22:27:52 UTC",
629
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
630
+ },
631
+ {
632
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
633
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-18T22:27:49.258Z",
634
+ "stack_name": "demo-web",
635
+ "logical_resource_id": "EcsService",
636
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
637
+ "resource_type": "AWS::ECS::Service",
638
+ "timestamp": "2018-06-18 22:27:49 UTC",
639
+ "resource_status": "UPDATE_COMPLETE",
640
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
641
+ },
642
+ {
643
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
644
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-18T22:19:44.883Z",
645
+ "stack_name": "demo-web",
646
+ "logical_resource_id": "EcsService",
647
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
648
+ "resource_type": "AWS::ECS::Service",
649
+ "timestamp": "2018-06-18 22:19:44 UTC",
650
+ "resource_status": "UPDATE_IN_PROGRESS",
651
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-18479b53\",\"sg-c3c16888\",\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
652
+ },
653
+ {
654
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
655
+ "event_id": "Elb-UPDATE_COMPLETE-2018-06-18T22:19:39.365Z",
656
+ "stack_name": "demo-web",
657
+ "logical_resource_id": "Elb",
658
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
659
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
660
+ "timestamp": "2018-06-18 22:19:39 UTC",
661
+ "resource_status": "UPDATE_COMPLETE",
662
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-f5c26bbe\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-78\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
663
+ },
664
+ {
665
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
666
+ "event_id": "Elb-UPDATE_IN_PROGRESS-2018-06-18T22:19:38.696Z",
667
+ "stack_name": "demo-web",
668
+ "logical_resource_id": "Elb",
669
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
670
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
671
+ "timestamp": "2018-06-18 22:19:38 UTC",
672
+ "resource_status": "UPDATE_IN_PROGRESS",
673
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-f5c26bbe\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-78\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
674
+ },
675
+ {
676
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
677
+ "event_id": "ad3772b0-7345-11e8-aefe-500c28b03efd",
678
+ "stack_name": "demo-web",
679
+ "logical_resource_id": "demo-web",
680
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
681
+ "resource_type": "AWS::CloudFormation::Stack",
682
+ "timestamp": "2018-06-18 22:19:33 UTC",
683
+ "resource_status": "UPDATE_IN_PROGRESS",
684
+ "resource_status_reason": "User Initiated"
685
+ },
686
+ {
687
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
688
+ "event_id": "76b5be40-7345-11e8-8ec2-500c28604c82",
689
+ "stack_name": "demo-web",
690
+ "logical_resource_id": "demo-web",
691
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
692
+ "resource_type": "AWS::CloudFormation::Stack",
693
+ "timestamp": "2018-06-18 22:18:01 UTC",
694
+ "resource_status": "UPDATE_COMPLETE"
695
+ },
696
+ {
697
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
698
+ "event_id": "EcsService-16413393-56c4-4ba7-a828-898f51fa4320",
699
+ "stack_name": "demo-web",
700
+ "logical_resource_id": "EcsService",
701
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-11MPMP7GAS3WL",
702
+ "resource_type": "AWS::ECS::Service",
703
+ "timestamp": "2018-06-18 22:18:01 UTC",
704
+ "resource_status": "DELETE_COMPLETE"
705
+ },
706
+ {
707
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
708
+ "event_id": "EcsService-79fe2fa0-928f-4892-b9fb-f532d210a107",
709
+ "stack_name": "demo-web",
710
+ "logical_resource_id": "EcsService",
711
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-11MPMP7GAS3WL",
712
+ "resource_type": "AWS::ECS::Service",
713
+ "timestamp": "2018-06-18 22:17:29 UTC",
714
+ "resource_status": "DELETE_IN_PROGRESS"
715
+ },
716
+ {
717
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
718
+ "event_id": "62bb2650-7345-11e8-bc61-500c286014fd",
719
+ "stack_name": "demo-web",
720
+ "logical_resource_id": "demo-web",
721
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
722
+ "resource_type": "AWS::CloudFormation::Stack",
723
+ "timestamp": "2018-06-18 22:17:28 UTC",
724
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
725
+ },
726
+ {
727
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
728
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-18T22:17:25.710Z",
729
+ "stack_name": "demo-web",
730
+ "logical_resource_id": "EcsService",
731
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
732
+ "resource_type": "AWS::ECS::Service",
733
+ "timestamp": "2018-06-18 22:17:25 UTC",
734
+ "resource_status": "UPDATE_COMPLETE",
735
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
736
+ },
737
+ {
738
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
739
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-18T22:16:24.749Z",
740
+ "stack_name": "demo-web",
741
+ "logical_resource_id": "EcsService",
742
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-WB5L8HVGARBJ",
743
+ "resource_type": "AWS::ECS::Service",
744
+ "timestamp": "2018-06-18 22:16:24 UTC",
745
+ "resource_status": "UPDATE_IN_PROGRESS",
746
+ "resource_status_reason": "Resource creation Initiated",
747
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
748
+ },
749
+ {
750
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
751
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-18T22:16:24.284Z",
752
+ "stack_name": "demo-web",
753
+ "logical_resource_id": "EcsService",
754
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-11MPMP7GAS3WL",
755
+ "resource_type": "AWS::ECS::Service",
756
+ "timestamp": "2018-06-18 22:16:24 UTC",
757
+ "resource_status": "UPDATE_IN_PROGRESS",
758
+ "resource_status_reason": "Requested update requires the creation of a new physical resource; hence creating one.",
759
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
760
+ },
761
+ {
762
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
763
+ "event_id": "Listener-CREATE_COMPLETE-2018-06-18T22:16:23.226Z",
764
+ "stack_name": "demo-web",
765
+ "logical_resource_id": "Listener",
766
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158/8a3e327ae285dedb",
767
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
768
+ "timestamp": "2018-06-18 22:16:23 UTC",
769
+ "resource_status": "CREATE_COMPLETE",
770
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
771
+ },
772
+ {
773
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
774
+ "event_id": "Listener-CREATE_IN_PROGRESS-2018-06-18T22:16:22.509Z",
775
+ "stack_name": "demo-web",
776
+ "logical_resource_id": "Listener",
777
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:listener/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158/8a3e327ae285dedb",
778
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
779
+ "timestamp": "2018-06-18 22:16:22 UTC",
780
+ "resource_status": "CREATE_IN_PROGRESS",
781
+ "resource_status_reason": "Resource creation Initiated",
782
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
783
+ },
784
+ {
785
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
786
+ "event_id": "Listener-CREATE_IN_PROGRESS-2018-06-18T22:16:22.031Z",
787
+ "stack_name": "demo-web",
788
+ "logical_resource_id": "Listener",
789
+ "physical_resource_id": "",
790
+ "resource_type": "AWS::ElasticLoadBalancingV2::Listener",
791
+ "timestamp": "2018-06-18 22:16:22 UTC",
792
+ "resource_status": "CREATE_IN_PROGRESS",
793
+ "resource_properties": "{\"LoadBalancerArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158\",\"DefaultActions\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209\",\"Type\":\"forward\"}],\"Port\":\"80\",\"Protocol\":\"HTTP\"}"
794
+ },
795
+ {
796
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
797
+ "event_id": "TargetGroup-CREATE_COMPLETE-2018-06-18T22:16:19.929Z",
798
+ "stack_name": "demo-web",
799
+ "logical_resource_id": "TargetGroup",
800
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209",
801
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
802
+ "timestamp": "2018-06-18 22:16:19 UTC",
803
+ "resource_status": "CREATE_COMPLETE",
804
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
805
+ },
806
+ {
807
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
808
+ "event_id": "TargetGroup-CREATE_IN_PROGRESS-2018-06-18T22:16:19.241Z",
809
+ "stack_name": "demo-web",
810
+ "logical_resource_id": "TargetGroup",
811
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/hi-we-Targe-1J483H7T57EOA/c8dd41f65138d209",
812
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
813
+ "timestamp": "2018-06-18 22:16:19 UTC",
814
+ "resource_status": "CREATE_IN_PROGRESS",
815
+ "resource_status_reason": "Resource creation Initiated",
816
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
817
+ },
818
+ {
819
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
820
+ "event_id": "TargetGroup-CREATE_IN_PROGRESS-2018-06-18T22:16:18.730Z",
821
+ "stack_name": "demo-web",
822
+ "logical_resource_id": "TargetGroup",
823
+ "physical_resource_id": "",
824
+ "resource_type": "AWS::ElasticLoadBalancingV2::TargetGroup",
825
+ "timestamp": "2018-06-18 22:16:18 UTC",
826
+ "resource_status": "CREATE_IN_PROGRESS",
827
+ "resource_properties": "{\"HealthCheckIntervalSeconds\":\"60\",\"VpcId\":\"vpc-d79753ae\",\"HealthCheckPath\":\"/\",\"Port\":\"80\",\"TargetType\":\"ip\",\"UnhealthyThresholdCount\":\"10\",\"Protocol\":\"HTTP\"}"
828
+ },
829
+ {
830
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
831
+ "event_id": "Elb-CREATE_COMPLETE-2018-06-18T22:16:16.484Z",
832
+ "stack_name": "demo-web",
833
+ "logical_resource_id": "Elb",
834
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
835
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
836
+ "timestamp": "2018-06-18 22:16:16 UTC",
837
+ "resource_status": "CREATE_COMPLETE",
838
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-f5c26bbe\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-55\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
839
+ },
840
+ {
841
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
842
+ "event_id": "EcsSecurityGroupRule-CREATE_COMPLETE-2018-06-18T22:14:15.538Z",
843
+ "stack_name": "demo-web",
844
+ "logical_resource_id": "EcsSecurityGroupRule",
845
+ "physical_resource_id": "EcsSecurityGroupRule",
846
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
847
+ "timestamp": "2018-06-18 22:14:15 UTC",
848
+ "resource_status": "CREATE_COMPLETE",
849
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-f5c26bbe\",\"GroupId\":\"sg-dc379997\"}"
850
+ },
851
+ {
852
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
853
+ "event_id": "EcsSecurityGroupRule-CREATE_IN_PROGRESS-2018-06-18T22:14:14.500Z",
854
+ "stack_name": "demo-web",
855
+ "logical_resource_id": "EcsSecurityGroupRule",
856
+ "physical_resource_id": "EcsSecurityGroupRule",
857
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
858
+ "timestamp": "2018-06-18 22:14:14 UTC",
859
+ "resource_status": "CREATE_IN_PROGRESS",
860
+ "resource_status_reason": "Resource creation Initiated",
861
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-f5c26bbe\",\"GroupId\":\"sg-dc379997\"}"
862
+ },
863
+ {
864
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
865
+ "event_id": "Elb-CREATE_IN_PROGRESS-2018-06-18T22:14:14.354Z",
866
+ "stack_name": "demo-web",
867
+ "logical_resource_id": "Elb",
868
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-14V4X6KBAVEPP/24302e751e5ac158",
869
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
870
+ "timestamp": "2018-06-18 22:14:14 UTC",
871
+ "resource_status": "CREATE_IN_PROGRESS",
872
+ "resource_status_reason": "Resource creation Initiated",
873
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-f5c26bbe\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-55\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
874
+ },
875
+ {
876
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
877
+ "event_id": "EcsSecurityGroupRule-CREATE_IN_PROGRESS-2018-06-18T22:14:13.797Z",
878
+ "stack_name": "demo-web",
879
+ "logical_resource_id": "EcsSecurityGroupRule",
880
+ "physical_resource_id": "",
881
+ "resource_type": "AWS::EC2::SecurityGroupIngress",
882
+ "timestamp": "2018-06-18 22:14:13 UTC",
883
+ "resource_status": "CREATE_IN_PROGRESS",
884
+ "resource_properties": "{\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\",\"SourceSecurityGroupId\":\"sg-f5c26bbe\",\"GroupId\":\"sg-dc379997\"}"
885
+ },
886
+ {
887
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
888
+ "event_id": "Elb-CREATE_IN_PROGRESS-2018-06-18T22:14:13.478Z",
889
+ "stack_name": "demo-web",
890
+ "logical_resource_id": "Elb",
891
+ "physical_resource_id": "",
892
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
893
+ "timestamp": "2018-06-18 22:14:13 UTC",
894
+ "resource_status": "CREATE_IN_PROGRESS",
895
+ "resource_properties": "{\"SecurityGroups\":[\"sg-32a30579\",\"sg-f5c26bbe\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"Scheme\":\"internet-facing\",\"Tags\":[{\"Value\":\"demo-web-55\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
896
+ },
897
+ {
898
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
899
+ "event_id": "ElbSecurityGroup-CREATE_COMPLETE-2018-06-18T22:14:11.250Z",
900
+ "stack_name": "demo-web",
901
+ "logical_resource_id": "ElbSecurityGroup",
902
+ "physical_resource_id": "sg-f5c26bbe",
903
+ "resource_type": "AWS::EC2::SecurityGroup",
904
+ "timestamp": "2018-06-18 22:14:11 UTC",
905
+ "resource_status": "CREATE_COMPLETE",
906
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
907
+ },
908
+ {
909
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
910
+ "event_id": "ElbSecurityGroup-CREATE_IN_PROGRESS-2018-06-18T22:14:08.801Z",
911
+ "stack_name": "demo-web",
912
+ "logical_resource_id": "ElbSecurityGroup",
913
+ "physical_resource_id": "sg-f5c26bbe",
914
+ "resource_type": "AWS::EC2::SecurityGroup",
915
+ "timestamp": "2018-06-18 22:14:08 UTC",
916
+ "resource_status": "CREATE_IN_PROGRESS",
917
+ "resource_status_reason": "Resource creation Initiated",
918
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
919
+ },
920
+ {
921
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
922
+ "event_id": "ElbSecurityGroup-CREATE_IN_PROGRESS-2018-06-18T22:14:08.020Z",
923
+ "stack_name": "demo-web",
924
+ "logical_resource_id": "ElbSecurityGroup",
925
+ "physical_resource_id": "",
926
+ "resource_type": "AWS::EC2::SecurityGroup",
927
+ "timestamp": "2018-06-18 22:14:08 UTC",
928
+ "resource_status": "CREATE_IN_PROGRESS",
929
+ "resource_properties": "{\"GroupDescription\":\"Allow http to client host\",\"VpcId\":\"vpc-d79753ae\",\"SecurityGroupIngress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"80\",\"ToPort\":\"80\",\"IpProtocol\":\"tcp\"}],\"SecurityGroupEgress\":[{\"CidrIp\":\"0.0.0.0/0\",\"FromPort\":\"0\",\"ToPort\":\"65535\",\"IpProtocol\":\"tcp\"}],\"Tags\":[{\"Value\":\"demo-web-elb\",\"Key\":\"Name\"},{\"Value\":\"demo-web\",\"Key\":\"ufo\"}]}"
930
+ },
931
+ {
932
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
933
+ "event_id": "e8841220-7344-11e8-a5aa-50fae98974fd",
934
+ "stack_name": "demo-web",
935
+ "logical_resource_id": "demo-web",
936
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
937
+ "resource_type": "AWS::CloudFormation::Stack",
938
+ "timestamp": "2018-06-18 22:14:03 UTC",
939
+ "resource_status": "UPDATE_IN_PROGRESS",
940
+ "resource_status_reason": "User Initiated"
941
+ },
942
+ {
943
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
944
+ "event_id": "bb9b7290-7343-11e8-9fbc-500c28b23699",
945
+ "stack_name": "demo-web",
946
+ "logical_resource_id": "demo-web",
947
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
948
+ "resource_type": "AWS::CloudFormation::Stack",
949
+ "timestamp": "2018-06-18 22:05:38 UTC",
950
+ "resource_status": "UPDATE_COMPLETE"
951
+ },
952
+ {
953
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
954
+ "event_id": "EcsService-0e2e37db-5c33-4cf9-af7c-9d0151de2d68",
955
+ "stack_name": "demo-web",
956
+ "logical_resource_id": "EcsService",
957
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1RGUXOEJCH6RH",
958
+ "resource_type": "AWS::ECS::Service",
959
+ "timestamp": "2018-06-18 22:05:37 UTC",
960
+ "resource_status": "DELETE_COMPLETE"
961
+ },
962
+ {
963
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
964
+ "event_id": "EcsService-501fd5b6-8366-4d83-92eb-7108ce8224f3",
965
+ "stack_name": "demo-web",
966
+ "logical_resource_id": "EcsService",
967
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1RGUXOEJCH6RH",
968
+ "resource_type": "AWS::ECS::Service",
969
+ "timestamp": "2018-06-18 22:05:06 UTC",
970
+ "resource_status": "DELETE_IN_PROGRESS"
971
+ },
972
+ {
973
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
974
+ "event_id": "a7630e50-7343-11e8-bc49-500c28903236",
975
+ "stack_name": "demo-web",
976
+ "logical_resource_id": "demo-web",
977
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
978
+ "resource_type": "AWS::CloudFormation::Stack",
979
+ "timestamp": "2018-06-18 22:05:04 UTC",
980
+ "resource_status": "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"
981
+ },
982
+ {
983
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
984
+ "event_id": "EcsService-UPDATE_COMPLETE-2018-06-18T22:05:00.211Z",
985
+ "stack_name": "demo-web",
986
+ "logical_resource_id": "EcsService",
987
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-11MPMP7GAS3WL",
988
+ "resource_type": "AWS::ECS::Service",
989
+ "timestamp": "2018-06-18 22:05:00 UTC",
990
+ "resource_status": "UPDATE_COMPLETE",
991
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
992
+ },
993
+ {
994
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
995
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-18T22:02:59.026Z",
996
+ "stack_name": "demo-web",
997
+ "logical_resource_id": "EcsService",
998
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-11MPMP7GAS3WL",
999
+ "resource_type": "AWS::ECS::Service",
1000
+ "timestamp": "2018-06-18 22:02:59 UTC",
1001
+ "resource_status": "UPDATE_IN_PROGRESS",
1002
+ "resource_status_reason": "Resource creation Initiated",
1003
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
1004
+ },
1005
+ {
1006
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1007
+ "event_id": "EcsService-UPDATE_IN_PROGRESS-2018-06-18T22:02:58.432Z",
1008
+ "stack_name": "demo-web",
1009
+ "logical_resource_id": "EcsService",
1010
+ "physical_resource_id": "arn:aws:ecs:us-east-1:111111111111:service/demo-web-EcsService-1RGUXOEJCH6RH",
1011
+ "resource_type": "AWS::ECS::Service",
1012
+ "timestamp": "2018-06-18 22:02:58 UTC",
1013
+ "resource_status": "UPDATE_IN_PROGRESS",
1014
+ "resource_status_reason": "Requested update requires the creation of a new physical resource; hence creating one.",
1015
+ "resource_properties": "{\"TaskDefinition\":\"arn:aws:ecs:us-east-1:111111111111:task-definition/demo-web:191\",\"Cluster\":\"development\",\"LoadBalancers\":[{\"TargetGroupArn\":\"arn:aws:elasticloadbalancing:us-east-1:111111111111:targetgroup/my-elb/0158af4eb596cfd2\",\"ContainerName\":\"web\",\"ContainerPort\":\"4567\"}],\"NetworkConfiguration\":{\"AwsvpcConfiguration\":{\"SecurityGroups\":[\"sg-dc379997\"],\"Subnets\":[\"subnet-29e75925\",\"subnet-3fb1875a\",\"subnet-4ac50f66\",\"subnet-622eee38\",\"subnet-83cf49cb\",\"subnet-f45d02c8\"],\"AssignPublicIp\":\"ENABLED\"}},\"DesiredCount\":\"1\",\"LaunchType\":\"FARGATE\"}"
1016
+ },
1017
+ {
1018
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1019
+ "event_id": "586e5930-7343-11e8-afba-50d501eb4c17",
1020
+ "stack_name": "demo-web",
1021
+ "logical_resource_id": "demo-web",
1022
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1023
+ "resource_type": "AWS::CloudFormation::Stack",
1024
+ "timestamp": "2018-06-18 22:02:51 UTC",
1025
+ "resource_status": "UPDATE_IN_PROGRESS",
1026
+ "resource_status_reason": "User Initiated"
1027
+ },
1028
+ {
1029
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1030
+ "event_id": "41b7d590-7343-11e8-b84a-5044763dbb7b",
1031
+ "stack_name": "demo-web",
1032
+ "logical_resource_id": "demo-web",
1033
+ "physical_resource_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1034
+ "resource_type": "AWS::CloudFormation::Stack",
1035
+ "timestamp": "2018-06-18 22:02:13 UTC",
1036
+ "resource_status": "UPDATE_COMPLETE"
1037
+ },
1038
+ {
1039
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1040
+ "event_id": "ElbSecurityGroup-ef82a7f7-c221-401d-86b6-c5d521df68a1",
1041
+ "stack_name": "demo-web",
1042
+ "logical_resource_id": "ElbSecurityGroup",
1043
+ "physical_resource_id": "sg-5310be18",
1044
+ "resource_type": "AWS::EC2::SecurityGroup",
1045
+ "timestamp": "2018-06-18 22:02:13 UTC",
1046
+ "resource_status": "DELETE_COMPLETE"
1047
+ },
1048
+ {
1049
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1050
+ "event_id": "ElbSecurityGroup-16feab17-9bc6-4755-8c6b-1855140fd0b0",
1051
+ "stack_name": "demo-web",
1052
+ "logical_resource_id": "ElbSecurityGroup",
1053
+ "physical_resource_id": "sg-5310be18",
1054
+ "resource_type": "AWS::EC2::SecurityGroup",
1055
+ "timestamp": "2018-06-18 22:01:37 UTC",
1056
+ "resource_status": "DELETE_IN_PROGRESS"
1057
+ },
1058
+ {
1059
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1060
+ "event_id": "Elb-20bc4e1b-ddd0-4d47-8fac-ba5749354c84",
1061
+ "stack_name": "demo-web",
1062
+ "logical_resource_id": "Elb",
1063
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-RNKELHGQ6MOY/a68bcc10755ae4ce",
1064
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
1065
+ "timestamp": "2018-06-18 22:01:36 UTC",
1066
+ "resource_status": "DELETE_COMPLETE"
1067
+ },
1068
+ {
1069
+ "stack_id": "arn:aws:cloudformation:us-east-1:111111111111:stack/demo-web/2813d320-733c-11e8-8746-503f23fb55fe",
1070
+ "event_id": "Elb-4ee923ef-3c54-47db-91a3-2460c2c8a624",
1071
+ "stack_name": "demo-web",
1072
+ "logical_resource_id": "Elb",
1073
+ "physical_resource_id": "arn:aws:elasticloadbalancing:us-east-1:111111111111:loadbalancer/app/demo-web-Elb-RNKELHGQ6MOY/a68bcc10755ae4ce",
1074
+ "resource_type": "AWS::ElasticLoadBalancingV2::LoadBalancer",
1075
+ "timestamp": "2018-06-18 22:01:36 UTC",
1076
+ "resource_status": "DELETE_IN_PROGRESS"
1077
+ }
1078
+ ],
1079
+ "next_token": "5zyFIzxEREqtiieBOFRv9AKtJgQwr0UoWtzno6oWGRpsfI4SyFEISVuq7dshmx4V1N2PgZeXLCchIJ4Rma/kwoSI7J77rQoz8jxZ3WgaLKeXJRGsRNb1HsyVXRosfEpJ9ny1tTothDOCGfXHvsjD36V4bPRv5NfdykPGETrE6+HJE7j3FK15zCQhT0Ofb3nDIKDJupRBzDtL8tGvJ6idiZ3dfVpPt0SfV3uUJFH4wuQTz1Zr5RfTWmfp23OscqKc42rIbS27GHrGes6J7b4xlSpsRxT01LpvO+FkrPtN665rc0zELQDllyXM8him+50qRSHURQJCyWADssNyO3d/5nmftb3MfDrdOLdSJaOO6WGRtMIy0zqCCzMivxwEex40P5DVgnOwR/vQq25PGJvJBFWQNtLXhOLy+8WNpoVQE2HYJMwhgEBGLPje0r/EgT0Qj/MCjqC6yQXlD5jtJoGnwf3Yrr6OkIROsKBy6anDX2rufrSTu+BhM5SpqT0gFWymtutyw6VWLNlQQm3rGZiBdUSKRaIaQS2CJafhl38IoGgorpLXMIy6R/0DgwHs9hLoSIBPp8EJKIyR0TK3ktrrB6E5/xfZ7txhUHUc85xtFSV7l38sP8rk+rA2vju9cDKtwYrUuOssMTwtHhQa9HRHcef7J2YYOPC8TDp1Oc7+xc3l0MPLekjdrbT3cvKq/4KHpvJp8wGSNadrN8/2tUVWb0ZJs5c3B04fbCgTXvJ71tc=|C9b1FN/OtkxFcgHJBtqwzQ==|1|1c4c72fa7c3bf575141b59ce24801a6730725da6c9a6091521e34d61e1643683"
1080
+ }