diff --git a/app/models/manageiq/providers/amazon/network_manager.rb b/app/models/manageiq/providers/amazon/network_manager.rb index 972259aa7..294550ed5 100644 --- a/app/models/manageiq/providers/amazon/network_manager.rb +++ b/app/models/manageiq/providers/amazon/network_manager.rb @@ -2,6 +2,11 @@ class ManageIQ::Providers::Amazon::NetworkManager < ManageIQ::Providers::Network require_nested :CloudNetwork require_nested :CloudSubnet require_nested :FloatingIp + require_nested :LoadBalancer + require_nested :LoadBalancerHealthCheck + require_nested :LoadBalancerListener + require_nested :LoadBalancerPool + require_nested :LoadBalancerPoolMember require_nested :NetworkPort require_nested :NetworkRouter require_nested :RefreshParser diff --git a/app/models/manageiq/providers/amazon/network_manager/load_balancer.rb b/app/models/manageiq/providers/amazon/network_manager/load_balancer.rb new file mode 100644 index 000000000..56aabeea5 --- /dev/null +++ b/app/models/manageiq/providers/amazon/network_manager/load_balancer.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Amazon::NetworkManager::LoadBalancer < ::LoadBalancer +end diff --git a/app/models/manageiq/providers/amazon/network_manager/load_balancer_health_check.rb b/app/models/manageiq/providers/amazon/network_manager/load_balancer_health_check.rb new file mode 100644 index 000000000..13588cfd6 --- /dev/null +++ b/app/models/manageiq/providers/amazon/network_manager/load_balancer_health_check.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck < ::LoadBalancerHealthCheck +end diff --git a/app/models/manageiq/providers/amazon/network_manager/load_balancer_listener.rb b/app/models/manageiq/providers/amazon/network_manager/load_balancer_listener.rb new file mode 100644 index 000000000..7b4131840 --- /dev/null +++ b/app/models/manageiq/providers/amazon/network_manager/load_balancer_listener.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener < ::LoadBalancerListener +end diff --git a/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool.rb b/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool.rb new file mode 100644 index 000000000..da1d4fcab --- /dev/null +++ b/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPool < ::LoadBalancerPool +end diff --git a/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool_member.rb b/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool_member.rb new file mode 100644 index 000000000..b2fc44781 --- /dev/null +++ b/app/models/manageiq/providers/amazon/network_manager/load_balancer_pool_member.rb @@ -0,0 +1,2 @@ +class ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPoolMember < ::LoadBalancerPoolMember +end diff --git a/app/models/manageiq/providers/amazon/network_manager/refresh_parser.rb b/app/models/manageiq/providers/amazon/network_manager/refresh_parser.rb index 60418da2c..c8f97abfd 100644 --- a/app/models/manageiq/providers/amazon/network_manager/refresh_parser.rb +++ b/app/models/manageiq/providers/amazon/network_manager/refresh_parser.rb @@ -6,6 +6,7 @@ class ManageIQ::Providers::Amazon::NetworkManager::RefreshParser def initialize(ems, options = nil) @ems = ems @aws_ec2 = ems.connect + @aws_elb = ems.connect(:service => :ElasticLoadBalancing) @data = {} @data_index = {} @options = options || {} @@ -19,6 +20,10 @@ def ems_inv_to_hashes get_cloud_networks get_security_groups get_network_ports + get_load_balancers + get_load_balancer_pools + get_load_balancer_listeners + get_load_balancer_health_checks get_floating_ips $aws_log.info("#{log_header}...Complete") @@ -41,6 +46,10 @@ def security_groups @security_groups ||= @aws_ec2.security_groups end + def load_balancers + @load_balancers ||= @aws_elb.client.describe_load_balancers.load_balancer_descriptions + end + def get_cloud_networks vpcs = @aws_ec2.client.describe_vpcs[:vpcs] process_collection(vpcs, :cloud_networks) { |vpc| parse_cloud_network(vpc) } @@ -70,6 +79,49 @@ def get_outbound_firewall_rules(sg) sg.ip_permissions_egress.collect { |perm| parse_firewall_rule(perm, "outbound") }.flatten end + def get_load_balancers + process_collection(load_balancers, :load_balancers) { |lb| parse_load_balancer(lb) } + end + + def get_load_balancer_pools + process_collection(load_balancers, :load_balancer_pools) { |lb| parse_load_balancer_pool(lb) } + get_load_balancer_pool_members + end + + def get_load_balancer_pool_members + @data[:load_balancer_pool_members] = [] + + load_balancers.each do |lb| + new_lb = @data_index.fetch_path(:load_balancer_pools, lb.load_balancer_name) + load_balancer_pool_members = lb.instances.collect { |m| parse_load_balancer_pool_member(m) } + load_balancer_pool_members.each do |member| + # Store all unique pool members + if @data_index.fetch_path(:load_balancer_pool_members, member[:ems_ref]).blank? + @data_index.store_path(:load_balancer_pool_members, member[:ems_ref], member) + @data[:load_balancer_pool_members] << member + end + end + + # fill M:N relation of pool to pool members + new_lb[:load_balancer_pool_member_pools] = load_balancer_pool_members.collect do |x| + {:load_balancer_pool_member => @data_index.fetch_path(:load_balancer_pool_members, x[:ems_ref])} + end + end + end + + def get_load_balancer_listeners + load_balancers.each do |lb| + process_collection(lb.listener_descriptions, :load_balancer_listeners) do|listener| + parse_load_balancer_listener(lb, listener) + end + end + end + + def get_load_balancer_health_checks + process_collection(load_balancers, :load_balancer_health_checks) { |lb| parse_load_balancer_health_check(lb) } + end + + def get_floating_ips ips = @aws_ec2.client.describe_addresses.addresses process_collection(ips, :floating_ips) { |ip| parse_floating_ip(ip) } @@ -167,6 +219,108 @@ def parse_firewall_rule(perm, direction) ret end + def parse_load_balancer(lb) + uid = lb.load_balancer_name + + new_result = { + :type => self.class.load_balancer_type, + :ems_ref => uid, + :name => uid, + } + + return uid, new_result + end + + def parse_load_balancer_pool(lb) + uid = name = lb.load_balancer_name + + new_result = { + :type => self.class.load_balancer_pool_type, + :ems_ref => uid, + :name => name, + } + + return uid, new_result + end + + def parse_load_balancer_pool_member(member) + uid = member.instance_id + + { + :type => self.class.load_balancer_pool_member_type, + :ems_ref => uid, + # TODO(lsmola) AWS always associates to eth0 of the instances, we do not collect that info now, we need to do that + # :network_port => get eth0 network_port + :vm => parent_manager_fetch_path(:vms, uid) + } + end + + def parse_load_balancer_listener(lb, listener_struct) + listener = listener_struct.listener + + uid = "#{lb.load_balancer_name}__#{listener.protocol}__#{listener.load_balancer_port}__"\ + "#{listener.instance_protocol}__#{listener.instance_port}__#{listener.ssl_certificate_id}" + + new_result = { + :type => self.class.load_balancer_listener_type, + :ems_ref => uid, + :load_balancer_protocol => listener.protocol, + :load_balancer_port => listener.load_balancer_port, + :instance_protocol => listener.instance_protocol, + :instance_port => listener.instance_port, + :load_balancer => @data_index.fetch_path(:load_balancers, lb.load_balancer_name), + :load_balancer_listener_pools => [ + {:load_balancer_pool => @data_index.fetch_path(:load_balancer_pools, lb.load_balancer_name)}] + } + + return uid, new_result + end + + def parse_load_balancer_health_check(lb) + uid = lb.load_balancer_name + + health_check_members = @aws_elb.client.describe_instance_health(:load_balancer_name => lb.load_balancer_name) + health_check_members = health_check_members.instance_states.collect do |m| + parse_load_balancer_health_check_member(m) + end + + health_check = lb.health_check + target_match = health_check.target.match(/^(\w+)\:(\d+)\/?(.*?)$/) + protocol = target_match[1] + port = target_match[2].to_i + url_path = target_match[3] + + matched_listener = @data.fetch_path(:load_balancer_listeners).detect do |listener| + listener[:load_balancer][:ems_ref] == lb.load_balancer_name && listener[:instance_port] == port && + listener[:instance_protocol] == protocol + end + + new_result = { + :type => self.class.load_balancer_health_check_type, + :ems_ref => uid, + :protocol => protocol, + :port => port, + :url_path => url_path, + :interval => health_check.interval, + :timeout => health_check.timeout, + :unhealthy_threshold => health_check.unhealthy_threshold, + :healthy_threshold => health_check.healthy_threshold, + :load_balancer => @data_index.fetch_path(:load_balancers, lb.load_balancer_name), + :load_balancer_listener => matched_listener, + :load_balancer_health_check_members => health_check_members + } + + return uid, new_result + end + + def parse_load_balancer_health_check_member(member) + { + :load_balancer_pool_member => @data_index.fetch_path(:load_balancer_pool_members, member.instance_id), + :status => member.state, + :status_reason => member.description + } + end + def parse_floating_ip(ip) address = uid = ip.public_ip @@ -176,6 +330,7 @@ def parse_floating_ip(ip) :address => address, :fixed_ip_address => ip.private_ip_address, :cloud_network_only => ip.domain["vpc"] ? true : false, + # TODO(lsmola) can we set our fake network_port here, for old EC2 instances? :network_port => @data_index.fetch_path(:network_ports, ip.network_interface_id), :vm => parent_manager_fetch_path(:vms, ip.instance_id) } @@ -243,6 +398,26 @@ def parse_network_port_inferred_from_instance(instance) end class << self + def load_balancer_type + ManageIQ::Providers::Amazon::NetworkManager::LoadBalancer.name + end + + def load_balancer_listener_type + ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener.name + end + + def load_balancer_health_check_type + ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck.name + end + + def load_balancer_pool_type + ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPool.name + end + + def load_balancer_pool_member_type + ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPoolMember.name + end + def security_group_type ManageIQ::Providers::Amazon::NetworkManager::SecurityGroup.name end diff --git a/spec/models/manageiq/providers/amazon/cloud_manager/refresher_spec.rb b/spec/models/manageiq/providers/amazon/cloud_manager/refresher_spec.rb index 6cf95922f..ed55ea945 100644 --- a/spec/models/manageiq/providers/amazon/cloud_manager/refresher_spec.rb +++ b/spec/models/manageiq/providers/amazon/cloud_manager/refresher_spec.rb @@ -35,42 +35,83 @@ assert_specific_vm_powered_off assert_specific_vm_on_cloud_network assert_specific_vm_in_other_region + assert_specific_load_balancers + assert_specific_load_balancer_listeners + assert_specific_load_balancer_health_checks assert_specific_orchestration_template assert_specific_orchestration_stack assert_relationship_tree end end + def expected_table_counts + { + :auth_private_key => 12, + :ext_management_system => 2, + :flavor => 56, + :availability_zone => 5, + :vm_or_template => 48, + :vm => 28, + :miq_template => 20, + :disk => 14, + :guest_device => 0, + :hardware => 48, + :network => 17, + :operating_system => 0, + :snapshot => 0, + :system_service => 0, + :relationship => 30, + :miq_queue => 51, + :orchestration_template => 4, + :orchestration_stack => 4, + :orchestration_stack_parameter => 10, + :orchestration_stack_output => 1, + :orchestration_stack_resource => 43, + :security_group => 37, + :firewall_rule => 99, + :network_port => 37, + :cloud_network => 5, + :floating_ip => 5, + :network_router => 0, + :cloud_subnet => 10, + :custom_attribute => 0 + } + end + def assert_table_counts - expect(ExtManagementSystem.count).to eq(2) - expect(Flavor.count).to eq(56) - expect(AvailabilityZone.count).to eq(5) - expect(FloatingIp.count).to eq(5) - expect(AuthPrivateKey.count).to eq(12) - expect(CloudNetwork.count).to eq(5) - expect(CloudSubnet.count).to eq(10) - expect(OrchestrationTemplate.count).to eq(2) - expect(OrchestrationStack.count).to eq(2) - expect(OrchestrationStackParameter.count).to eq(5) - expect(OrchestrationStackOutput.count).to eq(1) - expect(OrchestrationStackResource.count).to eq(24) - expect(SecurityGroup.count).to eq(36) - expect(FirewallRule.count).to eq(94) - expect(VmOrTemplate.count).to eq(47) - expect(Vm.count).to eq(27) - expect(MiqTemplate.count).to eq(20) - - expect(CustomAttribute.count).to eq(0) - expect(Disk.count).to eq(14) - expect(GuestDevice.count).to eq(0) - expect(Hardware.count).to eq(47) - expect(Network.count).to eq(15) - expect(OperatingSystem.count).to eq(0) # TODO: Should this be 13 (set on all vms)? - expect(Snapshot.count).to eq(0) - expect(SystemService.count).to eq(0) - - expect(Relationship.count).to eq(26) - expect(MiqQueue.count).to eq(50) + actual = { + :auth_private_key => AuthPrivateKey.count, + :ext_management_system => ExtManagementSystem.count, + :flavor => Flavor.count, + :availability_zone => AvailabilityZone.count, + :vm_or_template => VmOrTemplate.count, + :vm => Vm.count, + :miq_template => MiqTemplate.count, + :disk => Disk.count, + :guest_device => GuestDevice.count, + :hardware => Hardware.count, + :network => Network.count, + :operating_system => OperatingSystem.count, + :snapshot => Snapshot.count, + :system_service => SystemService.count, + :relationship => Relationship.count, + :miq_queue => MiqQueue.count, + :orchestration_template => OrchestrationTemplate.count, + :orchestration_stack => OrchestrationStack.count, + :orchestration_stack_parameter => OrchestrationStackParameter.count, + :orchestration_stack_output => OrchestrationStackOutput.count, + :orchestration_stack_resource => OrchestrationStackResource.count, + :security_group => SecurityGroup.count, + :firewall_rule => FirewallRule.count, + :network_port => NetworkPort.count, + :cloud_network => CloudNetwork.count, + :floating_ip => FloatingIp.count, + :network_router => NetworkRouter.count, + :cloud_subnet => CloudSubnet.count, + :custom_attribute => CustomAttribute.count + } + + expect(actual).to eq expected_table_counts end def assert_ems @@ -79,18 +120,19 @@ def assert_ems :uid_ems => nil ) - expect(@ems.flavors.size).to eq(56) - expect(@ems.availability_zones.size).to eq(5) - expect(@ems.floating_ips.size).to eq(5) - expect(@ems.key_pairs.size).to eq(12) - expect(@ems.cloud_networks.size).to eq(5) - expect(@ems.security_groups.size).to eq(36) - expect(@ems.vms_and_templates.size).to eq(47) - expect(@ems.vms.size).to eq(27) - expect(@ems.miq_templates.size).to eq(20) - expect(@ems.orchestration_stacks.size).to eq(2) - - expect(@ems.direct_orchestration_stacks.size).to eq(1) + expect(@ems.flavors.size).to eql(expected_table_counts[:flavor]) + expect(@ems.availability_zones.size).to eql(expected_table_counts[:availability_zone]) + expect(@ems.vms_and_templates.size).to eql(expected_table_counts[:vm_or_template]) + expect(@ems.security_groups.size).to eql(expected_table_counts[:security_group]) + expect(@ems.network_ports.size).to eql(expected_table_counts[:network_port]) + expect(@ems.cloud_networks.size).to eql(expected_table_counts[:cloud_network]) + expect(@ems.floating_ips.size).to eql(expected_table_counts[:floating_ip]) + expect(@ems.network_routers.size).to eql(expected_table_counts[:network_router]) + expect(@ems.cloud_subnets.size).to eql(expected_table_counts[:cloud_subnet]) + expect(@ems.miq_templates.size).to eq(expected_table_counts[:miq_template]) + + expect(@ems.orchestration_stacks.size).to eql(expected_table_counts[:orchestration_stack]) + expect(@ems.direct_orchestration_stacks.size).to eql(3) end def assert_specific_flavor @@ -352,6 +394,15 @@ def assert_specific_vm_powered_on :hostname => "ip-10-65-160-22.ec2.internal" ) + expect(v.load_balancers.collect(&:name)).to match_array ["EmsRefreshSpec-LoadBalancer"] + expect(v.load_balancer_health_checks.collect(&:ems_ref)).to match_array ["EmsRefreshSpec-LoadBalancer"] + expect(v.load_balancer_listeners.collect(&:ems_ref)).to match_array ["EmsRefreshSpec-LoadBalancer__HTTP__80__HTTP__80__"] + expect(v.load_balancer_health_check_states).to match_array ["OutOfService"] + healt_check_states_with_reason = [ + "Status: OutOfService, Status Reason: Instance has failed at least the UnhealthyThreshold number of health checks consecutively." + ] + expect(v.load_balancer_health_check_states_with_reason).to match_array healt_check_states_with_reason + v.with_relationship_type("genealogy") do expect(v.parent).to eq(@template) end @@ -450,7 +501,7 @@ def assert_specific_vm_on_cloud_network :power_state => "on", :location => "unknown", :tools_status => nil, - :boot_time => "2013-09-23T20:11:52.000", + :boot_time => "2016-08-10 15:34:32.000000000 +0000", :standby_action => nil, :connection_state => nil, :cpu_affinity => nil, @@ -469,10 +520,203 @@ def assert_specific_vm_on_cloud_network expect(v.cloud_networks.first).to eq(@cn) expect(v.cloud_subnets.first).to eq(@subnet) expect(v.security_groups).to eq([@sg_on_cn]) + + expect(v.load_balancers.collect(&:name)).to match_array ["EmSRefreshSpecVPCELB", "EmSRefreshSpecVPCELB2"] + expect(v.load_balancer_health_checks.collect(&:ems_ref)).to match_array ["EmSRefreshSpecVPCELB", "EmSRefreshSpecVPCELB2"] + listeners = [ + "EmSRefreshSpecVPCELB2__TCP__2222__TCP__22__", "EmSRefreshSpecVPCELB__HTTP__80__HTTP__80__", + "EmSRefreshSpecVPCELB__TCP__22__TCP__22__" + ] + expect(v.load_balancer_listeners.collect(&:ems_ref)).to match_array listeners + expect(v.load_balancer_health_check_states).to match_array ["OutOfService", "OutOfService"] + healt_check_states_with_reason = [ + "Status: OutOfService, Status Reason: Instance has failed at least the UnhealthyThreshold number of health checks consecutively.", + "Status: OutOfService, Status Reason: Instance has failed at least the UnhealthyThreshold number of health checks consecutively." + ] + expect(v.load_balancer_health_check_states_with_reason).to match_array healt_check_states_with_reason + end + + def assert_specific_load_balancers + @elb_non_vpc = ManageIQ::Providers::Amazon::CloudManager::LoadBalancer.where( + :name => "EmsRefreshSpec-LoadBalancer").first + expect(@elb_non_vpc).to have_attributes( + "ems_ref" => "EmsRefreshSpec-LoadBalancer", + "name" => "EmsRefreshSpec-LoadBalancer", + "description" => nil, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancer") + + expect(@elb_non_vpc.ext_management_system).to eq(@ems.network_manager) + + @elb = ManageIQ::Providers::Amazon::CloudManager::LoadBalancer.where( + :name => "EmSRefreshSpecVPCELB").first + expect(@elb).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB", + "name" => "EmSRefreshSpecVPCELB", + "description" => nil, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancer") + + expect(@elb.ext_management_system).to eq(@ems.network_manager) + # TODO(lsmola) + # expect(@elb.availability_zones).to eq(@az) + # expect(@elb.cloud_subnets).to eq(..) + # expect(@elb.network_ports).to eq(..) + + @elb2 = ManageIQ::Providers::Amazon::CloudManager::LoadBalancer.where( + :name => "EmSRefreshSpecVPCELB2").first + expect(@elb2).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB2", + "name" => "EmSRefreshSpecVPCELB2", + "description" => nil, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancer") + + expect(@elb2.ext_management_system).to eq(@ems.network_manager) + + expect(@elb.vms.count).to eq 2 + expect(@elb.load_balancer_pool_members.count).to eq 2 + expect(@elb.load_balancer_pool_members.first.ext_management_system).to eq @ems.network_manager + expect(@elb.vms.first.ext_management_system).to eq @ems + expect(@elb.vms.collect(&:name)).to match_array ["EmsRefreshSpec-PoweredOn-VPC", "VMstate-8"] + + expect(@elb.vms).to match_array @elb2.vms + expect(@elb.load_balancer_pool_members).to match_array @elb2.load_balancer_pool_members + + expect(@elb_non_vpc.load_balancer_pool_members.count).to eq 1 + expect(@elb_non_vpc.vms.first.name).to eq "EmsRefreshSpec-PoweredOn-Basic3" + end + + def assert_specific_load_balancer_listeners + expect(@elb_non_vpc.load_balancer_listeners.count).to eq 1 + expect(@elb.load_balancer_listeners.count).to eq 2 + expect(@elb2.load_balancer_listeners.count).to eq 1 + + @listener_non_vpc = @elb_non_vpc.load_balancer_listeners + .where(:ems_ref => "EmsRefreshSpec-LoadBalancer__HTTP__80__HTTP__80__").first + expect(@listener_non_vpc).to have_attributes( + "ems_ref" => "EmsRefreshSpec-LoadBalancer__HTTP__80__HTTP__80__", + "name" => nil, + "description" => nil, + "load_balancer_protocol" => "HTTP", + "load_balancer_port" => 80, + "instance_protocol" => "HTTP", + "instance_port" => 80, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener" + ) + expect(@listener_non_vpc.ext_management_system).to eq(@ems.network_manager) + + listener_1 = @elb.load_balancer_listeners + .where(:ems_ref => "EmSRefreshSpecVPCELB__TCP__22__TCP__22__").first + expect(listener_1).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB__TCP__22__TCP__22__", + "name" => nil, + "description" => nil, + "load_balancer_protocol" => "TCP", + "load_balancer_port" => 22, + "instance_protocol" => "TCP", + "instance_port" => 22, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener" + ) + expect(listener_1.ext_management_system).to eq(@ems.network_manager) + + @listener_2 = @elb.load_balancer_listeners + .where(:ems_ref => "EmSRefreshSpecVPCELB__HTTP__80__HTTP__80__").first + expect(@listener_2).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB__HTTP__80__HTTP__80__", + "name" => nil, + "description" => nil, + "load_balancer_protocol" => "HTTP", + "load_balancer_port" => 80, + "instance_protocol" => "HTTP", + "instance_port" => 80, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener" + ) + expect(@listener_2.ext_management_system).to eq(@ems.network_manager) + + @listener_3 = @elb2.load_balancer_listeners.first + expect(@listener_3).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB2__TCP__2222__TCP__22__", + "name" => nil, + "description" => nil, + "load_balancer_protocol" => "TCP", + "load_balancer_port" => 2222, + "instance_protocol" => "TCP", + "instance_port" => 22, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerListener" + ) + expect(@listener_3.ext_management_system).to eq(@ems.network_manager) + end + + def assert_specific_load_balancer_health_checks + expect(@elb_non_vpc.load_balancer_health_checks.count).to eq 1 + + health_check_non_vpc = @elb_non_vpc.load_balancer_health_checks.first + expect(health_check_non_vpc).to have_attributes( + "ems_ref" => "EmsRefreshSpec-LoadBalancer", + "name" => nil, + "protocol" => "TCP", + "port" => 22, + "url_path" => "", + "interval" => 30, + "timeout" => 5, + "healthy_threshold" => 10, + "unhealthy_threshold" => 2, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck" + ) + + expect(health_check_non_vpc.load_balancer_listener).to eq nil + + expect(@elb.load_balancer_health_checks.count).to eq 1 + + health_check_1 = @elb.load_balancer_health_checks.first + expect(health_check_1).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB", + "name" => nil, + "protocol" => "HTTP", + "port" => 80, + "url_path" => "index.html", + "interval" => 30, + "timeout" => 5, + "healthy_threshold" => 10, + "unhealthy_threshold" => 2, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck" + ) + + expect(health_check_1.load_balancer_listener).to eq @listener_2 + + expect(@elb2.load_balancer_health_checks.count).to eq 1 + + health_check_2 = @elb2.load_balancer_health_checks.first + expect(health_check_2).to have_attributes( + "ems_ref" => "EmSRefreshSpecVPCELB2", + "name" => nil, + "protocol" => "TCP", + "port" => 22, + "url_path" => "", + "interval" => 30, + "timeout" => 5, + "healthy_threshold" => 10, + "unhealthy_threshold" => 2, + "cloud_tenant_id" => nil, + "type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck" + ) + + expect(health_check_2.load_balancer_listener).to eq @listener_3 + + expect(health_check_1.load_balancer_pool_members.count).to eq 2 + expect(health_check_1.load_balancer_pool_members).to match_array health_check_2.load_balancer_pool_members + expect(health_check_1.vms).to match_array health_check_2.vms end def assert_specific_orchestration_template - @orch_template = OrchestrationTemplateCfn.where(:md5 => "e929859521d64ac28ee29f8526d33e8f").first + @orch_template = OrchestrationTemplateCfn.where(:md5 => "1c67b49b780587c4e2756ba029a8844b").first expect(@orch_template.description).to start_with("AWS CloudFormation Sample Template WordPress_Simple:") expect(@orch_template.content).to start_with("{\n \"AWSTemplateFormatVersion\" : \"2010-09-09\",") expect(@orch_template).to have_attributes(:draft => false, :orderable => false) @@ -480,15 +724,17 @@ def assert_specific_orchestration_template def assert_specific_orchestration_stack stack = ManageIQ::Providers::Amazon::CloudManager::OrchestrationStack.where( - :name => "EmsRefreshSpec-JoeV-050").first + :name => "EmsRefreshSpecStack").first expect(stack.status_reason) - .to eq("The following resource(s) failed to create: [WebServerWaitCondition, IPAddress]. ") + .to eq("The following resource(s) failed to create: [OutBoundHTTPNetworkAclEntry, IPAddress, Route, "\ + "InboundSSHNetworkAclEntry, WebServerWaitCondition, InboundResponsePortsNetworkAclEntry, "\ + "OutBoundHTTPSNetworkAclEntry, InboundHTTPNetworkAclEntry]. ") @orch_stack = ManageIQ::Providers::Amazon::CloudManager::OrchestrationStack.where( - :name => "EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I").first + :name => "EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W").first expect(@orch_stack).to have_attributes( :status => "CREATE_COMPLETE", - :ems_ref => "arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e", + :ems_ref => "arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3", ) expect(@orch_stack.description).to start_with("AWS CloudFormation Sample Template WordPress_Simple:") @@ -511,13 +757,13 @@ def assert_specific_orchestration_stack_parameters def assert_specific_orchestration_stack_resources resources = @orch_stack.resources.order("ems_ref") - expect(resources.size).to eq(4) + expect(resources.size).to eq(2) # assert one of the resource models - expect(resources[3]).to have_attributes( + expect(resources[1]).to have_attributes( :name => "WebServer", :logical_resource => "WebServer", - :physical_resource => "i-7c3c64fd", + :physical_resource => "i-d7754a49", :resource_category => "AWS::EC2::Instance", :resource_status => "CREATE_COMPLETE", :resource_status_reason => nil, @@ -529,7 +775,7 @@ def assert_specific_orchestration_stack_outputs expect(outputs.size).to eq(1) expect(outputs[0]).to have_attributes( :key => "WebsiteURL", - :value => "http://ec2-54-205-48-36.compute-1.amazonaws.com/wordpress", + :value => "http://ec2-23-23-39-34.compute-1.amazonaws.com/wordpress", :description => "WordPress Website" ) end @@ -542,20 +788,20 @@ def assert_specific_orchestration_stack_associations expect(@orch_stack.orchestration_template).to eq(@orch_template) # orchestration stack can be nested - parent_stack = OrchestrationStack.where(:name => "EmsRefreshSpec-JoeV-050").first + parent_stack = OrchestrationStack.where(:name => "EmsRefreshSpecStack").first expect(@orch_stack.parent).to eq(parent_stack) # orchestration stack can have vms - vm = Vm.where(:name => "i-7c3c64fd").first + vm = Vm.where(:name => "i-d7754a49").first expect(vm.orchestration_stack).to eq(@orch_stack) # orchestration stack can have security groups sg = SecurityGroup.where( - :name => "EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1").first + :name => "EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE").first expect(sg.orchestration_stack).to eq(@orch_stack) # orchestration stack can have cloud networks - vpc = CloudNetwork.where(:name => "vpc-d7b4c7b3").first + vpc = CloudNetwork.where(:name => "vpc-08d9b36f").first expect(vpc.orchestration_stack).to eq(parent_stack) end diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher.yml index 2d463faec..a34f3bc54 100644 --- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher.yml +++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher.yml @@ -12,14 +12,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145422Z + - 20160811T115208Z X-Amz-Content-Sha256: - dec1bb222552f9578a07c806de7c1c653ed3fd14da0ef675ec9cd74d81b06cfc Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c940bac12dbcf7d16e154e7ea67fdc9357f1dbf5a2a0b8807f72689a48c09e0c + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a1a64e9c133ee2f3af0627295259cf0895c6965c6e743a294df3952983d50f36 Content-Length: - '51' Accept: @@ -36,7 +36,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:22 GMT + - Thu, 11 Aug 2016 11:52:08 GMT Server: - AmazonEC2 body: @@ -44,7 +44,7 @@ http_interactions: string: |- - 0547e39a-939c-4ce9-b65c-74fc38f39446 + 944154fb-94ca-4460-bb3b-d7c6d65c96b9 us-east-1a @@ -78,8 +78,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:23 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:09 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -92,14 +92,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145423Z + - 20160811T115209Z X-Amz-Content-Sha256: - 66676a7bdb3a8a280e5eed4b7ed4e94012acf2afdb1d9c984590b64fca8c7e08 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2899bf71cf4e7249d8b6960c15bea9f8247f5bf57c73a2bea4fee7ff1116fe8a + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=37822a3a2851336fbdcd09738300923e745602f045b3f5a1dc033a737d0f1879 Content-Length: - '42' Accept: @@ -116,7 +116,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:22 GMT + - Thu, 11 Aug 2016 11:52:10 GMT Server: - AmazonEC2 body: @@ -124,7 +124,7 @@ http_interactions: string: |- - 46d8008f-3d75-498e-8a40-75dd270bcb17 + f9d39bca-3bbd-4e75-8629-f9a582416b8c bd @@ -176,8 +176,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:23 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:10 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ @@ -190,14 +190,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145423Z + - 20160811T115210Z X-Amz-Content-Sha256: - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4fb3f7f49f702e963690c2e398c85e45e07db8cd6b650821ee639b12d9e975e8 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=551e460b3bda5eaa2e68703974c24a9abb5564635a23baca53a7e2a27377e87c Content-Length: - '40' Accept: @@ -208,15 +208,15 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 206bb870-f5be-11e5-b972-87bdbe007cca + - 099d7b2c-5fba-11e6-9fbc-5994d6bb0a68 Content-Type: - text/xml Content-Length: - - '3368' + - '6418' Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:23 GMT + - Thu, 11 Aug 2016 11:52:11 GMT body: encoding: UTF-8 string: | @@ -224,87 +224,139 @@ http_interactions: - - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - CREATE_COMPLETE - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I - AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + + + WordPress Website + WebsiteURL + http://ec2-23-23-39-34.compute-1.amazonaws.com/wordpress + + + + CAPABILITY_NAMED_IAM + + 2016-08-11T11:47:58.354Z - 2016-01-13T18:59:19.466Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + CREATE_COMPLETE + true + - **** DBRootPassword + **** - t1.micro InstanceType + t1.micro + + + + CAPABILITY_NAMED_IAM + + 2016-08-11T11:47:52.457Z + + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + EmsRefreshSpecStack + AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + CREATE_FAILED true - + + The following resource(s) failed to create: [OutBoundHTTPNetworkAclEntry, IPAddress, Route, InboundSSHNetworkAclEntry, WebServerWaitCondition, InboundResponsePortsNetworkAclEntry, OutBoundHTTPSNetworkAclEntry, InboundHTTPNetworkAclEntry]. + - http://ec2-54-205-48-36.compute-1.amazonaws.com/wordpress - WordPress Website - WebsiteURL + KeyName + EmsRefreshSpec-KeyPair - + + SSHLocation + 0.0.0.0/0 + + + InstanceType + t1.micro + + + 2016-05-31T21:23:04.757Z + + arn:aws:cloudformation:us-east-1:200278856672:stack/nono/dc9f67b0-2775-11e6-b076-500c217dbefe + nono + AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + ROLLBACK_COMPLETE + false + 1 + + + DBRootPassword + **** + + + InstanceType + m1.small + + + + + 2016-01-13T18:58:59.245Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a - CREATE_FAILED EmsRefreshSpec-JoeV-050 - The following resource(s) failed to create: [WebServerWaitCondition, IPAddress]. AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. - - 2016-01-13T18:58:59.245Z + DELETE_FAILED + true + + The following resource(s) failed to delete: [Subnet, VPC]. - 0.0.0.0/0 - SSHLocation + KeyName + EMSRefreshSpec-KeyPair-02 - EMSRefreshSpec-KeyPair-02 - KeyName + SSHLocation + 0.0.0.0/0 - m1.small InstanceType + m1.small - true - 206bb870-f5be-11e5-b972-87bdbe007cca + 099d7b2c-5fba-11e6-9fbc-5994d6bb0a68 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:24 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:11 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeStacks&StackName=EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I&Version=2010-05-15 + string: Action=DescribeStacks&StackName=EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145424Z + - 20160811T115211Z X-Amz-Content-Sha256: - - b3aaed7975d09023665bf92c4b3a70c4868ee502fd109378ae0d265f7562ab36 + - aaf5f41910597b4c68e66c72355bb8cad881027670649c673424cb01db351473 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=50a40c8645f8e9b474133d9c7a59fd505eec566fefc57e20dc3996273777de6e + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=69244f83593c218187666d5ebc9736495608241ec26f8ba7d3346a2ef914db20 Content-Length: - - '106' + - '102' Accept: - "*/*" response: @@ -313,13 +365,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 20b7414e-f5be-11e5-bbaa-8bb0c7d7c0ac + - 0a21ecfd-5fba-11e6-b418-872b76471080 Content-Type: - text/xml Content-Length: - - '1941' + - '2027' Date: - - Tue, 29 Mar 2016 14:54:24 GMT + - Thu, 11 Aug 2016 11:52:11 GMT body: encoding: UTF-8 string: | @@ -327,62 +379,65 @@ http_interactions: - - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - CREATE_COMPLETE - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I - AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + + + WordPress Website + WebsiteURL + http://ec2-23-23-39-34.compute-1.amazonaws.com/wordpress + + + + CAPABILITY_NAMED_IAM + + 2016-08-11T11:47:58.354Z - 2016-01-13T18:59:19.466Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + CREATE_COMPLETE + true + - **** DBRootPassword + **** - t1.micro InstanceType + t1.micro - true - - - http://ec2-54-205-48-36.compute-1.amazonaws.com/wordpress - WordPress Website - WebsiteURL - - - 20b7414e-f5be-11e5-bbaa-8bb0c7d7c0ac + 0a21ecfd-5fba-11e6-b418-872b76471080 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:24 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:12 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=ListStackResources&StackName=EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I&Version=2010-05-15 + string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145424Z + - 20160811T115212Z X-Amz-Content-Sha256: - - 820cedbc35eb5be55a9132a05d7fc9b04905de9fed316ce9dce9cc8336ef393e + - a75466cd97f64a6a8294eb9c65eee6a49ab0f3ca7be290cee7b3aa70a5a7fac8 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=8f9781e95100957f6f9a2507d7e93c54507dacea7d61ef615dbc5c430c1fb34c + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=24c17df8a6124c03daf529be308bac09694ab0f8e383b6510eb8e91b0b7136f5 Content-Length: - - '110' + - '106' Accept: - "*/*" response: @@ -391,15 +446,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 20fcd500-f5be-11e5-8efe-6388271bcd96 + - 0aaa2fd9-5fba-11e6-b2d6-a99ed20ba2f1 Content-Type: - text/xml Content-Length: - - '2311' - Vary: - - Accept-Encoding + - '1117' Date: - - Tue, 29 Mar 2016 14:54:24 GMT + - Thu, 11 Aug 2016 11:52:12 GMT body: encoding: UTF-8 string: | @@ -407,63 +460,49 @@ http_interactions: - CREATE_COMPLETE - WaitCondition - 2016-01-13T19:05:49.134Z - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e/WaitHandle - AWS::CloudFormation::WaitCondition - - - CREATE_COMPLETE - WaitHandle - 2016-01-13T18:59:31.762Z - https://cloudformation-waitcondition-us-east-1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A200278856672%3Astack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e/WaitHandle?AWSAccessKeyId=AKIAIIT3CWAIMJYUTISA&Expires=1452797969&Signature=DuYXaVveGBhaz6ZnHbJFaS4H6bk%3D - AWS::CloudFormation::WaitConditionHandle - - + 2016-08-11T11:49:13.637Z + i-d7754a49 CREATE_COMPLETE WebServer - 2016-01-13T19:00:42.901Z - i-7c3c64fd AWS::EC2::Instance + 2016-08-11T11:48:19.865Z + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE CREATE_COMPLETE WebServerSecurityGroup - 2016-01-13T18:59:45.199Z - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 AWS::EC2::SecurityGroup - 20fcd500-f5be-11e5-8efe-6388271bcd96 + 0aaa2fd9-5fba-11e6-b2d6-a99ed20ba2f1 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:25 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:12 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=GetTemplate&StackName=EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I&Version=2010-05-15 + string: Action=GetTemplate&StackName=EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145425Z + - 20160811T115213Z X-Amz-Content-Sha256: - - ddb83ce73f73e4ff2019b67bb76e240771c9776824486c32ea9d90108979324c + - 7d9caf43ed432818e6909673fd2fa82ea51d912ab6aac7479eb69e1af7b2e66d Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0df174f61c1e8bc2dd31fb36e42b7ca7f13f93c49fcd0fe16ebe92b569fe82e0 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6e4ed5e527e76059649ca2cf23757e7a324b99bbc4eeeda5f0b0c1cc4702b4a6 Content-Length: - - '103' + - '99' Accept: - "*/*" response: @@ -472,15 +511,15 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 21463a95-f5be-11e5-a98a-dfbfa0f0d2d4 + - 0b361bf9-5fba-11e6-8f4f-2b57bc52a3d0 Content-Type: - text/xml Content-Length: - - '11596' + - '8870' Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:25 GMT + - Thu, 11 Aug 2016 11:52:12 GMT body: encoding: UTF-8 string: "\n @@ -573,76 +612,43 @@ http_interactions: : [ {"Ref" : "WebServerSecurityGroup"} ],\n "UserData" \ : { "Fn::Base64" : { "Fn::Join" : ["", [\n "#!/bin/bash -v\\n",\n "yum update -y - aws-cfn-bootstrap\\n",\n\n "# Helper function\\n",\n - \ "function error_exit\\n",\n "{\\n",\n - \ " /opt/aws/bin/cfn-signal -e 1 -r \\"$1\\" '", - { "Ref" : "WaitHandle" }, "'\\n",\n " - \ exit 1\\n",\n "}\\n",\n\n "# Install - Apache Web Server, MySQL, PHP and WordPress\\n",\n "/opt/aws/bin/cfn-init - -s ", { "Ref" : "AWS::StackId" }, " -r WebServer - ",\n " --region ", { "Ref" : "AWS::Region" - }, " || error_exit 'Failed to run cfn-init'\\n",\n\n "# - Setup MySQL root password and create a user\\n",\n "mysqladmin - -u root password '", { "Ref" : "DBRootPassword" }, - "' || error_exit 'Failed to initialize root password'\\n",\n "mysql - -u root --password='", { "Ref" : "DBRootPassword" - }, "' < /tmp/setup.mysql || error_exit 'Failed to create database - user'\\n",\n\n "# Setup correct file ownership\\n",\n - \ "chown -R apache:apache /var/www/html/wordpress\\n",\n - \ \n "# Add keys and salts to the config file\\n",\n - \ "wp_config=/var/www/html/wordpress/wp-config.php\\n",\n - \ "GET https://api.wordpress.org/secret-key/1.1/salt/ >> - $wp_config\\n",\n "echo \\"define('WPLANG' , - '');\\" >> $wp_config\\n",\n "echo \\"define('WP_DEBUG' - \ , false);\\" >> $wp_config\\n", \n "echo - \\"\\\\$table_prefix = 'wp_';\\" >> $wp_config\\n",\n - \ "echo \\"if ( !defined('ABSPATH') )\\" >> $wp_config\\n",\n - \ "echo \\" define('ABSPATH', dirname(__FILE__) . '/');\\" - >> $wp_config\\n",\n "echo \\"require_once(ABSPATH - . 'wp-settings.php');\\" >> $wp_config\\n",\n\n "# - All is well so signal success\\n",\n "/opt/aws/bin/cfn-signal - -e 0 -r \\"WordPress setup complete\\" '", { "Ref" - : "WaitHandle" }, "'\\n"\n\n ]]}} \n }\n - \ },\n\n "WaitHandle" : {\n "Type" : "AWS::CloudFormation::WaitConditionHandle"\n - \ },\n\n "WaitCondition" : {\n "Type" : "AWS::CloudFormation::WaitCondition",\n - \ "DependsOn" : "WebServer",\n "Properties" - : {\n "Handle" : {"Ref" : "WaitHandle"},\n - \ "Timeout" : "300"\n }\n },\n \n "WebServerSecurityGroup" - : {\n "Type" : "AWS::EC2::SecurityGroup",\n "Properties" - : {\n "GroupDescription" : "Enable HTTP access via port - 80",\n "SecurityGroupIngress" : [\n {"IpProtocol" - : "tcp", "FromPort" : "80", "ToPort" - : "80", "CidrIp" : "0.0.0.0/0"}\n ]\n - \ } \n } \n },\n \n "Outputs" : {\n "WebsiteURL" - : {\n "Value" : { "Fn::Join" : ["", ["http://", - { "Fn::GetAtt" : [ "WebServer", "PublicDnsName" - ]}, "/wordpress"]] },\n "Description" : "WordPress - Website"\n }\n }\n}\n\n \n \n - \ 21463a95-f5be-11e5-a98a-dfbfa0f0d2d4\n \n\n" - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:25 GMT + aws-cfn-bootstrap\\n"\n ]]}} \n }\n },\n \n + \ "WebServerSecurityGroup" : {\n "Type" : "AWS::EC2::SecurityGroup",\n + \ "Properties" : {\n "GroupDescription" : "Enable + HTTP access via port 80",\n "SecurityGroupIngress" : + [\n {"IpProtocol" : "tcp", "FromPort" + : "80", "ToPort" : "80", "CidrIp" + : "0.0.0.0/0"}\n ]\n } \n } \n },\n + \ \n "Outputs" : {\n "WebsiteURL" : {\n "Value" + : { "Fn::Join" : ["", ["http://", { "Fn::GetAtt" + : [ "WebServer", "PublicDnsName" ]}, "/wordpress"]] + },\n "Description" : "WordPress Website"\n }\n + \ }\n}\n\n \n \n 0b361bf9-5fba-11e6-8f4f-2b57bc52a3d0\n + \ \n\n" + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:13 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeStacks&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + string: Action=DescribeStacks&StackName=EmsRefreshSpecStack&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145425Z + - 20160811T115213Z X-Amz-Content-Sha256: - - 39f59e2da9ad5c9ae815dd002143b5f3b77bbece6c40d6e0fc99cb74046287fd + - e8dd129f985a47cc311047ebc1aa94515d11466c30f999f41c464135ea785f5b Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ce3a3c90aeda811ce35e573301cfadd52993f3fe2c1b79b6a57f8f40a64a86b5 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=24586b2152c89a5eb98ea1526f0006cf93e738556acfa053137bc4e105d92f4c Content-Length: - - '74' + - '70' Accept: - "*/*" response: @@ -651,13 +657,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 21ab1708-f5be-11e5-aa59-13cfa8a23210 + - 0bf6d48e-5fba-11e6-9fbc-5994d6bb0a68 Content-Type: - text/xml Content-Length: - - '1723' + - '1965' Date: - - Tue, 29 Mar 2016 14:54:25 GMT + - Thu, 11 Aug 2016 11:52:14 GMT body: encoding: UTF-8 string: | @@ -665,60 +671,63 @@ http_interactions: - - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a - CREATE_FAILED - EmsRefreshSpec-JoeV-050 - The following resource(s) failed to create: [WebServerWaitCondition, IPAddress]. - AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + + CAPABILITY_NAMED_IAM + + 2016-08-11T11:47:52.457Z - 2016-01-13T18:58:59.245Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + EmsRefreshSpecStack + AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + CREATE_FAILED + true + + The following resource(s) failed to create: [OutBoundHTTPNetworkAclEntry, IPAddress, Route, InboundSSHNetworkAclEntry, WebServerWaitCondition, InboundResponsePortsNetworkAclEntry, OutBoundHTTPSNetworkAclEntry, InboundHTTPNetworkAclEntry]. - 0.0.0.0/0 - SSHLocation + KeyName + EmsRefreshSpec-KeyPair - EMSRefreshSpec-KeyPair-02 - KeyName + SSHLocation + 0.0.0.0/0 - m1.small InstanceType + t1.micro - true - 21ab1708-f5be-11e5-aa59-13cfa8a23210 + 0bf6d48e-5fba-11e6-9fbc-5994d6bb0a68 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:26 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:15 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=ListStackResources&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + string: Action=ListStackResources&StackName=EmsRefreshSpecStack&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145426Z + - 20160811T115215Z X-Amz-Content-Sha256: - - 83bcef007e9d341d9e8ea1194852604404f99f7481cf1b583db7fdf046ecdcbe + - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e4b672e4e6a1d3944540ea52df15e6b8cffaa50d1273db3588c9a9093fc2e02b + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d465915a4855ac85a49e00f6ad78d28d0cc2a9b3279050d5d018c87f716d0a3b Content-Length: - - '78' + - '74' Accept: - "*/*" response: @@ -727,15 +736,15 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 21eefd43-f5be-11e5-bc2c-ad0e749bba90 + - 0c830e59-5fba-11e6-a2aa-afe1770d048e Content-Type: - text/xml Content-Length: - - '8465' + - '8161' Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:25 GMT + - Thu, 11 Aug 2016 11:52:15 GMT body: encoding: UTF-8 string: | @@ -743,177 +752,169 @@ http_interactions: + 2016-08-11T11:49:45.887Z + EmsRe-Attac-1L8UVR5ULCIRY CREATE_COMPLETE AttachGateway - 2016-01-13T18:59:58.912Z - EmsRe-Attac-2ZIVTI11D6BJ AWS::EC2::VPCGatewayAttachment + 2016-08-11T11:50:05.950Z + 54.80.134.186 CREATE_FAILED + Invalid id: "arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3" IPAddress - 2016-01-13T19:07:13.193Z - Invalid id: "arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e" - 52.20.255.156 AWS::EC2::EIP - CREATE_COMPLETE + 2016-08-11T11:50:06.966Z + EmsRe-Inbou-1W534CC15BE9B + CREATE_FAILED + Resource creation cancelled InboundHTTPNetworkAclEntry - 2016-01-13T19:00:06.480Z - EmsRe-Inbou-AOEUINHLAJD9 AWS::EC2::NetworkAclEntry - CREATE_COMPLETE + 2016-08-11T11:50:06.959Z + EmsRe-Inbou-1WM0V6IEE9F8Z + CREATE_FAILED + Resource creation cancelled InboundResponsePortsNetworkAclEntry - 2016-01-13T19:00:05.438Z - EmsRe-Inbou-MB4WTKU6TQTN AWS::EC2::NetworkAclEntry - CREATE_COMPLETE + 2016-08-11T11:50:07.113Z + EmsRe-Inbou-1DPTHW1T4QJ4K + CREATE_FAILED + Resource creation cancelled InboundSSHNetworkAclEntry - 2016-01-13T19:00:06.656Z - EmsRe-Inbou-15BV5BJJR4NK3 AWS::EC2::NetworkAclEntry + 2016-08-11T11:50:05.814Z + sg-ddf730a7 CREATE_COMPLETE InstanceSecurityGroup - 2016-01-13T18:59:57.239Z - sg-893651f0 AWS::EC2::SecurityGroup + 2016-08-11T11:48:13.643Z + igw-a6faf9c2 CREATE_COMPLETE InternetGateway - 2016-01-13T18:59:34.714Z - igw-371cd953 AWS::EC2::InternetGateway + 2016-08-11T11:50:00.248Z + acl-9bb9e3fc CREATE_COMPLETE NetworkAcl - 2016-01-13T18:59:42.756Z - acl-54185830 AWS::EC2::NetworkAcl - CREATE_COMPLETE + 2016-08-11T11:50:06.925Z + EmsRe-OutBo-Z4HGFTEXDGGI + CREATE_FAILED + Resource creation cancelled OutBoundHTTPNetworkAclEntry - 2016-01-13T19:00:08.152Z - EmsRe-OutBo-8E4OKXO4JHSL AWS::EC2::NetworkAclEntry - CREATE_COMPLETE + 2016-08-11T11:50:06.918Z + EmsRe-OutBo-OTSHKH3FGVSM + CREATE_FAILED + Resource creation cancelled OutBoundHTTPSNetworkAclEntry - 2016-01-13T19:00:05.807Z - EmsRe-OutBo-17ZS4LX51V6XR - AWS::EC2::NetworkAclEntry - - - CREATE_COMPLETE - OutBoundResponsePortsNetworkAclEntry - 2016-01-13T19:00:05.841Z - EmsRe-OutBo-PUVCF579TPBL AWS::EC2::NetworkAclEntry - CREATE_COMPLETE + 2016-08-11T11:50:07.039Z + EmsRe-Route-1W0PAPUFKISY1 + CREATE_FAILED + Resource creation cancelled Route - 2016-01-13T19:00:24.114Z - EmsRe-Route-1E9SZTZN6ONZR AWS::EC2::Route + 2016-08-11T11:49:21.112Z + rtb-58d6103e CREATE_COMPLETE RouteTable - 2016-01-13T18:59:44.176Z - rtb-60e3d204 AWS::EC2::RouteTable + 2016-08-11T11:49:31.806Z + subnet-03424e5b CREATE_COMPLETE Subnet - 2016-01-13T18:59:58.919Z - subnet-d4f656a2 AWS::EC2::Subnet - CREATE_COMPLETE - SubnetNetworkAclAssociation - 2016-01-13T19:00:24.675Z - aclassoc-ac7748d5 - AWS::EC2::SubnetNetworkAclAssociation - - + 2016-08-11T11:49:59.247Z + rtbassoc-37d2c851 CREATE_COMPLETE SubnetRouteTableAssociation - 2016-01-13T19:00:22.874Z - rtbassoc-09f3596e AWS::EC2::SubnetRouteTableAssociation + 2016-08-11T11:49:09.423Z + vpc-08d9b36f CREATE_COMPLETE VPC - 2016-01-13T18:59:35.153Z - vpc-d7b4c7b3 AWS::EC2::VPC + 2016-08-11T11:49:17.169Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 CREATE_COMPLETE WebServerInstance - 2016-01-13T19:06:49.247Z - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e AWS::CloudFormation::Stack + 2016-08-11T11:50:06.978Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6/WebServerWaitHandle CREATE_FAILED - WebServerWaitCondition - 2016-01-13T19:07:17.177Z Resource creation cancelled - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a/WebServerWaitHandle + WebServerWaitCondition AWS::CloudFormation::WaitCondition + 2016-08-11T11:47:58.352Z + https://cloudformation-waitcondition-us-east-1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A200278856672%3Astack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6/WebServerWaitHandle?AWSAccessKeyId=AKIAIIT3CWAIMJYUTISA&Expires=1471002477&Signature=tps8cmxEu1f%2B%2FlSJvq9g4%2FEx1FA%3D CREATE_COMPLETE WebServerWaitHandle - 2016-01-13T18:59:17.245Z - https://cloudformation-waitcondition-us-east-1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A200278856672%3Astack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a/WebServerWaitHandle?AWSAccessKeyId=AKIAIIT3CWAIMJYUTISA&Expires=1452797956&Signature=O5b2tJRAEbqCKgKQs2Vp8RAiPKQ%3D AWS::CloudFormation::WaitConditionHandle - 21eefd43-f5be-11e5-bc2c-ad0e749bba90 + 0c830e59-5fba-11e6-a2aa-afe1770d048e - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:26 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:16 GMT - request: method: post uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=GetTemplate&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + string: Action=GetTemplate&StackName=EmsRefreshSpecStack&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145426Z + - 20160811T115216Z X-Amz-Content-Sha256: - - 36e3b98d6f07edf43b8c134cb7dc2f885bf57531905df5b58eac94a4c1b78426 + - 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=df77fbc9d764f81d77ed187a64c73494d01d8d443a08e9e824f9e4b5e03d6a3d + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=091ec95546b2c456eaa9e9b803cb314e1409b0de8b6964b1849a2039e2764aed Content-Length: - - '71' + - '67' Accept: - "*/*" response: @@ -922,15 +923,15 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2238feac-f5be-11e5-996c-f3f2b666055c + - 0d111e28-5fba-11e6-a997-f5fd4076a58f Content-Type: - text/xml Content-Length: - - '11970' + - '12000' Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:26 GMT + - Thu, 11 Aug 2016 11:52:16 GMT body: encoding: UTF-8 string: | @@ -1160,7 +1161,7 @@ http_interactions: "WebServerInstance" : { "Type" : "AWS::CloudFormation::Stack", "Properties" : { - "TemplateURL" : "https://s3-external-1.amazonaws.com/cloudformation-samples-us-east-1/WordPress_Simple.template", + "TemplateURL" : "https://s3-external-1.amazonaws.com/cf-templates-13wbkx0x8rgs2-us-east-1/2016224c1I-fake_wordpress45kh9o2yg90q8em1hr66amj9k9", "Parameters" : { "DBRootPassword" : "adminadmin", "InstanceType" : "t1.micro" @@ -1192,33 +1193,33 @@ http_interactions: - 2238feac-f5be-11e5-996c-f3f2b666055c + 0d111e28-5fba-11e6-a997-f5fd4076a58f - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:27 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:17 GMT - request: method: post - uri: https://ec2.us-east-1.amazonaws.com/ + uri: https://cloudformation.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeImages&Filter.1.Name=image-type&Filter.1.Value.1=machine&Owner.1=self&Version=2015-10-01 + string: Action=DescribeStacks&StackName=nono&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145427Z + - 20160811T115217Z X-Amz-Content-Sha256: - - db79e4df9ed35f35cf42da7e91827cb59b4430f397d1929fe355e7bab80b4ef4 + - a4c7b1fc0a1c222abb22584fef59290df54423ef8abea54fb0e323898f188fe1 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b8e03135cd9b9d73ffed4f1c7b15401d161cb27e5b148932b23075b07edc19c7 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a9fb4b6cfcd4c67e79b78cdc06319026b7fdb29ddfdb5f08a332a8b7b6963b26 Content-Length: - - '103' + - '55' Accept: - "*/*" response: @@ -1226,23 +1227,922 @@ http_interactions: code: 200 message: OK headers: + X-Amzn-Requestid: + - 0dc50493-5fba-11e6-9094-894a2a04ee81 Content-Type: - - text/xml;charset=UTF-8 - Transfer-Encoding: - - chunked - Vary: - - Accept-Encoding + - text/xml + Content-Length: + - '1613' Date: - - Tue, 29 Mar 2016 14:54:27 GMT - Server: - - AmazonEC2 + - Thu, 11 Aug 2016 11:52:18 GMT body: encoding: UTF-8 - string: |- - - - 63375900-e46c-4fc0-8000-37798599d053 - + string: | + + + + + 2016-05-31T21:23:04.757Z + + arn:aws:cloudformation:us-east-1:200278856672:stack/nono/dc9f67b0-2775-11e6-b076-500c217dbefe + nono + AWS CloudFormation Sample Template WordPress_Simple: WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data. It demonstrates using the AWS CloudFormation bootstrap scripts to install packages and files at instance launch time. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + ROLLBACK_COMPLETE + false + + 1 + + + DBRootPassword + **** + + + InstanceType + m1.small + + + + + + + 0dc50493-5fba-11e6-9094-894a2a04ee81 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:18 GMT +- request: + method: post + uri: https://cloudformation.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=ListStackResources&StackName=nono&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115218Z + X-Amz-Content-Sha256: + - 455cb51237e2e5593066002e120ed14729cde444402b3e65ce44b405f176ea48 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=69a4c31d0f22e0f3e20c669a1d15207a2bffe7c14a35dd0cc7876d563664be3f + Content-Length: + - '59' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 0e40009d-5fba-11e6-ab1a-b9c8720b3ed9 + Content-Type: + - text/xml + Content-Length: + - '1707' + Date: + - Thu, 11 Aug 2016 11:52:18 GMT + body: + encoding: UTF-8 + string: | + + + + + 2016-05-31T21:27:04.466Z + https://cloudformation-waitcondition-us-east-1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A200278856672%3Astack/nono/dc9f67b0-2775-11e6-b076-500c217dbefe/WaitHandle?AWSAccessKeyId=AKIAIIT3CWAIMJYUTISA&Expires=1464816189&Signature=mb5avifdWz6QRhBlx%2FhlrKKJNUg%3D + DELETE_COMPLETE + WaitHandle + AWS::CloudFormation::WaitConditionHandle + + + 2016-05-31T21:26:59.367Z + i-0c824890 + DELETE_COMPLETE + WebServer + AWS::EC2::Instance + + + 2016-05-31T21:27:02.816Z + nono-WebServerSecurityGroup-19U02PMOXIWUL + DELETE_COMPLETE + WebServerSecurityGroup + AWS::EC2::SecurityGroup + + + + + 0e40009d-5fba-11e6-ab1a-b9c8720b3ed9 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:19 GMT +- request: + method: post + uri: https://cloudformation.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=GetTemplate&StackName=nono&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115219Z + X-Amz-Content-Sha256: + - 19077d4668c66bfb18e7457137d2ab41bd81fac619725e1988b29cecf99c3742 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a4247839fbdc0a1774035ee176ea447566da5fb72fd0bf1e11bb9ad03a03d59 + Content-Length: + - '52' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 0ed5b141-5fba-11e6-b418-872b76471080 + Content-Type: + - text/xml + Content-Length: + - '11596' + Vary: + - Accept-Encoding + Date: + - Thu, 11 Aug 2016 11:52:20 GMT + body: + encoding: UTF-8 + string: "\n + \ \n {\n "AWSTemplateFormatVersion" + : "2010-09-09",\n \n "Description" : "AWS CloudFormation + Sample Template WordPress_Simple: WordPress is web software you can use to + create a beautiful website or blog. This template installs a single-instance + WordPress deployment using a local MySQL database to store the data. It demonstrates + using the AWS CloudFormation bootstrap scripts to install packages and files + at instance launch time. **WARNING** This template creates an Amazon EC2 instance. + You will be billed for the AWS resources used if you create a stack from this + template.",\n \n "Parameters" : {\n \n "InstanceType" + : {\n "Description" : "WebServer EC2 instance type",\n + \ "Type" : "String",\n "Default" : + "m1.small",\n "AllowedValues" : [ "t1.micro","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.xlarge","m3.2xlarge","c1.medium","c1.xlarge","cc1.4xlarge","cc2.8xlarge","cg1.4xlarge"],\n + \ "ConstraintDescription" : "must be a valid EC2 instance + type."\n },\n\n "DBRootPassword": {\n "NoEcho": + "true",\n "Description" : "Root password for + MySQL",\n "Default" : "admin",\n "Type": + "String",\n "MinLength": "1",\n "MaxLength": + "41",\n "AllowedPattern" : "[a-zA-Z0-9]*",\n + \ "ConstraintDescription" : "must contain only alphanumeric + characters."\n }\n },\n \n "Mappings" : {\n "AWSInstanceType2Arch" + : {\n "t1.micro" : { "Arch" : "64" },\n + \ "m1.small" : { "Arch" : "64" },\n "m1.medium" + \ : { "Arch" : "64" },\n "m1.large" : + { "Arch" : "64" },\n "m1.xlarge" : { + "Arch" : "64" },\n "m2.xlarge" : { "Arch" + : "64" },\n "m2.2xlarge" : { "Arch" : + "64" },\n "m2.4xlarge" : { "Arch" : "64" + },\n "m3.xlarge" : { "Arch" : "64" },\n + \ "m3.2xlarge" : { "Arch" : "64" },\n "c1.medium" + \ : { "Arch" : "64" },\n "c1.xlarge" : + { "Arch" : "64" },\n "cc1.4xlarge" : { + "Arch" : "64HVM" },\n "cc2.8xlarge" : { + "Arch" : "64HVM" },\n "cg1.4xlarge" : { + "Arch" : "64HVM" }\n },\n\n "AWSRegionArch2AMI" + : {\n "us-east-1" : { "32" : "ami-31814f58", + "64" : "ami-1b814f72", "64HVM" : "ami-0da96764" + },\n "us-west-2" : { "32" : "ami-38fe7308", + "64" : "ami-30fe7300", "64HVM" : "NOT_YET_SUPPORTED" + },\n "us-west-1" : { "32" : "ami-11d68a54", + "64" : "ami-1bd68a5e", "64HVM" : "NOT_YET_SUPPORTED" + },\n "eu-west-1" : { "32" : "ami-973b06e3", + "64" : "ami-953b06e1", "64HVM" : "NOT_YET_SUPPORTED" + },\n "ap-southeast-1" : { "32" : "ami-b4b0cae6", + "64" : "ami-beb0caec", "64HVM" : "NOT_YET_SUPPORTED" + },\n "ap-southeast-2" : { "32" : "ami-b3990e89", + "64" : "ami-bd990e87", "64HVM" : "NOT_YET_SUPPORTED" + },\n "ap-northeast-1" : { "32" : "ami-0644f007", + "64" : "ami-0a44f00b", "64HVM" : "NOT_YET_SUPPORTED" + },\n "sa-east-1" : { "32" : "ami-3e3be423", + "64" : "ami-3c3be421", "64HVM" : "NOT_YET_SUPPORTED" + }\n }\n },\n \n "Resources" : { \n\n\n "WebServer": + { \n "Type": "AWS::EC2::Instance",\n "Metadata" + : {\n "AWS::CloudFormation::Init" : {\n "config" + : {\n "packages" : {\n "yum" : + {\n "httpd" : [],\n "php" + \ : [],\n "php-mysql" : [],\n "mysql" + \ : [],\n "mysql-server" : [],\n "mysql-devel" + \ : [],\n "mysql-libs" : []\n }\n + \ },\n\n "sources" : {\n "/var/www/html" + : "http://wordpress.org/latest.tar.gz"\n },\n\n "files" + : {\n "/tmp/setup.mysql" : {\n "content" + : "CREATE DATABASE wordpressdb;\\n",\n "mode" + \ : "000644",\n "owner" : "root",\n + \ "group" : "root"\n },\n\n + \ "/var/www/html/wordpress/wp-config.php" : {\n "content" + : { "Fn::Join" : ["", [\n "<?php\\n",\n + \ "define('DB_NAME', 'wordpressdb');\\n",\n + \ "define('DB_USER', 'root');\\n",\n "define('DB_PASSWORD', + \ '", {"Ref" : "DBRootPassword" }, "');\\n",\n + \ "define('DB_HOST', 'localhost');\\n",\n + \ "define('DB_CHARSET', 'utf8');\\n",\n "define('DB_COLLATE', + \ '');\\n"\n ]] },\n "mode" + : "000644",\n "owner" : "root",\n + \ "group" : "root"\n }\n },\n + \ "services" : {\n "sysvinit" : + { \n "httpd" : { "enabled" : "true", + "ensureRunning" : "true" },\n "mysqld" + \ : { "enabled" : "true", "ensureRunning" : + "true" },\n "sendmail" : { "enabled" + : "false", "ensureRunning" : "false" }\n }\n + \ }\n }\n }\n },\n "Properties": + {\n "ImageId" : { "Fn::FindInMap" : [ "AWSRegionArch2AMI", + { "Ref" : "AWS::Region" },\n { + "Fn::FindInMap" : [ "AWSInstanceType2Arch", { "Ref" + : "InstanceType" }, "Arch" ] } ] },\n "InstanceType" + \ : { "Ref" : "InstanceType" },\n "SecurityGroups" + : [ {"Ref" : "WebServerSecurityGroup"} ],\n "UserData" + \ : { "Fn::Base64" : { "Fn::Join" : ["", + [\n "#!/bin/bash -v\\n",\n "yum update -y + aws-cfn-bootstrap\\n",\n\n "# Helper function\\n",\n + \ "function error_exit\\n",\n "{\\n",\n + \ " /opt/aws/bin/cfn-signal -e 1 -r \\"$1\\" '", + { "Ref" : "WaitHandle" }, "'\\n",\n " + \ exit 1\\n",\n "}\\n",\n\n "# Install + Apache Web Server, MySQL, PHP and WordPress\\n",\n "/opt/aws/bin/cfn-init + -s ", { "Ref" : "AWS::StackId" }, " -r WebServer + ",\n " --region ", { "Ref" : "AWS::Region" + }, " || error_exit 'Failed to run cfn-init'\\n",\n\n "# + Setup MySQL root password and create a user\\n",\n "mysqladmin + -u root password '", { "Ref" : "DBRootPassword" }, + "' || error_exit 'Failed to initialize root password'\\n",\n "mysql + -u root --password='", { "Ref" : "DBRootPassword" + }, "' < /tmp/setup.mysql || error_exit 'Failed to create database + user'\\n",\n\n "# Setup correct file ownership\\n",\n + \ "chown -R apache:apache /var/www/html/wordpress\\n",\n + \ \n "# Add keys and salts to the config file\\n",\n + \ "wp_config=/var/www/html/wordpress/wp-config.php\\n",\n + \ "GET https://api.wordpress.org/secret-key/1.1/salt/ >> + $wp_config\\n",\n "echo \\"define('WPLANG' , + '');\\" >> $wp_config\\n",\n "echo \\"define('WP_DEBUG' + \ , false);\\" >> $wp_config\\n", \n "echo + \\"\\\\$table_prefix = 'wp_';\\" >> $wp_config\\n",\n + \ "echo \\"if ( !defined('ABSPATH') )\\" >> $wp_config\\n",\n + \ "echo \\" define('ABSPATH', dirname(__FILE__) . '/');\\" + >> $wp_config\\n",\n "echo \\"require_once(ABSPATH + . 'wp-settings.php');\\" >> $wp_config\\n",\n\n "# + All is well so signal success\\n",\n "/opt/aws/bin/cfn-signal + -e 0 -r \\"WordPress setup complete\\" '", { "Ref" + : "WaitHandle" }, "'\\n"\n\n ]]}} \n }\n + \ },\n\n "WaitHandle" : {\n "Type" : "AWS::CloudFormation::WaitConditionHandle"\n + \ },\n\n "WaitCondition" : {\n "Type" : "AWS::CloudFormation::WaitCondition",\n + \ "DependsOn" : "WebServer",\n "Properties" + : {\n "Handle" : {"Ref" : "WaitHandle"},\n + \ "Timeout" : "300"\n }\n },\n \n "WebServerSecurityGroup" + : {\n "Type" : "AWS::EC2::SecurityGroup",\n "Properties" + : {\n "GroupDescription" : "Enable HTTP access via port + 80",\n "SecurityGroupIngress" : [\n {"IpProtocol" + : "tcp", "FromPort" : "80", "ToPort" + : "80", "CidrIp" : "0.0.0.0/0"}\n ]\n + \ } \n } \n },\n \n "Outputs" : {\n "WebsiteURL" + : {\n "Value" : { "Fn::Join" : ["", ["http://", + { "Fn::GetAtt" : [ "WebServer", "PublicDnsName" + ]}, "/wordpress"]] },\n "Description" : "WordPress + Website"\n }\n }\n}\n\n \n \n + \ 0ed5b141-5fba-11e6-b418-872b76471080\n \n\n" + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:20 GMT +- request: + method: post + uri: https://cloudformation.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115220Z + X-Amz-Content-Sha256: + - 39f59e2da9ad5c9ae815dd002143b5f3b77bbece6c40d6e0fc99cb74046287fd + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2c2103c5ab3d14f6606800dffafe02fb6fdf6546cdd049df28434710d56cc1db + Content-Length: + - '74' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 0fa3afc5-5fba-11e6-b2d6-a99ed20ba2f1 + Content-Type: + - text/xml + Content-Length: + - '1701' + Date: + - Thu, 11 Aug 2016 11:52:21 GMT + body: + encoding: UTF-8 + string: | + + + + + 2016-01-13T18:58:59.245Z + + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a + EmsRefreshSpec-JoeV-050 + AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template. + DELETE_FAILED + true + + + + KeyName + EMSRefreshSpec-KeyPair-02 + + + SSHLocation + 0.0.0.0/0 + + + InstanceType + m1.small + + + The following resource(s) failed to delete: [Subnet, VPC]. + + + + + 0fa3afc5-5fba-11e6-b2d6-a99ed20ba2f1 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:21 GMT +- request: + method: post + uri: https://cloudformation.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=ListStackResources&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115221Z + X-Amz-Content-Sha256: + - 83bcef007e9d341d9e8ea1194852604404f99f7481cf1b583db7fdf046ecdcbe + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c1223b4c17cfcd9788b40450599182c6e0654294b8ce992584c48e1c62d31f20 + Content-Length: + - '78' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 10142426-5fba-11e6-84fa-8541d81ee029 + Content-Type: + - text/xml + Content-Length: + - '8400' + Vary: + - Accept-Encoding + Date: + - Thu, 11 Aug 2016 11:52:21 GMT + body: + encoding: UTF-8 + string: | + + + + + 2016-08-10T16:50:02.375Z + EmsRe-Attac-2ZIVTI11D6BJ + DELETE_COMPLETE + AttachGateway + AWS::EC2::VPCGatewayAttachment + + + 2016-08-10T16:49:43.859Z + 52.20.255.156 + DELETE_COMPLETE + IPAddress + AWS::EC2::EIP + + + 2016-08-10T16:49:43.758Z + EmsRe-Inbou-AOEUINHLAJD9 + DELETE_COMPLETE + InboundHTTPNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:43.612Z + EmsRe-Inbou-MB4WTKU6TQTN + DELETE_COMPLETE + InboundResponsePortsNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:43.784Z + EmsRe-Inbou-15BV5BJJR4NK3 + DELETE_COMPLETE + InboundSSHNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:28.675Z + sg-893651f0 + DELETE_COMPLETE + InstanceSecurityGroup + AWS::EC2::SecurityGroup + + + 2016-08-10T16:50:21.027Z + igw-371cd953 + DELETE_COMPLETE + InternetGateway + AWS::EC2::InternetGateway + + + 2016-08-10T16:49:48.009Z + acl-54185830 + DELETE_COMPLETE + NetworkAcl + AWS::EC2::NetworkAcl + + + 2016-08-10T16:49:44.148Z + EmsRe-OutBo-8E4OKXO4JHSL + DELETE_COMPLETE + OutBoundHTTPNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:44.189Z + EmsRe-OutBo-17ZS4LX51V6XR + DELETE_COMPLETE + OutBoundHTTPSNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:43.708Z + EmsRe-OutBo-PUVCF579TPBL + DELETE_COMPLETE + OutBoundResponsePortsNetworkAclEntry + AWS::EC2::NetworkAclEntry + + + 2016-08-10T16:49:43.462Z + EmsRe-Route-1E9SZTZN6ONZR + DELETE_COMPLETE + Route + AWS::EC2::Route + + + 2016-08-10T16:49:46.325Z + rtb-60e3d204 + DELETE_COMPLETE + RouteTable + AWS::EC2::RouteTable + + + 2016-08-10T17:06:14.932Z + subnet-d4f656a2 + DELETE_FAILED + The subnet 'subnet-d4f656a2' has dependencies and cannot be deleted. + Subnet + AWS::EC2::Subnet + + + 2016-08-10T16:49:43.789Z + aclassoc-ac7748d5 + DELETE_COMPLETE + SubnetNetworkAclAssociation + AWS::EC2::SubnetNetworkAclAssociation + + + 2016-08-10T16:49:43.386Z + rtbassoc-09f3596e + DELETE_COMPLETE + SubnetRouteTableAssociation + AWS::EC2::SubnetRouteTableAssociation + + + 2016-08-10T17:22:52.447Z + vpc-d7b4c7b3 + DELETE_FAILED + The vpc 'vpc-d7b4c7b3' has dependencies and cannot be deleted. + VPC + AWS::EC2::VPC + + + 2016-08-10T16:50:21.140Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e + DELETE_COMPLETE + WebServerInstance + AWS::CloudFormation::Stack + + + 2016-08-10T16:49:27.679Z + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a/WebServerWaitHandle + DELETE_COMPLETE + WebServerWaitCondition + AWS::CloudFormation::WaitCondition + + + 2016-08-10T16:49:31.306Z + https://cloudformation-waitcondition-us-east-1.s3.amazonaws.com/arn%3Aaws%3Acloudformation%3Aus-east-1%3A200278856672%3Astack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a/WebServerWaitHandle?AWSAccessKeyId=AKIAIIT3CWAIMJYUTISA&Expires=1452797956&Signature=O5b2tJRAEbqCKgKQs2Vp8RAiPKQ%3D + DELETE_COMPLETE + WebServerWaitHandle + AWS::CloudFormation::WaitConditionHandle + + + + + 10142426-5fba-11e6-84fa-8541d81ee029 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:22 GMT +- request: + method: post + uri: https://cloudformation.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=GetTemplate&StackName=EmsRefreshSpec-JoeV-050&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115222Z + X-Amz-Content-Sha256: + - 36e3b98d6f07edf43b8c134cb7dc2f885bf57531905df5b58eac94a4c1b78426 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=657070a4f15b37f3079f63cb4aec573976b163da73c51f1987e6a7141e547fb8 + Content-Length: + - '71' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 107cd0f2-5fba-11e6-9fbc-5994d6bb0a68 + Content-Type: + - text/xml + Content-Length: + - '11970' + Vary: + - Accept-Encoding + Date: + - Thu, 11 Aug 2016 11:52:22 GMT + body: + encoding: UTF-8 + string: | + + + { + "AWSTemplateFormatVersion" : "2010-09-09", + + "Description" : "AWS CloudFormation Sample Template vpc_single_instance_in_subnet.template: Sample template showing how to create a VPC and add an EC2 instance with an Elastic IP address and a security group. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template.", + + "Parameters" : { + + "InstanceType" : { + "Description" : "WebServer EC2 instance type", + "Type" : "String", + "Default" : "m1.small", + "AllowedValues" : [ "t1.micro","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.xlarge","m3.2xlarge","c1.medium","c1.xlarge","cc1.4xlarge","cc2.8xlarge","cg1.4xlarge"], + "ConstraintDescription" : "must be a valid EC2 instance type." + }, + + "KeyName": { + "Description": "Name of an existing EC2 KeyPair to enable SSH access to the instances", + "Type": "AWS::EC2::KeyPair::KeyName", + "ConstraintDescription": "must be the name of an existing EC2 KeyPair." + }, + + "SSHLocation" : { + "Description" : " The IP address range that can be used to SSH to the EC2 instances", + "Type": "String", + "MinLength": "9", + "MaxLength": "18", + "Default": "0.0.0.0/0", + "AllowedPattern": "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})", + "ConstraintDescription": "must be a valid IP CIDR range of the form x.x.x.x/x." + } + }, + + "Mappings" : { + "RegionMap" : { + "us-east-1" : { "AMI" : "ami-7f418316" }, + "us-west-1" : { "AMI" : "ami-951945d0" }, + "us-west-2" : { "AMI" : "ami-16fd7026" }, + "eu-west-1" : { "AMI" : "ami-24506250" }, + "sa-east-1" : { "AMI" : "ami-3e3be423" }, + "ap-southeast-1" : { "AMI" : "ami-74dda626" }, + "ap-southeast-2" : { "AMI" : "ami-b3990e89" }, + "ap-northeast-1" : { "AMI" : "ami-dcfa4edd" } + } + }, + + "Resources" : { + + "VPC" : { + "Type" : "AWS::EC2::VPC", + "Properties" : { + "CidrBlock" : "10.0.0.0/16", + "Tags" : [ {"Key" : "Application", "Value" : { "Ref" : "AWS::StackId"} } ] + } + }, + + "Subnet" : { + "Type" : "AWS::EC2::Subnet", + "Properties" : { + "VpcId" : { "Ref" : "VPC" }, + "CidrBlock" : "10.0.0.0/24", + "Tags" : [ {"Key" : "Application", "Value" : { "Ref" : "AWS::StackId"} } ] + } + }, + + "InternetGateway" : { + "Type" : "AWS::EC2::InternetGateway", + "Properties" : { + "Tags" : [ {"Key" : "Application", "Value" : { "Ref" : "AWS::StackId"} } ] + } + }, + + "AttachGateway" : { + "Type" : "AWS::EC2::VPCGatewayAttachment", + "Properties" : { + "VpcId" : { "Ref" : "VPC" }, + "InternetGatewayId" : { "Ref" : "InternetGateway" } + } + }, + + "RouteTable" : { + "Type" : "AWS::EC2::RouteTable", + "Properties" : { + "VpcId" : {"Ref" : "VPC"}, + "Tags" : [ {"Key" : "Application", "Value" : { "Ref" : "AWS::StackId"} } ] + } + }, + + "Route" : { + "Type" : "AWS::EC2::Route", + "DependsOn" : "AttachGateway", + "Properties" : { + "RouteTableId" : { "Ref" : "RouteTable" }, + "DestinationCidrBlock" : "0.0.0.0/0", + "GatewayId" : { "Ref" : "InternetGateway" } + } + }, + + "SubnetRouteTableAssociation" : { + "Type" : "AWS::EC2::SubnetRouteTableAssociation", + "Properties" : { + "SubnetId" : { "Ref" : "Subnet" }, + "RouteTableId" : { "Ref" : "RouteTable" } + } + }, + + "NetworkAcl" : { + "Type" : "AWS::EC2::NetworkAcl", + "Properties" : { + "VpcId" : {"Ref" : "VPC"}, + "Tags" : [ {"Key" : "Application", "Value" : { "Ref" : "AWS::StackId"} } ] + } + }, + + "InboundHTTPNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "100", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "false", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "80", "To" : "80"} + } + }, + + "InboundSSHNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "101", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "false", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "22", "To" : "22"} + } + }, + + "InboundResponsePortsNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "102", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "false", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "1024", "To" : "65535"} + } + }, + + "OutBoundHTTPNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "100", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "true", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "80", "To" : "80"} + } + }, + + "OutBoundHTTPSNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "101", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "true", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "443", "To" : "443"} + } + }, + + "OutBoundResponsePortsNetworkAclEntry" : { + "Type" : "AWS::EC2::NetworkAclEntry", + "Properties" : { + "NetworkAclId" : {"Ref" : "NetworkAcl"}, + "RuleNumber" : "102", + "Protocol" : "6", + "RuleAction" : "allow", + "Egress" : "true", + "CidrBlock" : "0.0.0.0/0", + "PortRange" : {"From" : "1024", "To" : "65535"} + } + }, + + "SubnetNetworkAclAssociation" : { + "Type" : "AWS::EC2::SubnetNetworkAclAssociation", + "Properties" : { + "SubnetId" : { "Ref" : "Subnet" }, + "NetworkAclId" : { "Ref" : "NetworkAcl" } + } + }, + + "IPAddress" : { + "Type" : "AWS::EC2::EIP", + "DependsOn" : "AttachGateway", + "Properties" : { + "Domain" : "vpc", + "InstanceId" : { "Ref" : "WebServerInstance" } + } + }, + + "InstanceSecurityGroup" : { + "Type" : "AWS::EC2::SecurityGroup", + "Properties" : { + "VpcId" : { "Ref" : "VPC" }, + "GroupDescription" : "Enable SSH access via port 22", + "SecurityGroupIngress" : [ + {"IpProtocol" : "tcp", "FromPort" : "22", "ToPort" : "22", "CidrIp" : { "Ref" : "SSHLocation"}}, + { "IpProtocol" : "tcp", "FromPort" : "80", "ToPort" : "80", "CidrIp" : "0.0.0.0/0"} + ] + } + }, + + + "WebServerInstance" : { + "Type" : "AWS::CloudFormation::Stack", + "Properties" : { + "TemplateURL" : "https://s3-external-1.amazonaws.com/cloudformation-samples-us-east-1/WordPress_Simple.template", + "Parameters" : { + "DBRootPassword" : "adminadmin", + "InstanceType" : "t1.micro" + } + } + }, + + "WebServerWaitHandle" : { + "Type" : "AWS::CloudFormation::WaitConditionHandle" + }, + + "WebServerWaitCondition" : { + "Type" : "AWS::CloudFormation::WaitCondition", + "DependsOn" : "WebServerInstance", + "Properties" : { + "Handle" : {"Ref" : "WebServerWaitHandle"}, + "Timeout" : "300" + } + } + }, + + "Outputs" : { + "Bastion" : { + "Description" : "IP Address of the host", + "Value" : { "Ref" : "IPAddress" } + } + } + } + + + + 107cd0f2-5fba-11e6-9fbc-5994d6bb0a68 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:22 GMT +- request: + method: post + uri: https://ec2.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeImages&Filter.1.Name=image-type&Filter.1.Value.1=machine&Owner.1=self&Version=2015-10-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115222Z + X-Amz-Content-Sha256: + - db79e4df9ed35f35cf42da7e91827cb59b4430f397d1929fe355e7bab80b4ef4 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=39c9829c421eb98dfd1797479fbc413d78f7845c19df777c6e739e6090252141 + Content-Length: + - '103' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml;charset=UTF-8 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding + Date: + - Thu, 11 Aug 2016 11:52:22 GMT + Server: + - AmazonEC2 + body: + encoding: UTF-8 + string: |- + + + b1bc51df-b5f5-4560-beef-1e89ed0510a0 + ami-20e90e49 jf-test-copy/jf-test-copy.img.manifest.xml @@ -1904,8 +2804,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:28 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:24 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -1918,14 +2818,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145428Z + - 20160811T115224Z X-Amz-Content-Sha256: - 34dd15684d07734af76cde941bbcfffd303ae00976e67a37171e2c65350a75bd Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4306317cb3813e1c81955cc0e0a1c7ed880e26e02758d0db96f153cb3812d3ff + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ca052d9ccfc2108182359522b5e7e02d76effcd46e0ebe977f742443b5ff1239 Content-Length: - '110' Accept: @@ -1942,7 +2842,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:28 GMT + - Thu, 11 Aug 2016 11:52:24 GMT Server: - AmazonEC2 body: @@ -1950,11 +2850,11 @@ http_interactions: string: |- - c47f8584-8f5c-406c-ae80-5fb6d807e39e + b0daabce-e8b4-4d98-8233-c010f333665a - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:28 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:25 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -1967,14 +2867,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145428Z + - 20160811T115225Z X-Amz-Content-Sha256: - 7371039207d67c4be2f6abbb39dcd980a6861eef125be9b5437a5f5308278f8c Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c749a8c8aa9f3aa71e2f6041197bde5879cdfed475d5bc95353bd5934559e16f + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a31e5d7f3fcec5c4ebde91dbe36db1ba1304b816f5948dc23c25506c6a083686 Content-Length: - '43' Accept: @@ -1991,7 +2891,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:29 GMT + - Thu, 11 Aug 2016 11:52:25 GMT Server: - AmazonEC2 body: @@ -1999,7 +2899,7 @@ http_interactions: string: |- - b597da31-4869-43e7-9ecc-6925658c6e7e + efbde5e3-afbe-4eed-82ee-d2f4f98a4579 r-d09f0c3c @@ -2081,42 +2981,42 @@ http_interactions: - r-b4144298 + r-a412fb1a 200278856672 - + + + sg-a2f533b4 + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO-WebServerSecurityGroup-13B5DSBJH0RX0 + + - i-d6b34937 - ami-1643ff7e + i-94f7cb0a + ami-1b814f72 - 80 - stopped + 48 + terminated - ip-10-0-0-202.ec2.internal + - User initiated (2015-10-22 09:08:53 GMT) - bd + User initiated (2016-08-11 11:11:25 GMT) 0 t1.micro - 2014-11-03T17:07:33.000Z + 2016-08-11T10:24:50.000Z us-east-1e default - aki-919dcaf8 + aki-825ea7eb disabled - subnet-1852bb33 - vpc-a06de3c5 - 10.0.0.202 - true - sg-10362275 - DemoSecurityGroup + sg-a2f533b4 + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO-WebServerSecurityGroup-13B5DSBJH0RX0 @@ -2126,53 +3026,126 @@ http_interactions: x86_64 ebs /dev/sda1 + + paravirtual + EmsRe-WebSe-1T2W60AQ0GU6C + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO/c6efbd00-5fad-11e6-9718-5044334e0ab3 + + + aws:cloudformation:logical-id + WebServer + + + xen + + false + + + + + r-25e489f1 + 200278856672 + + + + i-6907c8f0 + ami-3f0e495a + + 16 + running + + ip-10-0-0-252.ec2.internal + + + EmsRefreshSpec-KeyPair + 0 + + t2.small + 2016-08-10T14:16:23.000Z + + us-east-1b + + default + + + disabled + + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.252 + true + + + sg-e0365199 + default + + + x86_64 + ebs + /dev/sda1 /dev/sda1 - vol-0728ef1f + vol-7c6f23d1 attached - 2014-11-03T17:07:35.000Z - true + 2016-08-09T15:19:51.000Z + false + + + + /dev/sdf + + vol-026f23af + attached + 2016-08-09T15:19:51.000Z + false - paravirtual - wkgJY1415034452594 + hvm + Name - AWS Config Demo + test_billyp xen - eni-cdc850e7 - subnet-1852bb33 - vpc-a06de3c5 - Primary network interface + eni-41f50345 + subnet-d4f656a2 + vpc-d7b4c7b3 + 200278856672 in-use - 12:39:69:5b:5c:39 - 10.0.0.202 + 0a:6a:20:75:ba:e7 + 10.0.0.252 true - sg-10362275 - DemoSecurityGroup + sg-e0365199 + default - eni-attach-19fc4164 + eni-attach-c972171a 0 attached - 2014-11-03T17:07:33.000Z + 2016-08-09T15:19:51.000Z true - 10.0.0.202 + 10.0.0.252 true @@ -2183,7 +3156,7 @@ http_interactions: - r-38c0cd5c + r-a13e1cc5 200278856672 @@ -2193,32 +3166,29 @@ http_interactions: - i-cf7144b4 - ami-edaa1f84 + i-11d74e68 + ami-bda014d4 - 16 - running + 80 + stopped - ip-10-141-134-252.ec2.internal - ec2-174-129-183-120.compute-1.amazonaws.com - - bill + + + User initiated (2014-11-10 22:42:03 GMT) + miq 0 - m1.small - 2012-08-22T18:33:01.000Z + t1.micro + 2014-11-10T22:33:09.000Z - us-east-1b + us-east-1d default - aki-a71cf9ce - ari-a51cf9cc + aki-08ed0761 disabled - 10.141.134.252 - 174.129.183.120 sg-347f9b5d @@ -2229,15 +3199,26 @@ http_interactions: Client.UserInitiatedShutdown Client.UserInitiatedShutdown: User initiated shutdown - i386 - instance-store - + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-55ac8c16 + attached + 2013-12-05T19:45:25.000Z + true + + + paravirtual - cd854056-ec87-11e1-853b-005056b25af6 + c73b75c8-5de5-11e3-b9a9-005056b25643 Name - VMWorld_001 + WP_DB_11 xen @@ -2247,42 +3228,40 @@ http_interactions: - r-a13e1cc5 + r-f0bed224 200278856672 - - - sg-347f9b5d - default - - + - i-11d74e68 - ami-bda014d4 + i-0012dc99 + ami-3f0e495a 80 stopped - + ip-10-0-0-77.ec2.internal - User initiated (2014-11-10 22:42:03 GMT) - miq + User initiated (2016-08-10 18:45:13 GMT) + EmsRefreshSpec-KeyPair 0 - t1.micro - 2014-11-10T22:33:09.000Z + t2.small + 2016-08-09T19:49:59.000Z - us-east-1d + us-east-1b default - aki-08ed0761 disabled + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.77 + true - sg-347f9b5d + sg-e0365199 default @@ -2297,86 +3276,247 @@ http_interactions: /dev/sda1 - vol-55ac8c16 + vol-0ceba4a1 + attached + 2016-08-09T19:50:00.000Z + false + + + + /dev/sdf + + vol-afeaa502 + attached + 2016-08-09T19:50:00.000Z + false + + + + hvm + + + + Name + test_billypa4_alldomains + + + xen + + + eni-fe7282fa + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:73:0a:c7:35:5f + 10.0.0.77 + true + + + sg-e0365199 + default + + + + eni-attach-d18fe802 + 0 + attached + 2016-08-09T19:49:59.000Z + true + + + + 10.0.0.77 + true + + + + + false + + + + + r-38bafd9b + 200278856672 + + + + i-fb694e66 + ami-5769193e + + 16 + running + + ip-10-0-0-109.ec2.internal + + + EmsRefreshSpec-KeyPair + 0 + + t1.micro + 2016-08-10T14:52:39.000Z + + us-east-1e + + default + + aki-1eceaf77 + + disabled + + subnet-f849ff96 + vpc-ff49ff91 + 10.0.0.109 + 54.211.31.92 + true + + + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-3bc4d1ea attached - 2013-12-05T19:45:25.000Z + 2016-05-10T20:56:38.000Z true paravirtual - c73b75c8-5de5-11e3-b9a9-005056b25643 + uBCLe1462913797292 Name - WP_DB_11 + VMstate-8 xen - + + + eni-a3902b84 + subnet-f849ff96 + vpc-ff49ff91 + Primary network interface + 200278856672 + in-use + 12:80:72:db:8c:81 + 10.0.0.109 + true + + + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + + + + eni-attach-12a4c3e2 + 0 + attached + 2016-05-10T20:56:37.000Z + true + + + 54.211.31.92 + + amazon + + + + 10.0.0.109 + true + + 54.211.31.92 + + amazon + + + + + false - r-d3bbe9b5 + r-e0bc545e 200278856672 - sg-347f9b5d - default + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE - i-1b48f567 - ami-feaa1297 + i-d7754a49 + ami-1b814f72 - 80 - stopped + 16 + running - - - User initiated + ip-10-235-171-67.ec2.internal + ec2-23-23-39-34.compute-1.amazonaws.com + 0 - m1.small - 2013-12-09T16:53:58.000Z + t1.micro + 2016-08-11T11:48:24.000Z - us-east-1d + us-east-1e default - windows + aki-825ea7eb disabled + 10.235.171.67 + 23.23.39.34 - sg-347f9b5d - default + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE - - Server.ScheduledStop - Server.ScheduledStop: Stopped due to scheduled retirement - - i386 + x86_64 ebs /dev/sda1 /dev/sda1 - vol-3aa3cf47 + vol-3a1d9ae8 attached - 2012-10-25T20:00:11.000Z - false + 2016-08-11T11:48:24.000Z + true - hvm - + paravirtual + EmsRe-WebSe-1K5RORC3NJ425 + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + + + aws:cloudformation:logical-id + WebServer + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 + + xen false @@ -2463,7 +3603,7 @@ http_interactions: - r-b03f1ed6 + r-680669bc 200278856672 @@ -2473,31 +3613,31 @@ http_interactions: - i-10b27f76 - ami-bda014d4 + i-5ae128c3 + ami-c68639af 16 running - ip-10-185-241-50.ec2.internal - ec2-54-224-129-8.compute-1.amazonaws.com + ip-10-13-164-217.ec2.internal + ec2-54-90-176-56.compute-1.amazonaws.com - miq + EmsRefreshSpec-KeyPair 0 - t1.micro - 2014-11-10T23:12:06.000Z + m3.medium + 2016-08-09T23:24:54.000Z - us-east-1d + us-east-1b default - aki-08ed0761 + aki-825ea7eb disabled - 10.185.241.50 - 54.224.129.8 + 10.13.164.217 + 54.90.176.56 sg-347f9b5d @@ -2505,25 +3645,14 @@ http_interactions: x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-18e2c55b - attached - 2013-12-04T19:30:54.000Z - true - - - + instance-store + paravirtual - 95bdee84-5d1a-11e3-a53a-005056b25643 + Name - WP_WEB_06 + test_billydep2_ins1 xen @@ -2533,49 +3662,42 @@ http_interactions: - r-17b64272 + r-c361707c 200278856672 - - - sg-347f9b5d - default - - + - i-8ff1e8f6 - ami-bda014d4 + i-df005341 + ami-3f0e495a - 80 - stopped + 16 + running - + ip-10-0-1-40.ec2.internal - User initiated (2014-11-10 22:42:03 GMT) - miq + 0 - t1.micro - 2014-11-10T22:33:09.000Z + t2.nano + 2016-08-08T21:01:31.000Z - us-east-1d + us-east-1e default - aki-08ed0761 disabled + subnet-ac904787 + vpc-a06de3c5 + 10.0.1.40 + true - sg-347f9b5d + sg-24362241 default - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - x86_64 ebs /dev/sda1 @@ -2583,68 +3705,111 @@ http_interactions: /dev/sda1 - vol-8a768cc9 + vol-275d8bf5 attached - 2013-09-21T20:53:45.000Z - true + 2016-08-04T17:48:30.000Z + false + + + + /dev/sdf + + vol-d05a8c02 + attached + 2016-08-04T17:48:30.000Z + false - paravirtual - e56a4ad6-22ff-11e3-bb5b-005056b25643 + hvm + Name - WP_DB_08 + tina_test_98765 xen - + + + eni-fd86a4ec + subnet-ac904787 + vpc-a06de3c5 + + 200278856672 + in-use + 12:57:14:ff:77:51 + 10.0.1.40 + true + + + sg-24362241 + default + + + + eni-attach-30963a99 + 0 + attached + 2016-08-04T17:48:30.000Z + true + + + + 10.0.1.40 + true + + + + false - r-ccb40c64 + r-17b64272 200278856672 - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 + sg-347f9b5d + default - i-7c3c64fd - ami-1b814f72 + i-8ff1e8f6 + ami-bda014d4 - 16 - running + 80 + stopped - ip-10-235-71-156.ec2.internal - ec2-54-205-48-36.compute-1.amazonaws.com - + + + User initiated (2014-11-10 22:42:03 GMT) + miq 0 t1.micro - 2016-01-13T18:59:55.000Z + 2014-11-10T22:33:09.000Z - us-east-1e + us-east-1d default - aki-825ea7eb + aki-08ed0761 disabled - 10.235.71.156 - 54.205.48.36 - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 + sg-347f9b5d + default + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + x86_64 ebs /dev/sda1 @@ -2652,27 +3817,19 @@ http_interactions: /dev/sda1 - vol-47b4ce9b + vol-8a768cc9 attached - 2016-01-13T18:59:58.000Z + 2013-09-21T20:53:45.000Z true paravirtual - EmsRe-WebSe-1TVAHOVOGE1MO + e56a4ad6-22ff-11e3-bb5b-005056b25643 - aws:cloudformation:logical-id - WebServer - - - aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - - - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I + Name + WP_DB_08 xen @@ -2700,7 +3857,7 @@ http_interactions: 0 t1.micro - 2013-09-23T20:11:52.000Z + 2016-08-10T15:34:32.000Z us-east-1e @@ -2713,7 +3870,6 @@ http_interactions: subnet-f849ff96 vpc-ff49ff91 10.0.0.254 - 52.20.255.156 true @@ -2721,10 +3877,6 @@ http_interactions: EmsRefreshSpec-SecurityGroup-VPC - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - x86_64 ebs /dev/sda1 @@ -2772,24 +3924,83 @@ http_interactions: 2013-09-23T20:11:52.000Z true - - 52.20.255.156 - - 200278856672 - 10.0.0.254 true - - 52.20.255.156 - - 200278856672 - - + + false + + + + + r-5254bdec + 200278856672 + + + sg-c2f036d4 + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR-WebServerSecurityGroup-1PSV38L1SCT7M + + + + + i-1b91ad85 + ami-1b814f72 + + 48 + terminated + + + + User initiated (2016-08-11 11:42:28 GMT) + 0 + + t1.micro + 2016-08-11T11:34:03.000Z + + us-east-1e + + default + + aki-825ea7eb + + disabled + + + + sg-c2f036d4 + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR-WebServerSecurityGroup-1PSV38L1SCT7M + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + paravirtual + EmsRe-WebSe-BC7ADYZ6OR13 + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR/719a2480-5fb7-11e6-9a6e-500c219ab02a + + + aws:cloudformation:logical-id + WebServer + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR + + + xen + false @@ -2942,204 +4153,6 @@ http_interactions: - - r-33dbd7cc - 200278856672 - - - - i-c9f7a679 - ami-3f0e495a - - 16 - running - - ip-10-0-1-37.ec2.internal - - - 0 - - t2.medium - 2015-12-04T17:32:52.000Z - - us-east-1d - - default - - - disabled - - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.37 - true - - - sg-1e2cf271 - default - - - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-e79f211a - attached - 2015-12-04T17:32:56.000Z - false - - - - /dev/sdf - - vol-fa9f2107 - attached - 2015-12-04T17:32:56.000Z - false - - - - hvm - 59f22211-5893-4216-a349-146c3608ca29 - xen - - - eni-932aebcc - subnet-16c70477 - vpc-ff49ff91 - - 200278856672 - in-use - 0e:b5:55:90:96:47 - 10.0.1.37 - true - - - sg-1e2cf271 - default - - - - eni-attach-0ed687e3 - 0 - attached - 2015-12-04T17:32:52.000Z - true - - - - 10.0.1.37 - true - - - - - false - - - - - r-814f4c7e - 200278856672 - - - - i-e04c0650 - ami-3f0e495a - - 16 - running - - ip-10-0-1-64.ec2.internal - - - 0 - - t2.medium - 2015-12-03T17:03:46.000Z - - us-east-1d - - default - - - disabled - - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.64 - true - - - sg-1e2cf271 - default - - - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-c2ca793f - attached - 2015-12-03T17:03:54.000Z - false - - - - /dev/sdf - - vol-87ca797a - attached - 2015-12-03T17:03:54.000Z - false - - - - hvm - 3a7873de-03f1-4652-a93c-f0b182e8baac - xen - - - eni-324cb76d - subnet-16c70477 - vpc-ff49ff91 - - 200278856672 - in-use - 0e:56:b5:d2:75:01 - 10.0.1.64 - true - - - sg-1e2cf271 - default - - - - eni-attach-eb1d4806 - 0 - attached - 2015-12-03T17:03:46.000Z - true - - - - 10.0.1.64 - true - - - - - false - - - r-243f0343 200278856672 @@ -3497,9 +4510,115 @@ http_interactions: Name WP_WEB_03 - - xen - + + xen + + false + + + + + r-2fb6dafb + 200278856672 + + + + i-6429e7fd + ami-3f0e495a + + 16 + running + + ip-10-0-0-121.ec2.internal + + + EmsRefreshSpec-KeyPair + 0 + + t2.small + 2016-08-09T20:00:28.000Z + + us-east-1b + + default + + + disabled + + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.121 + true + + + sg-e0365199 + default + + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-eefab543 + attached + 2016-08-09T20:00:29.000Z + false + + + + /dev/sdf + + vol-a6fab50b + attached + 2016-08-09T20:00:29.000Z + false + + + + hvm + + + + Name + test_billypa5_somedomains + + + xen + + + eni-6e6b9b6a + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:cb:89:f5:d0:af + 10.0.0.121 + true + + + sg-e0365199 + default + + + + eni-attach-649afdb7 + 0 + attached + 2016-08-09T20:00:28.000Z + true + + + + 10.0.0.121 + true + + + + false @@ -3577,43 +4696,94 @@ http_interactions: - r-293e9d81 + r-6e927dd0 200278856672 - sg-038e8a69 - EmsRefreshSpec-SecurityGroup1 + sg-347f9b5d + default - i-6eeb97ef - ami-5769193e + i-6e6a59f0 + ami-edaa1f84 + + 16 + running + + ip-10-65-143-252.ec2.internal + ec2-54-205-250-118.compute-1.amazonaws.com + + 0 + + m1.small + 2016-08-10T20:10:33.000Z + + us-east-1e + + default + + aki-a71cf9ce + ari-a51cf9cc + + disabled + + 10.65.143.252 + 54.205.250.118 + + + sg-347f9b5d + default + + + i386 + instance-store + + paravirtual + + xen + + false + + + + + r-f3a8c427 + 200278856672 + + + + i-2707c9be + ami-3f0e495a 80 stopped - + ip-10-0-0-173.ec2.internal - User initiated (2016-01-08 16:51:08 GMT) + User initiated (2016-08-09 20:32:44 GMT) EmsRefreshSpec-KeyPair 0 - t1.micro - 2016-01-08T15:09:18.000Z + t2.small + 2016-08-09T19:31:31.000Z - us-east-1e + us-east-1b default - aki-1eceaf77 disabled + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.173 + true - sg-038e8a69 - EmsRefreshSpec-SecurityGroup1 + sg-e0365199 + default @@ -3627,65 +4797,105 @@ http_interactions: /dev/sda1 - vol-1aa43ec6 + vol-acc48b01 attached - 2016-01-08T15:09:22.000Z - true + 2016-08-09T19:31:31.000Z + false + + + + /dev/sdf + + vol-40c58aed + attached + 2016-08-09T19:31:31.000Z + false - paravirtual - HZSda1452265758158 + hvm + Name - EmsRefreshSpec-PoweredOff + test_billypa3_retry xen - + + + eni-6025d564 + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:1d:c8:bb:c9:a7 + 10.0.0.173 + true + + + sg-e0365199 + default + + + + eni-attach-2f593efc + 0 + attached + 2016-08-09T19:31:31.000Z + true + + + + 10.0.0.173 + true + + + + false - r-24473643 + r-293e9d81 200278856672 - sg-347f9b5d - default + sg-038e8a69 + EmsRefreshSpec-SecurityGroup1 - i-343f714f - ami-bda014d4 + i-6eeb97ef + ami-5769193e 80 stopped - User initiated (2014-11-10 22:42:03 GMT) - miq + User initiated (2016-01-08 16:51:08 GMT) + EmsRefreshSpec-KeyPair 0 t1.micro - 2014-11-10T22:33:09.000Z + 2016-01-08T15:09:18.000Z - us-east-1d + us-east-1e default - aki-08ed0761 + aki-1eceaf77 disabled - sg-347f9b5d - default + sg-038e8a69 + EmsRefreshSpec-SecurityGroup1 @@ -3699,19 +4909,19 @@ http_interactions: /dev/sda1 - vol-fce2c5bf + vol-1aa43ec6 attached - 2013-12-04T19:30:54.000Z + 2016-01-08T15:09:22.000Z true paravirtual - 950afb80-5d1a-11e3-b781-005056b25643 + HZSda1452265758158 Name - WP_DB_10 + EmsRefreshSpec-PoweredOff xen @@ -3721,39 +4931,39 @@ http_interactions: - r-9146456e + r-f8091847 200278856672 - i-f0317b40 + i-5b5704c5 ami-3f0e495a 16 running - ip-10-0-1-170.ec2.internal + ip-10-0-1-227.ec2.internal 0 - t2.medium - 2015-12-03T16:53:31.000Z + t2.nano + 2016-08-08T21:01:31.000Z - us-east-1d + us-east-1e default disabled - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.170 + subnet-ac904787 + vpc-a06de3c5 + 10.0.1.227 true - sg-1e2cf271 + sg-24362241 default @@ -3764,52 +4974,58 @@ http_interactions: /dev/sda1 - vol-fbdd6e06 + vol-718554a3 attached - 2015-12-03T16:53:34.000Z + 2016-08-04T18:35:40.000Z false /dev/sdf - vol-d8dd6e25 + vol-dc84550e attached - 2015-12-03T16:53:34.000Z + 2016-08-04T18:35:40.000Z false hvm - edbcf1b6-bec7-496c-8024-b1c8687fa551 + + + + Name + tina_check_for_blank + + xen - eni-c25fa49d - subnet-16c70477 - vpc-ff49ff91 + eni-10351801 + subnet-ac904787 + vpc-a06de3c5 200278856672 in-use - 0e:ca:1f:16:c0:07 - 10.0.1.170 + 12:d7:e6:bf:bd:09 + 10.0.1.227 true - sg-1e2cf271 + sg-24362241 default - eni-attach-86f7bd6b + eni-attach-1909a5b0 0 attached - 2015-12-03T16:53:31.000Z + 2016-08-04T18:35:40.000Z true - 10.0.1.170 + 10.0.1.227 true @@ -3819,6 +5035,78 @@ http_interactions: + + r-24473643 + 200278856672 + + + sg-347f9b5d + default + + + + + i-343f714f + ami-bda014d4 + + 80 + stopped + + + + User initiated (2014-11-10 22:42:03 GMT) + miq + 0 + + t1.micro + 2014-11-10T22:33:09.000Z + + us-east-1d + + default + + aki-08ed0761 + + disabled + + + + sg-347f9b5d + default + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-fce2c5bf + attached + 2013-12-04T19:30:54.000Z + true + + + + paravirtual + 950afb80-5d1a-11e3-b781-005056b25643 + + + Name + WP_DB_10 + + + xen + + false + + + r-2bf898d6 200278856672 @@ -3972,42 +5260,42 @@ http_interactions: - r-42ae1ae9 + r-494ba2f7 200278856672 - + + + sg-0bfe381d + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7-WebServerSecurityGroup-KIGDZD6UNWBN + + - i-b875a73b - ami-5769193e + i-40b488de + ami-1b814f72 - 80 - stopped + 48 + terminated - ip-10-0-0-188.ec2.internal + - User initiated (2016-03-14 18:30:00 GMT) - EmsRefreshSpec-KeyPair + User initiated (2016-08-11 11:23:32 GMT) 0 t1.micro - 2016-03-03T16:39:03.000Z + 2016-08-11T11:15:34.000Z us-east-1e default - aki-1eceaf77 + aki-825ea7eb disabled - subnet-f849ff96 - vpc-ff49ff91 - 10.0.0.188 - true - - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC + + sg-0bfe381d + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7-WebServerSecurityGroup-KIGDZD6UNWBN @@ -4017,58 +5305,25 @@ http_interactions: x86_64 ebs /dev/sda1 - - - /dev/sda1 - - vol-97b75449 - attached - 2016-03-03T16:39:03.000Z - true - - - + paravirtual - YhvEZ1457023142321 + EmsRe-WebSe-KD7L7O6S3NCZ - Name - VMState-5 + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7 - - xen - - eni-532bef76 - subnet-f849ff96 - vpc-ff49ff91 - Primary network interface - 200278856672 - in-use - 12:83:d4:90:34:51 - 10.0.0.188 - true - - - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC - - - - eni-attach-11116bef - 0 - attached - 2016-03-03T16:39:03.000Z - true - - - - 10.0.0.188 - true - - + aws:cloudformation:logical-id + WebServer - + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7/dd00ada0-5fb4-11e6-b975-50d5ca6e60ae + + + xen + false @@ -4146,8 +5401,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:29 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:27 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -4160,14 +5415,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145436Z + - 20160811T115230Z X-Amz-Content-Sha256: - 9f20d995ddde903a6362496508f3ff1338be9f93bab47b71d552e0e5be8111cd Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a6e0ece79825b40906a5f5aefff879b940eff38dadc5848a138a629dcb50364 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6db2b8e6feba8f6b30d022a914d415b12e66b454a9ce274a05cba07a35e1bfeb Content-Length: - '38' Accept: @@ -4184,7 +5439,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:35 GMT + - Thu, 11 Aug 2016 11:52:31 GMT Server: - AmazonEC2 body: @@ -4192,31 +5447,31 @@ http_interactions: string: |- - 1a6ad0ab-093a-41ea-a514-4b126208f976 + c971b13c-9b23-49b9-9bd0-43f409fbfb17 - vpc-ff49ff91 + vpc-a06de3c5 available 10.0.0.0/16 dopt-f24ff99c Name - EmsRefreshSpec-VPC + DemoVPC default false - vpc-a06de3c5 + vpc-ff49ff91 available 10.0.0.0/16 dopt-f24ff99c Name - DemoVPC + EmsRefreshSpec-VPC default @@ -4231,10 +5486,28 @@ http_interactions: false - vpc-d7b9b2b5 + vpc-08d9b36f available - 10.1.0.0/16 + 10.0.0.0/16 dopt-f24ff99c + + + Application + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + + + aws:cloudformation:stack-name + EmsRefreshSpecStack + + + aws:cloudformation:logical-id + VPC + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + + default false @@ -4266,28 +5539,28 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:36 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:31 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-ff49ff91&Version=2015-10-01 + string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-a06de3c5&Version=2015-10-01 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145436Z + - 20160811T115231Z X-Amz-Content-Sha256: - - 7ff059140fea54eb0f9c24825fee53c5e17d56cec3a9a85234699a4721c5ae90 + - de3e857f76ac682880b3f32e86d47c9ac8572e3ac181644c48538e4c761329a9 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5208b2ea3bc187e335f2fc162f7280a8ede7509132cc249bdc9268f7748dea99 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=389b8cd828a32af5c1b7a901ccf3132ec5342fb3f0f1d178131cb538b54c8a50 Content-Length: - '92' Accept: @@ -4304,7 +5577,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:36 GMT + - Thu, 11 Aug 2016 11:52:32 GMT Server: - AmazonEC2 body: @@ -4312,64 +5585,64 @@ http_interactions: string: |- - f963a1d1-cf1f-4fe1-80ec-081a5219053c + b64ad5a1-0c3f-4407-ad76-2edf082dae5b - subnet-16c70477 + subnet-ac904787 available - vpc-ff49ff91 + vpc-a06de3c5 10.0.1.0/24 - 248 - us-east-1d + 249 + us-east-1e false false Name - EmsRefreshSpec-Subnet2 + subnet2 - subnet-f849ff96 + subnet-1852bb33 available - vpc-ff49ff91 + vpc-a06de3c5 10.0.0.0/24 - 249 + 250 us-east-1e false - false + true Name - EmsRefreshSpec-Subnet1 + Subnet1 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:37 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:32 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-a06de3c5&Version=2015-10-01 + string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-ff49ff91&Version=2015-10-01 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145437Z + - 20160811T115232Z X-Amz-Content-Sha256: - - de3e857f76ac682880b3f32e86d47c9ac8572e3ac181644c48538e4c761329a9 + - 7ff059140fea54eb0f9c24825fee53c5e17d56cec3a9a85234699a4721c5ae90 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bf8269827ecf631af708ff60b360d1f6697eba616f7232fa581d70e79d7a5f17 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a45d6081bf2543b7e93ef94f75d44306b5ed56d71d462e33eec65cef17f3d40c Content-Length: - '92' Accept: @@ -4386,7 +5659,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:37 GMT + - Thu, 11 Aug 2016 11:52:32 GMT Server: - AmazonEC2 body: @@ -4394,44 +5667,44 @@ http_interactions: string: |- - f1a2e350-3eaf-4e23-b48a-40b63ee3d593 + 58eca5e8-80c5-40af-acc6-ce9c1a20a58b - subnet-ac904787 + subnet-16c70477 available - vpc-a06de3c5 + vpc-ff49ff91 10.0.1.0/24 - 251 - us-east-1e + 249 + us-east-1d false false Name - subnet2 + EmsRefreshSpec-Subnet2 - subnet-1852bb33 + subnet-f849ff96 available - vpc-a06de3c5 + vpc-ff49ff91 10.0.0.0/24 - 249 + 247 us-east-1e false - true + false Name - Subnet1 + EmsRefreshSpec-Subnet1 - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:37 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:33 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -4444,14 +5717,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145437Z + - 20160811T115233Z X-Amz-Content-Sha256: - 0d5e59d7aa244271c0ae4934a1e500ab5be72eb76992c834d78f9fc2fb84f8a6 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bd8edf985f5e292fd44e74bc7d1a44483fc52ddfd14825b5dfe0e2b9d4db9544 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1a21af7ef36675821027200627b9fb2fdb8f0b84ba1441f444443a719382b3d4 Content-Length: - '92' Accept: @@ -4468,7 +5741,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:37 GMT + - Thu, 11 Aug 2016 11:52:33 GMT Server: - AmazonEC2 body: @@ -4476,7 +5749,7 @@ http_interactions: string: |- - a7c00f1e-da0b-40a8-9900-cce968200e90 + 96cd8b25-3c56-448f-9b41-812f86228033 subnet-bc418ce4 @@ -4520,28 +5793,28 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:38 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:34 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-d7b9b2b5&Version=2015-10-01 + string: Action=DescribeSubnets&Filter.1.Name=vpc-id&Filter.1.Value.1=vpc-08d9b36f&Version=2015-10-01 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145438Z + - 20160811T115234Z X-Amz-Content-Sha256: - - d1af840de64d2c2d96532598f4f27258be4921747c6480562f47dad1c2ba8c0e + - 2fe529277eaf15fd1444960fe9351fdef1e8843e972b9b26a9e1c6efadcc1f91 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e6f0c24fc1ed310250246c5e382f307276164e8eef4fa383c1c8961efddcf5cb + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c894b0531ffdc36af1d2510630b3084780c95a07c79d3330da7a1e8bc10331a4 Content-Length: - '92' Accept: @@ -4558,7 +5831,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:38 GMT + - Thu, 11 Aug 2016 11:52:35 GMT Server: - AmazonEC2 body: @@ -4566,22 +5839,40 @@ http_interactions: string: |- - 84f0f11d-539e-4408-b391-b3b3274d9d4c + b9d79dd6-c071-4beb-9204-1f8357322933 - subnet-ac507ad8 + subnet-03424e5b available - vpc-d7b9b2b5 - 10.1.0.0/28 - 11 - us-east-1b + vpc-08d9b36f + 10.0.0.0/24 + 251 + us-east-1d false false + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + + + Application + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + + + aws:cloudformation:stack-name + EmsRefreshSpecStack + + + aws:cloudformation:logical-id + Subnet + + - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:38 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:35 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -4594,14 +5885,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145438Z + - 20160811T115235Z X-Amz-Content-Sha256: - 981f5442af39cebd9bd742c554ad71f5fb30d74fdfb2e8036c22855b54c19fe5 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=067f2a55f965c3a3f10344659097bf201e7b27295697e9dff04f296f173f991a + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=831d079c475c96399642d8c4564b8b8a1a6eb70fdcb22ebabd2dd87c9276d02e Content-Length: - '92' Accept: @@ -4618,7 +5909,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:38 GMT + - Thu, 11 Aug 2016 11:52:36 GMT Server: - AmazonEC2 body: @@ -4626,14 +5917,14 @@ http_interactions: string: |- - 7ddf37a1-d580-442b-a5e7-bc9498848413 + d513de45-5e7e-460e-9b06-ac95639623f8 subnet-d4f656a2 available vpc-d7b4c7b3 10.0.0.0/24 - 251 + 247 us-east-1b false false @@ -4658,8 +5949,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:39 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:36 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -4672,14 +5963,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145439Z + - 20160811T115236Z X-Amz-Content-Sha256: - 106f344e853e62716912efa6fa6279cc6adda200c0e144a1c1e3545e1cf48590 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=43fd8b484c89df291ad6fa38f6502b3d027617d788a37d8458ed07e76afa1f62 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=307b203306724f508dcec67e6e8b22866bd570816e264a80ee504625f865cb4e Content-Length: - '48' Accept: @@ -4696,7 +5987,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:39 GMT + - Thu, 11 Aug 2016 11:52:36 GMT Server: - AmazonEC2 body: @@ -4704,7 +5995,7 @@ http_interactions: string: |- - 9f335161-ddfa-481a-aeeb-c46dffbba519 + 2e6c1e60-e0af-4091-b952-d6980bde3159 200278856672 @@ -5118,41 +6409,6 @@ http_interactions: - - 200278856672 - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 - Enable HTTP access via port 80 - - - tcp - 80 - 80 - - - - 0.0.0.0/0 - - - - - - - - - aws:cloudformation:logical-id - WebServerSecurityGroup - - - aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - - - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I - - - 200278856672 sg-b92991d4 @@ -5234,6 +6490,41 @@ http_interactions: + + 200278856672 + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE + Enable HTTP access via port 80 + + + tcp + 80 + 80 + + + + 0.0.0.0/0 + + + + + + + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + + + aws:cloudformation:logical-id + WebServerSecurityGroup + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 + + + 200278856672 sg-1e2cf271 @@ -5300,17 +6591,17 @@ http_interactions: 200278856672 - sg-3a332e58 + sg-a493cddd default default VPC security group - vpc-d7b9b2b5 + vpc-aee2a6ca -1 200278856672 - sg-3a332e58 + sg-a493cddd @@ -5332,17 +6623,17 @@ http_interactions: 200278856672 - sg-a493cddd + sg-e0365199 default default VPC security group - vpc-aee2a6ca + vpc-d7b4c7b3 -1 200278856672 - sg-a493cddd + sg-e0365199 @@ -5364,17 +6655,17 @@ http_interactions: 200278856672 - sg-e0365199 + sg-e7e82f9d default default VPC security group - vpc-d7b4c7b3 + vpc-08d9b36f -1 200278856672 - sg-e0365199 + sg-e7e82f9d @@ -5494,10 +6785,55 @@ http_interactions: 200278856672 - sg-893651f0 - EmsRefreshSpec-JoeV-050-InstanceSecurityGroup-1DCZ1WK7MA8H4 + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + EmsRefreshSpec-SecurityGroup-VPC + vpc-ff49ff91 + + + tcp + 22 + 22 + + + + 0.0.0.0/0 + + + + + + icmp + -1 + -1 + + + + 0.0.0.0/0 + + + + + + + + -1 + + + + 0.0.0.0/0 + + + + + + + + 200278856672 + sg-ddf730a7 + EmsRefreshSpecStack-InstanceSecurityGroup-JZGN7EHCQ9ON Enable SSH access via port 22 - vpc-d7b4c7b3 + vpc-08d9b36f tcp @@ -5537,39 +6873,19 @@ http_interactions: - - aws:cloudformation:logical-id - InstanceSecurityGroup - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050 + EmsRefreshSpecStack aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 - - - - 200278856672 - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC - EmsRefreshSpec-SecurityGroup-VPC - vpc-ff49ff91 - - - -1 - - - - 0.0.0.0/0 - - - + aws:cloudformation:logical-id + InstanceSecurityGroup - + 200278856672 @@ -5722,6 +7038,18 @@ http_interactions: + + udp + 19132 + 19132 + + + + 0.0.0.0/0 + + + + @@ -6053,6 +7381,39 @@ http_interactions: + + 200278856672 + sg-0d2cd677 + quick-create-1 + quick-create-1 created on Wednesday, August 10, 2016 at 4:16:22 PM UTC+2 + vpc-ff49ff91 + + + tcp + 2222 + 2222 + + + + 0.0.0.0/0 + + + + + + + + -1 + + + + 0.0.0.0/0 + + + + + + 200278856672 sg-9593cdec @@ -6088,8 +7449,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:39 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:37 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -6102,14 +7463,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145439Z + - 20160811T115237Z X-Amz-Content-Sha256: - 106f344e853e62716912efa6fa6279cc6adda200c0e144a1c1e3545e1cf48590 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=43fd8b484c89df291ad6fa38f6502b3d027617d788a37d8458ed07e76afa1f62 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=05ceaab90c8717b1f533a2c3bd9b40a057434050aea8e326c6115712b283195f Content-Length: - '48' Accept: @@ -6126,7 +7487,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:39 GMT + - Thu, 11 Aug 2016 11:52:38 GMT Server: - AmazonEC2 body: @@ -6134,7 +7495,7 @@ http_interactions: string: |- - 7e0c3d28-2036-40c0-be36-14167bd8eac3 + 54a87ac2-7a89-4152-94b8-0fcb8e224dba 200278856672 @@ -6548,41 +7909,6 @@ http_interactions: - - 200278856672 - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 - Enable HTTP access via port 80 - - - tcp - 80 - 80 - - - - 0.0.0.0/0 - - - - - - - - - aws:cloudformation:logical-id - WebServerSecurityGroup - - - aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - - - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I - - - 200278856672 sg-b92991d4 @@ -6664,6 +7990,41 @@ http_interactions: + + 200278856672 + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE + Enable HTTP access via port 80 + + + tcp + 80 + 80 + + + + 0.0.0.0/0 + + + + + + + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + + + aws:cloudformation:logical-id + WebServerSecurityGroup + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 + + + 200278856672 sg-1e2cf271 @@ -6730,17 +8091,17 @@ http_interactions: 200278856672 - sg-3a332e58 + sg-a493cddd default default VPC security group - vpc-d7b9b2b5 + vpc-aee2a6ca -1 200278856672 - sg-3a332e58 + sg-a493cddd @@ -6762,17 +8123,17 @@ http_interactions: 200278856672 - sg-a493cddd + sg-e0365199 default default VPC security group - vpc-aee2a6ca + vpc-d7b4c7b3 -1 200278856672 - sg-a493cddd + sg-e0365199 @@ -6794,17 +8155,17 @@ http_interactions: 200278856672 - sg-e0365199 + sg-e7e82f9d default default VPC security group - vpc-d7b4c7b3 + vpc-08d9b36f -1 200278856672 - sg-e0365199 + sg-e7e82f9d @@ -6924,15 +8285,15 @@ http_interactions: 200278856672 - sg-893651f0 - EmsRefreshSpec-JoeV-050-InstanceSecurityGroup-1DCZ1WK7MA8H4 - Enable SSH access via port 22 - vpc-d7b4c7b3 + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + EmsRefreshSpec-SecurityGroup-VPC + vpc-ff49ff91 tcp - 80 - 80 + 22 + 22 @@ -6942,9 +8303,9 @@ http_interactions: - tcp - 22 - 22 + icmp + -1 + -1 @@ -6966,28 +8327,39 @@ http_interactions: - - - aws:cloudformation:logical-id - InstanceSecurityGroup - + + + 200278856672 + sg-ddf730a7 + EmsRefreshSpecStack-InstanceSecurityGroup-JZGN7EHCQ9ON + Enable SSH access via port 22 + vpc-08d9b36f + - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050 + tcp + 80 + 80 + + + + 0.0.0.0/0 + + + - aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050/b40140a0-ba27-11e5-8232-50fae9e50c9a + tcp + 22 + 22 + + + + 0.0.0.0/0 + + + - - - - 200278856672 - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC - EmsRefreshSpec-SecurityGroup-VPC - vpc-ff49ff91 - + -1 @@ -7000,6 +8372,20 @@ http_interactions: + + + aws:cloudformation:stack-name + EmsRefreshSpecStack + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/6f60c460-5fb9-11e6-9cb7-500c28604ce6 + + + aws:cloudformation:logical-id + InstanceSecurityGroup + + 200278856672 @@ -7152,6 +8538,18 @@ http_interactions: + + udp + 19132 + 19132 + + + + 0.0.0.0/0 + + + + @@ -7452,19 +8850,52 @@ http_interactions: 200278856672 - sg-999c6efd - mk_test - MK - vpc-a06de3c5 + sg-999c6efd + mk_test + MK + vpc-a06de3c5 + + + tcp + 22 + 22 + + + + 173.3.23.48/32 + + + + + + + + -1 + + + + 0.0.0.0/0 + + + + + + + + 200278856672 + sg-0d2cd677 + quick-create-1 + quick-create-1 created on Wednesday, August 10, 2016 at 4:16:22 PM UTC+2 + vpc-ff49ff91 tcp - 22 - 22 + 2222 + 2222 - 173.3.23.48/32 + 0.0.0.0/0 @@ -7518,8 +8949,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:40 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:39 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -7532,14 +8963,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145440Z + - 20160811T115239Z X-Amz-Content-Sha256: - 6115b79fae83cedb160ef3bbe412b544ed0aa3d50976870201b26327ba9e090e Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4b9ae39d47aa60899509faf6e7c847db7fe3239864bdd8ccb7fce6bee47c8f61 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e1433a9307bea94ded887a241208cc876eb7ff460cf9aecd21d949d3c5faf5a2 Content-Length: - '51' Accept: @@ -7556,7 +8987,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:40 GMT + - Thu, 11 Aug 2016 11:52:39 GMT Server: - AmazonEC2 body: @@ -7564,115 +8995,250 @@ http_interactions: string: |- - e20656d3-63ff-4eb3-9a1a-4ecc5983cfd3 + 083e6fc4-a717-4c5a-9587-8bc626fe6fda - eni-c25fa49d + eni-a89d6ab2 subnet-16c70477 vpc-ff49ff91 us-east-1d + ELB EmSRefreshSpecVPCELB + 200278856672 + 210368014644 + true + in-use + 0e:c1:02:75:17:3d + 10.0.1.94 + true + + + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + + + + eni-attach-e6cd9132 + amazon-elb + 1 + attached + 2016-08-10T16:04:00.000Z + false + + + 54.84.126.98 + + amazon-elb + + + + + 10.0.1.94 + true + + 54.84.126.98 + + amazon-elb + + + + + + eni-7a907e6a + subnet-f849ff96 + vpc-ff49ff91 + us-east-1e + ELB EmSRefreshSpecVPCELB2 + 200278856672 + 210368014644 + true + in-use + 12:2c:d2:a8:f4:3b + 10.0.0.192 + true + + + sg-0d2cd677 + quick-create-1 + + + + eni-attach-67d5b5ce + amazon-elb + 1 + attached + 2016-08-10T14:20:30.000Z + false + + + 52.22.124.58 + + amazon-elb + + + + + 10.0.0.192 + true + + 52.22.124.58 + + amazon-elb + + + + + + eni-6e6b9b6a + subnet-d4f656a2 + vpc-d7b4c7b3 + us-east-1b 200278856672 false in-use - 0e:ca:1f:16:c0:07 - 10.0.1.170 + 0a:cb:89:f5:d0:af + 10.0.0.121 true - sg-1e2cf271 + sg-e0365199 default - eni-attach-86f7bd6b - i-f0317b40 + eni-attach-649afdb7 + i-6429e7fd 200278856672 0 attached - 2015-12-03T16:53:31.000Z + 2016-08-09T20:00:28.000Z true - 10.0.1.170 + 10.0.0.121 true - eni-324cb76d - subnet-16c70477 - vpc-ff49ff91 - us-east-1d + eni-6025d564 + subnet-d4f656a2 + vpc-d7b4c7b3 + us-east-1b 200278856672 false in-use - 0e:56:b5:d2:75:01 - 10.0.1.64 + 0a:1d:c8:bb:c9:a7 + 10.0.0.173 true - sg-1e2cf271 + sg-e0365199 default - eni-attach-eb1d4806 - i-e04c0650 + eni-attach-2f593efc + i-2707c9be 200278856672 0 attached - 2015-12-03T17:03:46.000Z + 2016-08-09T19:31:31.000Z true - 10.0.1.64 + 10.0.0.173 true - eni-cdc850e7 - subnet-1852bb33 + eni-10351801 + subnet-ac904787 vpc-a06de3c5 us-east-1e - Primary network interface + 200278856672 false in-use - 12:39:69:5b:5c:39 - 10.0.0.202 + 12:d7:e6:bf:bd:09 + 10.0.1.227 true - sg-10362275 - DemoSecurityGroup + sg-24362241 + default - eni-attach-19fc4164 - i-d6b34937 + eni-attach-1909a5b0 + i-5b5704c5 200278856672 0 attached - 2014-11-03T17:07:33.000Z + 2016-08-04T18:35:40.000Z true - 10.0.0.202 + 10.0.1.227 true - eni-ad25f7cc + eni-ee9763f4 + subnet-16c70477 + vpc-ff49ff91 + us-east-1d + ELB EmSRefreshSpecVPCELB2 + 200278856672 + 210368014644 + true + in-use + 0e:6c:77:f6:29:29 + 10.0.1.46 + true + + + sg-0d2cd677 + quick-create-1 + + + + eni-attach-aaeeb37e + amazon-elb + 1 + attached + 2016-08-10T14:18:44.000Z + false + + + 52.20.180.129 + + amazon-elb + + + + + 10.0.1.46 + true + + 52.20.180.129 + + amazon-elb + + + + + + eni-a3902b84 subnet-f849ff96 vpc-ff49ff91 us-east-1e @@ -7680,8 +9246,8 @@ http_interactions: 200278856672 false in-use - 22:d8:dc:13:0c:ca - 10.0.0.254 + 12:80:72:db:8c:81 + 10.0.0.109 true @@ -7690,85 +9256,104 @@ http_interactions: - eni-attach-05fac66f - i-8b5739f2 + eni-attach-12a4c3e2 + i-fb694e66 200278856672 0 attached - 2013-09-23T20:11:52.000Z + 2016-05-10T20:56:37.000Z true - 52.20.255.156 + 54.211.31.92 - 200278856672 - eipalloc-00db5764 - eipassoc-a60bc9dd + amazon - 10.0.0.254 + 10.0.0.109 true - 52.20.255.156 + 54.211.31.92 - 200278856672 - eipalloc-00db5764 - eipassoc-a60bc9dd + amazon - eni-6f153153 - subnet-e88815d5 - vpc-aee2a6ca - us-east-1a - RDSNetworkInterface + eni-fe7282fa + subnet-d4f656a2 + vpc-d7b4c7b3 + us-east-1b + 200278856672 - AIDAJ6DRABHUIWCUBKTGK - true + false in-use - 06:de:59:b9:f4:ed - 172.30.0.162 - ip-172-30-0-162.ec2.internal + 0a:73:0a:c7:35:5f + 10.0.0.77 true - sg-9593cdec - rds-launch-wizard + sg-e0365199 + default - eni-attach-958ef9e4 - 920715386331 - 1 + eni-attach-d18fe802 + i-0012dc99 + 200278856672 + 0 attached - 2016-01-26T15:26:07.000Z - false + 2016-08-09T19:49:59.000Z + true - - 52.71.88.121 - ec2-52-71-88-121.compute-1.amazonaws.com - 920715386331 - - 172.30.0.162 - ip-172-30-0-162.ec2.internal + 10.0.0.77 + true + + + + + eni-fd86a4ec + subnet-ac904787 + vpc-a06de3c5 + us-east-1e + + 200278856672 + false + in-use + 12:57:14:ff:77:51 + 10.0.1.40 + true + + + sg-24362241 + default + + + + eni-attach-30963a99 + i-df005341 + 200278856672 + 0 + attached + 2016-08-04T17:48:30.000Z + true + + + + + 10.0.1.40 true - - 52.71.88.121 - ec2-52-71-88-121.compute-1.amazonaws.com - 920715386331 - - eni-532bef76 + eni-ad25f7cc subnet-f849ff96 vpc-ff49ff91 us-east-1e @@ -7776,8 +9361,8 @@ http_interactions: 200278856672 false in-use - 12:83:d4:90:34:51 - 10.0.0.188 + 22:d8:dc:13:0c:ca + 10.0.0.254 true @@ -7786,87 +9371,179 @@ http_interactions: - eni-attach-11116bef - i-b875a73b + eni-attach-05fac66f + i-8b5739f2 200278856672 0 attached - 2016-03-03T16:39:03.000Z + 2013-09-23T20:11:52.000Z true - 10.0.0.188 + 10.0.0.254 true - eni-932aebcc - subnet-16c70477 - vpc-ff49ff91 - us-east-1d + eni-3f67fd15 + subnet-1852bb33 + vpc-a06de3c5 + us-east-1e + Primary network interface + 200278856672 + false + available + 12:ab:25:25:79:4c + 10.0.0.129 + true + + + sg-24362241 + default + + + + + + 10.0.0.129 + true + + + + + eni-41f50345 + subnet-d4f656a2 + vpc-d7b4c7b3 + us-east-1b 200278856672 false in-use - 0e:b5:55:90:96:47 - 10.0.1.37 + 0a:6a:20:75:ba:e7 + 10.0.0.252 true - sg-1e2cf271 + sg-e0365199 default - eni-attach-0ed687e3 - i-c9f7a679 + eni-attach-c972171a + i-6907c8f0 200278856672 0 attached - 2015-12-04T17:32:52.000Z + 2016-08-09T15:19:51.000Z true - 10.0.1.37 + 10.0.0.252 true - eni-3f67fd15 - subnet-1852bb33 - vpc-a06de3c5 + eni-29977e39 + subnet-f849ff96 + vpc-ff49ff91 us-east-1e - Primary network interface + ELB EmSRefreshSpecVPCELB + 200278856672 + 210368014644 + true + in-use + 12:04:e7:8b:46:3f + 10.0.0.110 + true + + + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + + + + eni-attach-aaf89b03 + amazon-elb + 1 + attached + 2016-08-10T16:04:11.000Z + false + + + 54.172.239.27 + + amazon-elb + + + + + 10.0.0.110 + true + + 54.172.239.27 + + amazon-elb + + + + + + eni-6f153153 + subnet-e88815d5 + vpc-aee2a6ca + us-east-1a + RDSNetworkInterface 200278856672 - false - available - 12:ab:25:25:79:4c - 10.0.0.129 + AIDAJ6DRABHUIWCUBKTGK + true + in-use + 06:de:59:b9:f4:ed + 172.30.0.162 + ip-172-30-0-162.ec2.internal true - sg-24362241 - default + sg-9593cdec + rds-launch-wizard + + eni-attach-958ef9e4 + 920715386331 + 1 + attached + 2016-01-26T15:26:07.000Z + false + + + 52.71.88.121 + ec2-52-71-88-121.compute-1.amazonaws.com + 920715386331 + - 10.0.0.129 + 172.30.0.162 + ip-172-30-0-162.ec2.internal true + + 52.71.88.121 + ec2-52-71-88-121.compute-1.amazonaws.com + 920715386331 + - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:41 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:40 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -7879,14 +9556,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145441Z + - 20160811T115240Z X-Amz-Content-Sha256: - 7371039207d67c4be2f6abbb39dcd980a6861eef125be9b5437a5f5308278f8c Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=055cbf6cf0fc3c24d90a6df078d3de5b48b8578ad7fc0e95ab7f19254e6597e2 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bd82c74ee9ffa01ac8a85cc21b75f31944e5e44ab8643f3e485ec9fc48877ae8 Content-Length: - '43' Accept: @@ -7903,7 +9580,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:41 GMT + - Thu, 11 Aug 2016 11:52:41 GMT Server: - AmazonEC2 body: @@ -7911,10 +9588,264 @@ http_interactions: string: |- - b236a50c-3fde-4eab-a330-da05e1c7d31b + 5de9818d-0c33-4109-838c-19dde7b6d1c2 - r-d09f0c3c + r-d09f0c3c + 200278856672 + + + sg-347f9b5d + default + + + + + i-992f7665 + ami-069b9c6e + + 80 + stopped + + + + User initiated (2015-09-29 13:59:57 GMT) + 0 + + m3.xlarge + 2015-04-28T20:10:29.000Z + + us-east-1d + + default + + + disabled + + + + sg-347f9b5d + default + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-779fdc30 + attached + 2015-04-20T21:29:09.000Z + false + + + + /dev/sdf + + vol-834804c4 + attached + 2015-04-21T13:56:38.000Z + false + + + + hvm + + + + Name + mgf_cfme_raw1 + + + xen + + false + + + + + r-a412fb1a + 200278856672 + + + sg-a2f533b4 + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO-WebServerSecurityGroup-13B5DSBJH0RX0 + + + + + i-94f7cb0a + ami-1b814f72 + + 48 + terminated + + + + User initiated (2016-08-11 11:11:25 GMT) + 0 + + t1.micro + 2016-08-11T10:24:50.000Z + + us-east-1e + + default + + aki-825ea7eb + + disabled + + + + sg-a2f533b4 + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO-WebServerSecurityGroup-13B5DSBJH0RX0 + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + paravirtual + EmsRe-WebSe-1T2W60AQ0GU6C + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-AXA0MAU4HBMO/c6efbd00-5fad-11e6-9718-5044334e0ab3 + + + aws:cloudformation:logical-id + WebServer + + + xen + + false + + + + + r-25e489f1 + 200278856672 + + + + i-6907c8f0 + ami-3f0e495a + + 16 + running + + ip-10-0-0-252.ec2.internal + + + EmsRefreshSpec-KeyPair + 0 + + t2.small + 2016-08-10T14:16:23.000Z + + us-east-1b + + default + + + disabled + + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.252 + true + + + sg-e0365199 + default + + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-7c6f23d1 + attached + 2016-08-09T15:19:51.000Z + false + + + + /dev/sdf + + vol-026f23af + attached + 2016-08-09T15:19:51.000Z + false + + + + hvm + + + + Name + test_billyp + + + xen + + + eni-41f50345 + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:6a:20:75:ba:e7 + 10.0.0.252 + true + + + sg-e0365199 + default + + + + eni-attach-c972171a + 0 + attached + 2016-08-09T15:19:51.000Z + true + + + + 10.0.0.252 + true + + + + + false + + + + + r-a13e1cc5 200278856672 @@ -7924,24 +9855,26 @@ http_interactions: - i-992f7665 - ami-069b9c6e + i-11d74e68 + ami-bda014d4 80 stopped - User initiated (2015-09-29 13:59:57 GMT) + User initiated (2014-11-10 22:42:03 GMT) + miq 0 - m3.xlarge - 2015-04-28T20:10:29.000Z + t1.micro + 2014-11-10T22:33:09.000Z us-east-1d default + aki-08ed0761 disabled @@ -7962,28 +9895,19 @@ http_interactions: /dev/sda1 - vol-779fdc30 - attached - 2015-04-20T21:29:09.000Z - false - - - - /dev/sdf - - vol-834804c4 + vol-55ac8c16 attached - 2015-04-21T13:56:38.000Z - false + 2013-12-05T19:45:25.000Z + true - hvm - + paravirtual + c73b75c8-5de5-11e3-b9a9-005056b25643 Name - mgf_cfme_raw1 + WP_DB_11 xen @@ -7993,42 +9917,41 @@ http_interactions: - r-b4144298 + r-f0bed224 200278856672 - i-d6b34937 - ami-1643ff7e + i-0012dc99 + ami-3f0e495a 80 stopped - ip-10-0-0-202.ec2.internal + ip-10-0-0-77.ec2.internal - User initiated (2015-10-22 09:08:53 GMT) - bd + User initiated (2016-08-10 18:45:13 GMT) + EmsRefreshSpec-KeyPair 0 - t1.micro - 2014-11-03T17:07:33.000Z + t2.small + 2016-08-09T19:49:59.000Z - us-east-1e + us-east-1b default - aki-919dcaf8 disabled - subnet-1852bb33 - vpc-a06de3c5 - 10.0.0.202 + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.77 true - sg-10362275 - DemoSecurityGroup + sg-e0365199 + default @@ -8042,49 +9965,58 @@ http_interactions: /dev/sda1 - vol-0728ef1f + vol-0ceba4a1 attached - 2014-11-03T17:07:35.000Z - true + 2016-08-09T19:50:00.000Z + false + + + + /dev/sdf + + vol-afeaa502 + attached + 2016-08-09T19:50:00.000Z + false - paravirtual - wkgJY1415034452594 + hvm + Name - AWS Config Demo + test_billypa4_alldomains xen - eni-cdc850e7 - subnet-1852bb33 - vpc-a06de3c5 - Primary network interface + eni-fe7282fa + subnet-d4f656a2 + vpc-d7b4c7b3 + 200278856672 in-use - 12:39:69:5b:5c:39 - 10.0.0.202 + 0a:73:0a:c7:35:5f + 10.0.0.77 true - sg-10362275 - DemoSecurityGroup + sg-e0365199 + default - eni-attach-19fc4164 + eni-attach-d18fe802 0 attached - 2014-11-03T17:07:33.000Z + 2016-08-09T19:49:59.000Z true - 10.0.0.202 + 10.0.0.77 true @@ -8095,113 +10027,155 @@ http_interactions: - r-38c0cd5c + r-38bafd9b 200278856672 - - - sg-347f9b5d - default - - + - i-cf7144b4 - ami-edaa1f84 + i-fb694e66 + ami-5769193e 16 running - ip-10-141-134-252.ec2.internal - ec2-174-129-183-120.compute-1.amazonaws.com + ip-10-0-0-109.ec2.internal + - bill + EmsRefreshSpec-KeyPair 0 - m1.small - 2012-08-22T18:33:01.000Z + t1.micro + 2016-08-10T14:52:39.000Z - us-east-1b + us-east-1e default - aki-a71cf9ce - ari-a51cf9cc + aki-1eceaf77 disabled - 10.141.134.252 - 174.129.183.120 + subnet-f849ff96 + vpc-ff49ff91 + 10.0.0.109 + 54.211.31.92 + true - sg-347f9b5d - default + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - - i386 - instance-store - + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-3bc4d1ea + attached + 2016-05-10T20:56:38.000Z + true + + + paravirtual - cd854056-ec87-11e1-853b-005056b25af6 + uBCLe1462913797292 Name - VMWorld_001 + VMstate-8 xen - + + + eni-a3902b84 + subnet-f849ff96 + vpc-ff49ff91 + Primary network interface + 200278856672 + in-use + 12:80:72:db:8c:81 + 10.0.0.109 + true + + + sg-80f755ef + EmsRefreshSpec-SecurityGroup-VPC + + + + eni-attach-12a4c3e2 + 0 + attached + 2016-05-10T20:56:37.000Z + true + + + 54.211.31.92 + + amazon + + + + 10.0.0.109 + true + + 54.211.31.92 + + amazon + + + + + false - r-a13e1cc5 + r-e0bc545e 200278856672 - sg-347f9b5d - default + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE - i-11d74e68 - ami-bda014d4 + i-d7754a49 + ami-1b814f72 - 80 - stopped + 16 + running - - - User initiated (2014-11-10 22:42:03 GMT) - miq + ip-10-235-171-67.ec2.internal + ec2-23-23-39-34.compute-1.amazonaws.com + 0 t1.micro - 2014-11-10T22:33:09.000Z + 2016-08-11T11:48:24.000Z - us-east-1d + us-east-1e default - aki-08ed0761 + aki-825ea7eb disabled + 10.235.171.67 + 23.23.39.34 - sg-347f9b5d - default + sg-8ff13799 + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W-WebServerSecurityGroup-K60KWXZHGJDE - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - x86_64 ebs /dev/sda1 @@ -8209,19 +10183,27 @@ http_interactions: /dev/sda1 - vol-55ac8c16 + vol-3a1d9ae8 attached - 2013-12-05T19:45:25.000Z + 2016-08-11T11:48:24.000Z true paravirtual - c73b75c8-5de5-11e3-b9a9-005056b25643 + EmsRe-WebSe-1K5RORC3NJ425 - Name - WP_DB_11 + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W + + + aws:cloudformation:logical-id + WebServer + + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-110TKGO3S0A6W/72cb3f90-5fb9-11e6-ab2c-50d501eed2b3 xen @@ -8231,7 +10213,7 @@ http_interactions: - r-d3bbe9b5 + r-f126521d 200278856672 @@ -8241,25 +10223,24 @@ http_interactions: - i-1b48f567 - ami-feaa1297 + i-4ff3c9b3 + ami-442c212c 80 stopped - User initiated + User initiated (2015-09-29 13:59:36 GMT) 0 - m1.small - 2013-12-09T16:53:58.000Z + m3.xlarge + 2015-04-28T12:24:48.000Z us-east-1d default - windows disabled @@ -8270,25 +10251,40 @@ http_interactions: - Server.ScheduledStop - Server.ScheduledStop: Stopped due to scheduled retirement + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown - i386 + x86_64 ebs /dev/sda1 /dev/sda1 - vol-3aa3cf47 + vol-a7500ae0 + attached + 2015-04-27T18:35:15.000Z + false + + + + /dev/sdf + + vol-d40b2c93 attached - 2012-10-25T20:00:11.000Z + 2015-04-28T12:23:24.000Z false hvm + + + Name + mgf-cfme-raw2 + + xen false @@ -8296,7 +10292,7 @@ http_interactions: - r-f126521d + r-680669bc 200278856672 @@ -8306,66 +10302,46 @@ http_interactions: - i-4ff3c9b3 - ami-442c212c + i-5ae128c3 + ami-c68639af - 80 - stopped + 16 + running - - - User initiated (2015-09-29 13:59:36 GMT) + ip-10-13-164-217.ec2.internal + ec2-54-90-176-56.compute-1.amazonaws.com + + EmsRefreshSpec-KeyPair 0 - m3.xlarge - 2015-04-28T12:24:48.000Z + m3.medium + 2016-08-09T23:24:54.000Z - us-east-1d + us-east-1b default + aki-825ea7eb disabled + 10.13.164.217 + 54.90.176.56 sg-347f9b5d default - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-a7500ae0 - attached - 2015-04-27T18:35:15.000Z - false - - - - /dev/sdf - - vol-d40b2c93 - attached - 2015-04-28T12:23:24.000Z - false - - - - hvm + instance-store + + paravirtual Name - mgf-cfme-raw2 + test_billydep2_ins1 xen @@ -8375,44 +10351,39 @@ http_interactions: - r-b03f1ed6 + r-c361707c 200278856672 - - - sg-347f9b5d - default - - + - i-10b27f76 - ami-bda014d4 + i-df005341 + ami-3f0e495a 16 running - ip-10-185-241-50.ec2.internal - ec2-54-224-129-8.compute-1.amazonaws.com + ip-10-0-1-40.ec2.internal + - miq 0 - t1.micro - 2014-11-10T23:12:06.000Z + t2.nano + 2016-08-08T21:01:31.000Z - us-east-1d + us-east-1e default - aki-08ed0761 disabled - 10.185.241.50 - 54.224.129.8 + subnet-ac904787 + vpc-a06de3c5 + 10.0.1.40 + true - sg-347f9b5d + sg-24362241 default @@ -8423,23 +10394,63 @@ http_interactions: /dev/sda1 - vol-18e2c55b + vol-275d8bf5 attached - 2013-12-04T19:30:54.000Z - true + 2016-08-04T17:48:30.000Z + false + + + + /dev/sdf + + vol-d05a8c02 + attached + 2016-08-04T17:48:30.000Z + false - paravirtual - 95bdee84-5d1a-11e3-a53a-005056b25643 + hvm + Name - WP_WEB_06 + tina_test_98765 xen - + + + eni-fd86a4ec + subnet-ac904787 + vpc-a06de3c5 + + 200278856672 + in-use + 12:57:14:ff:77:51 + 10.0.1.40 + true + + + sg-24362241 + default + + + + eni-attach-30963a99 + 0 + attached + 2016-08-04T17:48:30.000Z + true + + + + 10.0.1.40 + true + + + + false @@ -8516,83 +10527,6 @@ http_interactions: - - r-ccb40c64 - 200278856672 - - - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 - - - - - i-7c3c64fd - ami-1b814f72 - - 16 - running - - ip-10-235-71-156.ec2.internal - ec2-54-205-48-36.compute-1.amazonaws.com - - 0 - - t1.micro - 2016-01-13T18:59:55.000Z - - us-east-1e - - default - - aki-825ea7eb - - disabled - - 10.235.71.156 - 54.205.48.36 - - - sg-2a0e0840 - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I-WebServerSecurityGroup-13RL8S2C6ZWI1 - - - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-47b4ce9b - attached - 2016-01-13T18:59:58.000Z - true - - - - paravirtual - EmsRe-WebSe-1TVAHOVOGE1MO - - - aws:cloudformation:logical-id - WebServer - - - aws:cloudformation:stack-id - arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I/bff036f0-ba27-11e5-b4be-500c5242948e - - - aws:cloudformation:stack-name - EmsRefreshSpec-JoeV-050-WebServerInstance-1KRT71SKWBZ1I - - - xen - - false - - - r-1842f370 200278856672 @@ -8612,7 +10546,7 @@ http_interactions: 0 t1.micro - 2013-09-23T20:11:52.000Z + 2016-08-10T15:34:32.000Z us-east-1e @@ -8625,7 +10559,6 @@ http_interactions: subnet-f849ff96 vpc-ff49ff91 10.0.0.254 - 52.20.255.156 true @@ -8633,10 +10566,6 @@ http_interactions: EmsRefreshSpec-SecurityGroup-VPC - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - x86_64 ebs /dev/sda1 @@ -8684,20 +10613,10 @@ http_interactions: 2013-09-23T20:11:52.000Z true - - 52.20.255.156 - - 200278856672 - 10.0.0.254 true - - 52.20.255.156 - - 200278856672 - @@ -8707,32 +10626,31 @@ http_interactions: - r-37ab0a50 + r-5254bdec 200278856672 - sg-347f9b5d - default + sg-c2f036d4 + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR-WebServerSecurityGroup-1PSV38L1SCT7M - i-06359e7c - ami-67bc0b0e + i-1b91ad85 + ami-1b814f72 - 80 - stopped + 48 + terminated - User initiated (2012-10-11 18:45:53 GMT) - rpo + User initiated (2016-08-11 11:42:28 GMT) 0 - m1.large - 2012-10-10T17:51:21.000Z + t1.micro + 2016-08-11T11:34:03.000Z - us-east-1b + us-east-1e default @@ -8742,8 +10660,8 @@ http_interactions: - sg-347f9b5d - default + sg-c2f036d4 + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR-WebServerSecurityGroup-1PSV38L1SCT7M @@ -8753,23 +10671,21 @@ http_interactions: x86_64 ebs /dev/sda1 - - - /dev/sda1 - - vol-109ff86b - attached - 2012-09-05T00:27:47.000Z - true - - - + paravirtual - tgwIr1346804863504 + EmsRe-WebSe-BC7ADYZ6OR13 - Name - rpo-dev + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR/719a2480-5fb7-11e6-9a6e-500c219ab02a + + + aws:cloudformation:logical-id + WebServer + + + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-IJSOWY9EJGKR xen @@ -8779,7 +10695,7 @@ http_interactions: - r-aafdabcc + r-37ab0a50 200278856672 @@ -8789,26 +10705,26 @@ http_interactions: - i-3345e45e - ami-bda014d4 + i-06359e7c + ami-67bc0b0e 80 stopped - User initiated (2014-11-10 23:18:44 GMT) - miq + User initiated (2012-10-11 18:45:53 GMT) + rpo 0 - t1.micro - 2014-11-10T23:12:06.000Z + m1.large + 2012-10-10T17:51:21.000Z - us-east-1d + us-east-1b default - aki-08ed0761 + aki-825ea7eb disabled @@ -8819,78 +10735,9 @@ http_interactions: - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-61d3dd21 - attached - 2013-08-25T06:37:30.000Z - true - - - - paravirtual - cf083db2-0d50-11e3-b315-005056b25643 - - - Name - WP_DB_05 - - - blah - blah - - - xen - - false - - - - - r-33dbd7cc - 200278856672 - - - - i-c9f7a679 - ami-3f0e495a - - 16 - running - - ip-10-0-1-37.ec2.internal - - - 0 - - t2.medium - 2015-12-04T17:32:52.000Z - - us-east-1d - - default - - - disabled - - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.37 - true - - - sg-1e2cf271 - default - - + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + x86_64 ebs /dev/sda1 @@ -8898,98 +10745,71 @@ http_interactions: /dev/sda1 - vol-e79f211a - attached - 2015-12-04T17:32:56.000Z - false - - - - /dev/sdf - - vol-fa9f2107 + vol-109ff86b attached - 2015-12-04T17:32:56.000Z - false + 2012-09-05T00:27:47.000Z + true - hvm - 59f22211-5893-4216-a349-146c3608ca29 - xen - + paravirtual + tgwIr1346804863504 + - eni-932aebcc - subnet-16c70477 - vpc-ff49ff91 - - 200278856672 - in-use - 0e:b5:55:90:96:47 - 10.0.1.37 - true - - - sg-1e2cf271 - default - - - - eni-attach-0ed687e3 - 0 - attached - 2015-12-04T17:32:52.000Z - true - - - - 10.0.1.37 - true - - + Name + rpo-dev - + + xen + false - r-814f4c7e + r-aafdabcc 200278856672 - + + + sg-347f9b5d + default + + - i-e04c0650 - ami-3f0e495a + i-3345e45e + ami-bda014d4 - 16 - running + 80 + stopped - ip-10-0-1-64.ec2.internal + - + User initiated (2014-11-10 23:18:44 GMT) + miq 0 - t2.medium - 2015-12-03T17:03:46.000Z + t1.micro + 2014-11-10T23:12:06.000Z us-east-1d default + aki-08ed0761 disabled - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.64 - true - sg-1e2cf271 + sg-347f9b5d default + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + x86_64 ebs /dev/sda1 @@ -8997,57 +10817,27 @@ http_interactions: /dev/sda1 - vol-c2ca793f + vol-61d3dd21 attached - 2015-12-03T17:03:54.000Z - false + 2013-08-25T06:37:30.000Z + true + + paravirtual + cf083db2-0d50-11e3-b315-005056b25643 + - /dev/sdf - - vol-87ca797a - attached - 2015-12-03T17:03:54.000Z - false - + Name + WP_DB_05 - - hvm - 3a7873de-03f1-4652-a93c-f0b182e8baac - xen - - eni-324cb76d - subnet-16c70477 - vpc-ff49ff91 - - 200278856672 - in-use - 0e:56:b5:d2:75:01 - 10.0.1.64 - true - - - sg-1e2cf271 - default - - - - eni-attach-eb1d4806 - 0 - attached - 2015-12-03T17:03:46.000Z - true - - - - 10.0.1.64 - true - - + blah + blah - + + xen + false @@ -9335,17 +11125,195 @@ http_interactions: Name - EmsRefreshSpec-PoweredOn-Basic3 + EmsRefreshSpec-PoweredOn-Basic3 + + + xen + + false + + + + + r-cb9b18b2 + 200278856672 + + + sg-347f9b5d + default + + + + + i-6eed600f + ami-bda014d4 + + 80 + stopped + + + + User initiated (2014-11-10 22:42:03 GMT) + miq + 0 + + t1.micro + 2014-11-10T22:33:09.000Z + + us-east-1d + + default + + aki-08ed0761 + + disabled + + + + sg-347f9b5d + default + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-63d3dd23 + attached + 2013-08-25T06:37:32.000Z + true + + + + paravirtual + d0032394-0d50-11e3-b315-005056b25643 + + + Name + WP_WEB_03 + + + xen + + false + + + + + r-2fb6dafb + 200278856672 + + + + i-6429e7fd + ami-3f0e495a + + 16 + running + + ip-10-0-0-121.ec2.internal + + + EmsRefreshSpec-KeyPair + 0 + + t2.small + 2016-08-09T20:00:28.000Z + + us-east-1b + + default + + + disabled + + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.121 + true + + + sg-e0365199 + default + + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-eefab543 + attached + 2016-08-09T20:00:29.000Z + false + + + + /dev/sdf + + vol-a6fab50b + attached + 2016-08-09T20:00:29.000Z + false + + + + hvm + + + + Name + test_billypa5_somedomains xen - + + + eni-6e6b9b6a + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:cb:89:f5:d0:af + 10.0.0.121 + true + + + sg-e0365199 + default + + + + eni-attach-649afdb7 + 0 + attached + 2016-08-09T20:00:28.000Z + true + + + + 10.0.0.121 + true + + + + false - r-cb9b18b2 + r-a1d047c4 200278856672 @@ -9355,7 +11323,7 @@ http_interactions: - i-6eed600f + i-ca216ba3 ami-bda014d4 80 @@ -9395,19 +11363,19 @@ http_interactions: /dev/sda1 - vol-63d3dd23 + vol-27a9a367 attached - 2013-08-25T06:37:32.000Z + 2013-08-27T21:30:52.000Z true paravirtual - d0032394-0d50-11e3-b315-005056b25643 + f056a092-0f5f-11e3-bb5b-005056b25643 Name - WP_WEB_03 + WP_WEB_04 xen @@ -9417,7 +11385,7 @@ http_interactions: - r-a1d047c4 + r-6e927dd0 200278856672 @@ -9427,61 +11395,42 @@ http_interactions: - i-ca216ba3 - ami-bda014d4 + i-6e6a59f0 + ami-edaa1f84 - 80 - stopped + 16 + running - - - User initiated (2014-11-10 22:42:03 GMT) - miq + ip-10-65-143-252.ec2.internal + ec2-54-205-250-118.compute-1.amazonaws.com + 0 - t1.micro - 2014-11-10T22:33:09.000Z + m1.small + 2016-08-10T20:10:33.000Z - us-east-1d + us-east-1e default - aki-08ed0761 + aki-a71cf9ce + ari-a51cf9cc disabled + 10.65.143.252 + 54.205.250.118 sg-347f9b5d default - - Client.UserInitiatedShutdown - Client.UserInitiatedShutdown: User initiated shutdown - - x86_64 - ebs - /dev/sda1 - - - /dev/sda1 - - vol-27a9a367 - attached - 2013-08-27T21:30:52.000Z - true - - - + i386 + instance-store + paravirtual - f056a092-0f5f-11e3-bb5b-005056b25643 - - - Name - WP_WEB_04 - - + xen false @@ -9489,43 +11438,41 @@ http_interactions: - r-293e9d81 + r-f3a8c427 200278856672 - - - sg-038e8a69 - EmsRefreshSpec-SecurityGroup1 - - + - i-6eeb97ef - ami-5769193e + i-2707c9be + ami-3f0e495a 80 stopped - + ip-10-0-0-173.ec2.internal - User initiated (2016-01-08 16:51:08 GMT) + User initiated (2016-08-09 20:32:44 GMT) EmsRefreshSpec-KeyPair 0 - t1.micro - 2016-01-08T15:09:18.000Z + t2.small + 2016-08-09T19:31:31.000Z - us-east-1e + us-east-1b default - aki-1eceaf77 disabled + subnet-d4f656a2 + vpc-d7b4c7b3 + 10.0.0.173 + true - sg-038e8a69 - EmsRefreshSpec-SecurityGroup1 + sg-e0365199 + default @@ -9539,65 +11486,105 @@ http_interactions: /dev/sda1 - vol-1aa43ec6 + vol-acc48b01 attached - 2016-01-08T15:09:22.000Z - true + 2016-08-09T19:31:31.000Z + false + + + + /dev/sdf + + vol-40c58aed + attached + 2016-08-09T19:31:31.000Z + false - paravirtual - HZSda1452265758158 + hvm + Name - EmsRefreshSpec-PoweredOff + test_billypa3_retry xen - + + + eni-6025d564 + subnet-d4f656a2 + vpc-d7b4c7b3 + + 200278856672 + in-use + 0a:1d:c8:bb:c9:a7 + 10.0.0.173 + true + + + sg-e0365199 + default + + + + eni-attach-2f593efc + 0 + attached + 2016-08-09T19:31:31.000Z + true + + + + 10.0.0.173 + true + + + + false - r-24473643 + r-293e9d81 200278856672 - sg-347f9b5d - default + sg-038e8a69 + EmsRefreshSpec-SecurityGroup1 - i-343f714f - ami-bda014d4 + i-6eeb97ef + ami-5769193e 80 stopped - User initiated (2014-11-10 22:42:03 GMT) - miq + User initiated (2016-01-08 16:51:08 GMT) + EmsRefreshSpec-KeyPair 0 t1.micro - 2014-11-10T22:33:09.000Z + 2016-01-08T15:09:18.000Z - us-east-1d + us-east-1e default - aki-08ed0761 + aki-1eceaf77 disabled - sg-347f9b5d - default + sg-038e8a69 + EmsRefreshSpec-SecurityGroup1 @@ -9611,19 +11598,19 @@ http_interactions: /dev/sda1 - vol-fce2c5bf + vol-1aa43ec6 attached - 2013-12-04T19:30:54.000Z + 2016-01-08T15:09:22.000Z true paravirtual - 950afb80-5d1a-11e3-b781-005056b25643 + HZSda1452265758158 Name - WP_DB_10 + EmsRefreshSpec-PoweredOff xen @@ -9633,39 +11620,39 @@ http_interactions: - r-9146456e + r-f8091847 200278856672 - i-f0317b40 + i-5b5704c5 ami-3f0e495a 16 running - ip-10-0-1-170.ec2.internal + ip-10-0-1-227.ec2.internal 0 - t2.medium - 2015-12-03T16:53:31.000Z + t2.nano + 2016-08-08T21:01:31.000Z - us-east-1d + us-east-1e default disabled - subnet-16c70477 - vpc-ff49ff91 - 10.0.1.170 + subnet-ac904787 + vpc-a06de3c5 + 10.0.1.227 true - sg-1e2cf271 + sg-24362241 default @@ -9676,57 +11663,135 @@ http_interactions: /dev/sda1 - vol-fbdd6e06 + vol-718554a3 attached - 2015-12-03T16:53:34.000Z + 2016-08-04T18:35:40.000Z false /dev/sdf - vol-d8dd6e25 + vol-dc84550e attached - 2015-12-03T16:53:34.000Z + 2016-08-04T18:35:40.000Z false hvm - edbcf1b6-bec7-496c-8024-b1c8687fa551 + + + + Name + tina_check_for_blank + + xen - eni-c25fa49d - subnet-16c70477 - vpc-ff49ff91 + eni-10351801 + subnet-ac904787 + vpc-a06de3c5 200278856672 in-use - 0e:ca:1f:16:c0:07 - 10.0.1.170 + 12:d7:e6:bf:bd:09 + 10.0.1.227 true - sg-1e2cf271 + sg-24362241 default - eni-attach-86f7bd6b + eni-attach-1909a5b0 0 attached - 2015-12-03T16:53:31.000Z + 2016-08-04T18:35:40.000Z + true + + + + 10.0.1.227 + true + + + + + false + + + + + r-24473643 + 200278856672 + + + sg-347f9b5d + default + + + + + i-343f714f + ami-bda014d4 + + 80 + stopped + + + + User initiated (2014-11-10 22:42:03 GMT) + miq + 0 + + t1.micro + 2014-11-10T22:33:09.000Z + + us-east-1d + + default + + aki-08ed0761 + + disabled + + + + sg-347f9b5d + default + + + + Client.UserInitiatedShutdown + Client.UserInitiatedShutdown: User initiated shutdown + + x86_64 + ebs + /dev/sda1 + + + /dev/sda1 + + vol-fce2c5bf + attached + 2013-12-04T19:30:54.000Z true - - - - 10.0.1.170 - true - - + - + + paravirtual + 950afb80-5d1a-11e3-b781-005056b25643 + + + Name + WP_DB_10 + + + xen + false @@ -9884,42 +11949,42 @@ http_interactions: - r-42ae1ae9 + r-494ba2f7 200278856672 - + + + sg-0bfe381d + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7-WebServerSecurityGroup-KIGDZD6UNWBN + + - i-b875a73b - ami-5769193e + i-40b488de + ami-1b814f72 - 80 - stopped + 48 + terminated - ip-10-0-0-188.ec2.internal + - User initiated (2016-03-14 18:30:00 GMT) - EmsRefreshSpec-KeyPair + User initiated (2016-08-11 11:23:32 GMT) 0 t1.micro - 2016-03-03T16:39:03.000Z + 2016-08-11T11:15:34.000Z us-east-1e default - aki-1eceaf77 + aki-825ea7eb disabled - subnet-f849ff96 - vpc-ff49ff91 - 10.0.0.188 - true - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC + sg-0bfe381d + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7-WebServerSecurityGroup-KIGDZD6UNWBN @@ -9929,58 +11994,25 @@ http_interactions: x86_64 ebs /dev/sda1 - - - /dev/sda1 - - vol-97b75449 - attached - 2016-03-03T16:39:03.000Z - true - - - + paravirtual - YhvEZ1457023142321 + EmsRe-WebSe-KD7L7O6S3NCZ - Name - VMState-5 + aws:cloudformation:stack-name + EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7 - - xen - - eni-532bef76 - subnet-f849ff96 - vpc-ff49ff91 - Primary network interface - 200278856672 - in-use - 12:83:d4:90:34:51 - 10.0.0.188 - true - - - sg-80f755ef - EmsRefreshSpec-SecurityGroup-VPC - - - - eni-attach-11116bef - 0 - attached - 2016-03-03T16:39:03.000Z - true - - - - 10.0.0.188 - true - - + aws:cloudformation:logical-id + WebServer - + + aws:cloudformation:stack-id + arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1W13XPBOPPOS7/dd00ada0-5fb4-11e6-b975-50d5ca6e60ae + + + xen + false @@ -10058,8 +12090,412 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:42 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:44 GMT +- request: + method: post + uri: https://elasticloadbalancing.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeLoadBalancers&Version=2012-06-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115244Z + X-Amz-Content-Sha256: + - 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/elasticloadbalancing/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3bd0a4abc5fe97103a30da61e4cd3e2130532a25dab9cb84589cac4eecdc2814 + Content-Length: + - '47' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 1e17f12a-5fba-11e6-ac8e-c1411d3bb0d6 + Content-Type: + - text/xml + Content-Length: + - '6548' + Vary: + - Accept-Encoding + Date: + - Thu, 11 Aug 2016 11:52:45 GMT + body: + encoding: UTF-8 + string: | + + + + + Z3DZXE0Q79N41H + internet-facing + + + i-680071e9 + + + + + + + + + us-east-1b + us-east-1e + + EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com + + + amazon-elb + amazon-elb-sg + + EmsRefreshSpec-LoadBalancer + + + + 80 + HTTP + HTTP + 80 + + + + + + 2 + 30 + 10 + 5 + TCP:22 + + 2013-08-09T14:53:25.760Z + + + EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com + + + vpc-ff49ff91 + Z35SXDOTRQ7X7K + internet-facing + + + i-8b5739f2 + + + i-fb694e66 + + + + + + + + + us-east-1d + us-east-1e + + EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com + + + 200278856672 + EmsRefreshSpec-SecurityGroup-VPC + + EmSRefreshSpecVPCELB + + + + 80 + HTTP + HTTP + 80 + + + + + + 22 + TCP + TCP + 22 + + + + + + 2 + 30 + 10 + 5 + HTTP:80/index.html + + 2016-08-09T08:16:14.340Z + + subnet-16c70477 + subnet-f849ff96 + + + sg-80f755ef + + EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com + + + vpc-ff49ff91 + Z35SXDOTRQ7X7K + internet-facing + + + i-fb694e66 + + + i-8b5739f2 + + + + + + + + + us-east-1d + us-east-1e + + EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com + + + 200278856672 + quick-create-1 + + EmSRefreshSpecVPCELB2 + + + + 22 + TCP + TCP + 2222 + + + + + + 2 + 30 + 10 + 5 + TCP:22 + + 2016-08-10T14:17:09.810Z + + subnet-16c70477 + subnet-f849ff96 + + + sg-0d2cd677 + + EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com + + + + + 1e17f12a-5fba-11e6-ac8e-c1411d3bb0d6 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:45 GMT +- request: + method: post + uri: https://elasticloadbalancing.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefreshSpec-LoadBalancer&Version=2012-06-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115245Z + X-Amz-Content-Sha256: + - 3af90022526a6f5460a9813c88cc0b96b9ad472999bfeedaccd286147e93047b + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/elasticloadbalancing/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e6e664577e52775e3f76b37899c6e432ea90ed444d8b54460076c595dcab6afd + Content-Length: + - '93' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 1eba99d0-5fba-11e6-bbb3-3dc69463d17a + Content-Type: + - text/xml + Content-Length: + - '629' + Date: + - Thu, 11 Aug 2016 11:52:45 GMT + body: + encoding: UTF-8 + string: | + + + + + Instance has failed at least the UnhealthyThreshold number of health checks consecutively. + i-680071e9 + Instance + OutOfService + + + + + 1eba99d0-5fba-11e6-bbb3-3dc69463d17a + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:46 GMT +- request: + method: post + uri: https://elasticloadbalancing.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeInstanceHealth&LoadBalancerName=EmSRefreshSpecVPCELB&Version=2012-06-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115246Z + X-Amz-Content-Sha256: + - e3ca7eaa1d39176b50c00e34e89f3aaf68b84ce556b8e5b1d9242affcccfd5d4 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/elasticloadbalancing/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f9c29e6f5848f845d73ce0e9aa0a6ed606bfe18e0f8f17f691303eb4b9f7e35b + Content-Length: + - '86' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 1f20d558-5fba-11e6-8db4-9f2624c936a8 + Content-Type: + - text/xml + Content-Length: + - '908' + Date: + - Thu, 11 Aug 2016 11:52:46 GMT + body: + encoding: UTF-8 + string: | + + + + + Instance has failed at least the UnhealthyThreshold number of health checks consecutively. + i-8b5739f2 + Instance + OutOfService + + + Instance has failed at least the UnhealthyThreshold number of health checks consecutively. + i-fb694e66 + Instance + OutOfService + + + + + 1f20d558-5fba-11e6-8db4-9f2624c936a8 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:47 GMT +- request: + method: post + uri: https://elasticloadbalancing.us-east-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeInstanceHealth&LoadBalancerName=EmSRefreshSpecVPCELB2&Version=2012-06-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115247Z + X-Amz-Content-Sha256: + - 906dd8e8fc282f77d697b9b88544cfc4963e06d223e5d72254f984144f015d1f + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/elasticloadbalancing/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a37b597a3666658246ff20e35b3d65feee592613a0ee7e0ff3145bbd0e5e6fab + Content-Length: + - '87' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 1f9a2490-5fba-11e6-9638-fdc9fb293d01 + Content-Type: + - text/xml + Content-Length: + - '908' + Date: + - Thu, 11 Aug 2016 11:52:47 GMT + body: + encoding: UTF-8 + string: | + + + + + Instance has failed at least the UnhealthyThreshold number of health checks consecutively. + i-fb694e66 + Instance + OutOfService + + + Instance has failed at least the UnhealthyThreshold number of health checks consecutively. + i-8b5739f2 + Instance + OutOfService + + + + + 1f9a2490-5fba-11e6-9638-fdc9fb293d01 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:48 GMT - request: method: post uri: https://ec2.us-east-1.amazonaws.com/ @@ -10072,14 +12508,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T145442Z + - 20160811T115248Z X-Amz-Content-Sha256: - cba832a809fc0e56970fb7d5d4c2af46b662447e1a253b1f00e6f29b3c4d32a6 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-east-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=28003d466ab88a381e717f1013ddba8f72db10a656413d4f7b228d351680825a + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-east-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=52cd112c49393bca83e3ef2993cc3727582bb312f5d998846700a60993f85b24 Content-Length: - '43' Accept: @@ -10096,7 +12532,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 14:54:41 GMT + - Thu, 11 Aug 2016 11:52:48 GMT Server: - AmazonEC2 body: @@ -10104,7 +12540,7 @@ http_interactions: string: |- - 486a2b0f-a197-48ea-a957-d2393a5f8d1d + 4db94562-93d0-4052-a72a-7a940c39ba69 54.221.202.53 @@ -10117,18 +12553,13 @@ http_interactions: - 52.20.255.156 - eipalloc-00db5764 + 54.208.119.197 + eipalloc-ce53d7a0 vpc - i-8b5739f2 - eipassoc-a60bc9dd - eni-ad25f7cc - 200278856672 - 10.0.0.254 - 54.208.119.197 - eipalloc-ce53d7a0 + 54.80.134.186 + eipalloc-9b6d09a7 vpc @@ -10138,6 +12569,6 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 14:54:42 GMT -recorded_with: VCR 2.9.3 + http_version: + recorded_at: Thu, 11 Aug 2016 11:52:49 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_other_region.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_other_region.yml index ebf03c9d5..e968f5dc2 100644 --- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_other_region.yml +++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_other_region.yml @@ -12,14 +12,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154820Z + - 20160811T115315Z X-Amz-Content-Sha256: - dec1bb222552f9578a07c806de7c1c653ed3fd14da0ef675ec9cd74d81b06cfc Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=71a6055f7c80999f01d7f577404e28b1d7e8d3e876d9191f1f2fb27604297094 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f7ae13de28b517db93863fd6ae298c7efae17b5cb5e3113fc12d340b13fe0843 Content-Length: - '51' Accept: @@ -36,7 +36,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:20 GMT + - Thu, 11 Aug 2016 11:53:15 GMT Server: - AmazonEC2 body: @@ -44,7 +44,7 @@ http_interactions: string: |- - c3c09e39-4f46-4c89-a4a6-f157e681b3fc + 097363bd-a4c3-4b84-9704-bde437eb9428 us-west-1a @@ -66,8 +66,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:20 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:16 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -80,14 +80,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154821Z + - 20160811T115316Z X-Amz-Content-Sha256: - 66676a7bdb3a8a280e5eed4b7ed4e94012acf2afdb1d9c984590b64fca8c7e08 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7701383a67c8fe0f4255dc31b1f66f0bb6eeeb8108626beca9d4e9cafce76b65 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=32da24f2b0392f76a44bf56fb7dec40c20f16ed19ed6267479c1529cbc8fcf6e Content-Length: - '42' Accept: @@ -104,7 +104,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:20 GMT + - Thu, 11 Aug 2016 11:53:16 GMT Server: - AmazonEC2 body: @@ -112,7 +112,7 @@ http_interactions: string: |- - 81382ee6-7ee7-442c-b26b-7e2738ef7b06 + 8eb54aee-dc95-40d0-8d85-9d753ef54e19 EmsRefreshSpec-KeyPair-OtherRegion @@ -124,8 +124,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:21 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:17 GMT - request: method: post uri: https://cloudformation.us-west-1.amazonaws.com/ @@ -138,14 +138,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154821Z + - 20160811T115317Z X-Amz-Content-Sha256: - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=27a8769a2d9c4352eaf69cdf759e3583f5b5bfdc51ae47e7408403ce44e752d5 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=01b5df9f3254f367ea6fadffd671b62796187a87251b52f532e2d6ed5ff4db47 Content-Length: - '40' Accept: @@ -156,26 +156,228 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - aa917522-f5c5-11e5-b8e7-79fd52f1ebbf + - 31ed4dd1-5fba-11e6-aaa2-d78f745ea8b8 Content-Type: - text/xml Content-Length: - - '283' + - '1089' Date: - - Tue, 29 Mar 2016 15:48:22 GMT + - Thu, 11 Aug 2016 11:53:18 GMT body: encoding: UTF-8 string: | - + + + 2016-05-11T22:19:44.800Z + + arn:aws:cloudformation:us-west-1:200278856672:stack/amazon-stack/76f1cb60-17c6-11e6-9f78-50fae8e994c6 + amazon-stack + Create an EC2 instance running the Amazon Linux 32 bit AMI. + CREATE_FAILED + true + + + + KeyPair + userkey + + + The following resource(s) failed to create: [Ec2Instance]. + + - aa917522-f5c5-11e5-b8e7-79fd52f1ebbf + 31ed4dd1-5fba-11e6-aaa2-d78f745ea8b8 - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:22 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:18 GMT +- request: + method: post + uri: https://cloudformation.us-west-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=amazon-stack&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115318Z + X-Amz-Content-Sha256: + - 0c8d598d2e5766b697d0d75a26d8948a20d2024ffc81a9734cd2514d3364c8ec + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f12797a31f49b9e82a8fe920219ecc0c2e6dee4c8aa53f82dd53f3e83078054d + Content-Length: + - '63' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 32bb4caf-5fba-11e6-9fbf-f9ec3117e642 + Content-Type: + - text/xml + Content-Length: + - '1089' + Date: + - Thu, 11 Aug 2016 11:53:19 GMT + body: + encoding: UTF-8 + string: | + + + + + 2016-05-11T22:19:44.800Z + + arn:aws:cloudformation:us-west-1:200278856672:stack/amazon-stack/76f1cb60-17c6-11e6-9f78-50fae8e994c6 + amazon-stack + Create an EC2 instance running the Amazon Linux 32 bit AMI. + CREATE_FAILED + true + + The following resource(s) failed to create: [Ec2Instance]. + + + KeyPair + userkey + + + + + + + 32bb4caf-5fba-11e6-9fbf-f9ec3117e642 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:20 GMT +- request: + method: post + uri: https://cloudformation.us-west-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=ListStackResources&StackName=amazon-stack&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115320Z + X-Amz-Content-Sha256: + - 85a54e3e0a7c9936f57c63c184a405c51cb647ed0f64c4923ab4b94f2922da80 + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6289d0df509c534528497647767292c315e719c7078daed9ce0ecc07a1377998 + Content-Length: + - '67' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 33560516-5fba-11e6-9fbf-f9ec3117e642 + Content-Type: + - text/xml + Content-Length: + - '721' + Date: + - Thu, 11 Aug 2016 11:53:20 GMT + body: + encoding: UTF-8 + string: | + + + + + 2016-05-11T22:19:49.350Z + CREATE_FAILED + The image id '[ami-3b355a52]' does not exist + Ec2Instance + AWS::EC2::Instance + + + + + 33560516-5fba-11e6-9fbf-f9ec3117e642 + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:21 GMT +- request: + method: post + uri: https://cloudformation.us-west-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=GetTemplate&StackName=amazon-stack&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115321Z + X-Amz-Content-Sha256: + - 6169c9a55ba899f203c94ac5b1dd72aeaf62b62117f36772583ae818d4c7f6dc + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4e29b3fae9fc91791ac9bc7cc5f46c071e7fc44e270ecf9ae4c9da04938b01b1 + Content-Length: + - '60' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 34118dde-5fba-11e6-b575-1bc9af970b1c + Content-Type: + - text/xml + Content-Length: + - '1356' + Date: + - Thu, 11 Aug 2016 11:53:22 GMT + body: + encoding: UTF-8 + string: "\n + \ \n {\n\n "Description" + : "Create an EC2 instance running the Amazon Linux 32 bit AMI.",\n\n + \ "Parameters" : {\n\n "KeyPair" : {\n\n "Description" + : "The EC2 Key Pair to allow SSH access to the instance",\n\n "Type" + : "String"\n\n }\n\n },\n\n "Resources" : + {\n\n "Ec2Instance" : {\n\n "Type" : + "AWS::EC2::Instance",\n\n "Properties" : {\n\n + \ "KeyName" : { "Ref" : "KeyPair" + },\n\n "ImageId" : "ami-3b355a52"\n\n }\n\n + \ }\n\n },\n\n "Outputs" : {\n\n "InstanceId" + : {\n\n "Description" : "The InstanceId of the newly + created EC2 instance",\n\n "Value" : {\n\n "Ref" + : "Ec2Instance"\n\n }\n\n }\n\n },\n\n "AWSTemplateFormatVersion" + : "2010-09-09"\n\n} \n\n \n + \ \n 34118dde-5fba-11e6-b575-1bc9af970b1c\n + \ \n\n" + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:22 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -188,14 +390,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154822Z + - 20160811T115322Z X-Amz-Content-Sha256: - db79e4df9ed35f35cf42da7e91827cb59b4430f397d1929fe355e7bab80b4ef4 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=872cf74233fa97faa7d225072493fd6befd7d8daffc45f56ff05b8b8e0705403 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e11b3367dc5d7712d0941938f7548c00c5228adc26cc046e461d009e4210195d Content-Length: - '103' Accept: @@ -212,7 +414,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:22 GMT + - Thu, 11 Aug 2016 11:53:24 GMT Server: - AmazonEC2 body: @@ -220,7 +422,7 @@ http_interactions: string: |- - 4d048b8b-a244-49c3-955b-db2bd25facc0 + a99d24d1-e029-4b0e-b3ab-511db757a30e ami-183e175d @@ -253,8 +455,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:23 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:24 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -267,14 +469,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154823Z + - 20160811T115324Z X-Amz-Content-Sha256: - 34dd15684d07734af76cde941bbcfffd303ae00976e67a37171e2c65350a75bd Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ad6c297b2820daa3241ee361558cf556b17668a569bc326f04bbb1e3da58bb04 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f490189f8b85df18e74ea4551db78222929af8d45284884e15a06e40aacff4fa Content-Length: - '110' Accept: @@ -291,7 +493,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:23 GMT + - Thu, 11 Aug 2016 11:53:24 GMT Server: - AmazonEC2 body: @@ -299,11 +501,11 @@ http_interactions: string: |- - 3061dd7e-a611-4087-bea2-f6ae508ffa7a + be8db7af-9527-4a77-88fe-1694601d6f8f - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:23 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:25 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -316,14 +518,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154823Z + - 20160811T115325Z X-Amz-Content-Sha256: - 7371039207d67c4be2f6abbb39dcd980a6861eef125be9b5437a5f5308278f8c Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=69d5a416e278d635a5ef03dd2bbb65690b953426b22c7cba906d1a5ff07daaae + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c9ac3849b20f6b8df9430096e2ccd5b26c29d6542892c78e5ce0ad465b4a93c2 Content-Length: - '43' Accept: @@ -340,7 +542,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:23 GMT + - Thu, 11 Aug 2016 11:53:25 GMT Server: - AmazonEC2 body: @@ -348,7 +550,7 @@ http_interactions: string: |- - 97428ef1-709b-4be6-9ab1-78ac6cbba374 + d430d939-1bc0-44cb-bdbc-ec4a6d6f875d r-18afd25e @@ -489,8 +691,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:24 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:26 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -503,14 +705,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154827Z + - 20160811T115328Z X-Amz-Content-Sha256: - 9f20d995ddde903a6362496508f3ff1338be9f93bab47b71d552e0e5be8111cd Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bd3af484215177fd0135c5ee90d155eb4f9c82165e85a36c00aa645d2cfb0c06 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c54767e030cced55dea0e64e0bc7a5c19f9b52d6cae61f6577f567edfb3666f2 Content-Length: - '38' Accept: @@ -527,7 +729,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:28 GMT + - Thu, 11 Aug 2016 11:53:30 GMT Server: - AmazonEC2 body: @@ -535,11 +737,11 @@ http_interactions: string: |- - 6fc6a281-eea8-45da-948f-c365991fe1f9 + 2fba797a-768c-415e-9794-3f78d91c1889 - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:28 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:30 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -552,14 +754,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154828Z + - 20160811T115330Z X-Amz-Content-Sha256: - 106f344e853e62716912efa6fa6279cc6adda200c0e144a1c1e3545e1cf48590 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5aa10fbed838000c53c896c9a517b61fd14be24ce907911b9715dd5b854ed500 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=843ab57df584460892b8d65587ea1346dfb8f5c19fee9c856d39e445da6af520 Content-Length: - '48' Accept: @@ -576,7 +778,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:29 GMT + - Thu, 11 Aug 2016 11:53:31 GMT Server: - AmazonEC2 body: @@ -584,7 +786,7 @@ http_interactions: string: |- - 8ada530b-6d2e-460b-b80b-daae20490531 + 3ed2b5d5-9e72-4ed6-b71a-42b89f514957 200278856672 @@ -660,8 +862,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:29 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:31 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -674,14 +876,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154829Z + - 20160811T115331Z X-Amz-Content-Sha256: - 106f344e853e62716912efa6fa6279cc6adda200c0e144a1c1e3545e1cf48590 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=dcb97c1547d39d257ec32a7797ee21eb2ede07034c33c60ce82f3f535e9429aa + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ad03d3ae1d6dd0d8e6959e3d894897428fc458d079dd4fbb999fa636c3cc65a4 Content-Length: - '48' Accept: @@ -698,7 +900,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:29 GMT + - Thu, 11 Aug 2016 11:53:32 GMT Server: - AmazonEC2 body: @@ -706,7 +908,7 @@ http_interactions: string: |- - bb0970b9-2897-4c97-aad1-200d2cc26db1 + 882e7cfb-ca82-4d1a-91d2-70f1052138f4 200278856672 @@ -782,8 +984,8 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:30 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:32 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -796,14 +998,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154830Z + - 20160811T115332Z X-Amz-Content-Sha256: - 6115b79fae83cedb160ef3bbe412b544ed0aa3d50976870201b26327ba9e090e Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=927ad1607fcb140e3209e8f46f93c603da5b72b73a5f759f142aa03cdbeba1a5 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0e302d50b1d61baad62873ca3b61ca83365aacd0fb2caabffd7961db2a9ea917 Content-Length: - '51' Accept: @@ -820,7 +1022,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:30 GMT + - Thu, 11 Aug 2016 11:53:33 GMT Server: - AmazonEC2 body: @@ -828,11 +1030,11 @@ http_interactions: string: |- - cdc2a4ec-771a-43d0-9af5-0b622096ed1d + 71898215-f7f8-44d4-a206-42faa33cacc7 - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:30 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:33 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -845,14 +1047,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154830Z + - 20160811T115333Z X-Amz-Content-Sha256: - 7371039207d67c4be2f6abbb39dcd980a6861eef125be9b5437a5f5308278f8c Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5c0277cd5f1c70296d40a992a1a1f5bd2a4107e7bc7ae341248c771e4266e195 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=061424146da66906ad6c3f079e3952254eb1caf2df84df2f1fdb9d33d59207ec Content-Length: - '43' Accept: @@ -869,7 +1071,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:30 GMT + - Thu, 11 Aug 2016 11:53:34 GMT Server: - AmazonEC2 body: @@ -877,7 +1079,7 @@ http_interactions: string: |- - 00d72f89-0f6a-4664-b68e-1932b22081db + 60485af1-0399-4fbf-bd12-fe68ce28eb8b r-18afd25e @@ -1018,8 +1220,58 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:31 GMT + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:35 GMT +- request: + method: post + uri: https://elasticloadbalancing.us-west-1.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeLoadBalancers&Version=2012-06-01 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources + X-Amz-Date: + - 20160811T115335Z + X-Amz-Content-Sha256: + - 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a + Authorization: + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/elasticloadbalancing/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=55502d081594efd322fca31fb2e662aa6361984b074e248ef130a38afbd47ceb + Content-Length: + - '47' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 3c3ff952-5fba-11e6-a607-012b3196bafb + Content-Type: + - text/xml + Content-Length: + - '335' + Date: + - Thu, 11 Aug 2016 11:53:35 GMT + body: + encoding: UTF-8 + string: | + + + + + + 3c3ff952-5fba-11e6-a607-012b3196bafb + + + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:36 GMT - request: method: post uri: https://ec2.us-west-1.amazonaws.com/ @@ -1032,14 +1284,14 @@ http_interactions: Accept-Encoding: - '' User-Agent: - - aws-sdk-ruby2/2.2.29 ruby/2.2.3 x86_64-linux resources + - aws-sdk-ruby2/2.2.37 ruby/2.3.0 x86_64-linux resources X-Amz-Date: - - 20160329T154831Z + - 20160811T115336Z X-Amz-Content-Sha256: - cba832a809fc0e56970fb7d5d4c2af46b662447e1a253b1f00e6f29b3c4d32a6 Authorization: - - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160329/us-west-1/ec2/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=075026ef39245dcbc843dc9ecb5668591c1e4f665fc87e4d41711c7225c19299 + - AWS4-HMAC-SHA256 Credential=0123456789ABCDEFGHIJ/20160811/us-west-1/ec2/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c65676a2dd9b51dcc49e292551b46098d78c63df33fede7f8376e16c863b4c43 Content-Length: - '43' Accept: @@ -1056,7 +1308,7 @@ http_interactions: Vary: - Accept-Encoding Date: - - Tue, 29 Mar 2016 15:48:32 GMT + - Thu, 11 Aug 2016 11:53:36 GMT Server: - AmazonEC2 body: @@ -1064,7 +1316,7 @@ http_interactions: string: |- - c41030e1-4e02-4757-9d36-e26edb8775ac + 02e0381e-ccc7-4b53-8cc6-6ba6f551d9d3 54.215.0.230 @@ -1073,6 +1325,6 @@ http_interactions: - http_version: - recorded_at: Tue, 29 Mar 2016 15:48:32 GMT -recorded_with: VCR 2.9.3 + http_version: + recorded_at: Thu, 11 Aug 2016 11:53:37 GMT +recorded_with: VCR 3.0.3