diff --git a/app/models/manageiq/providers/amazon/cloud_manager/service_instance.rb b/app/models/manageiq/providers/amazon/cloud_manager/service_instance.rb
new file mode 100644
index 000000000..d3cbd8116
--- /dev/null
+++ b/app/models/manageiq/providers/amazon/cloud_manager/service_instance.rb
@@ -0,0 +1,2 @@
+class ManageIQ::Providers::Amazon::CloudManager::ServiceInstance < ::ServiceInstance
+end
diff --git a/app/models/manageiq/providers/amazon/cloud_manager/service_offering.rb b/app/models/manageiq/providers/amazon/cloud_manager/service_offering.rb
new file mode 100644
index 000000000..46b6f34dd
--- /dev/null
+++ b/app/models/manageiq/providers/amazon/cloud_manager/service_offering.rb
@@ -0,0 +1,2 @@
+class ManageIQ::Providers::Amazon::CloudManager::ServiceOffering < ::ServiceOffering
+end
diff --git a/app/models/manageiq/providers/amazon/cloud_manager/service_parameters_set.rb b/app/models/manageiq/providers/amazon/cloud_manager/service_parameters_set.rb
new file mode 100644
index 000000000..511a9bb2c
--- /dev/null
+++ b/app/models/manageiq/providers/amazon/cloud_manager/service_parameters_set.rb
@@ -0,0 +1,2 @@
+class ManageIQ::Providers::Amazon::CloudManager::ServiceParametersSet < ::ServiceParametersSet
+end
diff --git a/app/models/manageiq/providers/amazon/inventory/collector.rb b/app/models/manageiq/providers/amazon/inventory/collector.rb
index add9da5c3..3bebd76ce 100644
--- a/app/models/manageiq/providers/amazon/inventory/collector.rb
+++ b/app/models/manageiq/providers/amazon/inventory/collector.rb
@@ -68,6 +68,10 @@ def aws_cloud_formation
@aws_cloud_formation ||= manager.connect(:service => :CloudFormation)
end
+ def aws_service_catalog
+ @aws_service_catalog ||= manager.connect(:service => :ServiceCatalog)
+ end
+
def aws_elb
@aws_elb ||= manager.connect(:service => :ElasticLoadBalancing)
end
diff --git a/app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb b/app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb
index 0e7e07295..8ec6109c0 100644
--- a/app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb
+++ b/app/models/manageiq/providers/amazon/inventory/collector/cloud_manager.rb
@@ -68,6 +68,56 @@ def stack_template(stack_name)
aws_cloud_formation.client.get_template(:stack_name => stack_name).template_body
end
+ def service_offerings
+ aws_service_catalog.client.search_products_as_admin.product_view_details
+ rescue => _e
+ # TODO(lsmola) do not pollute log for now, since ServiceCatalog is not officially supported
+ # _log.warn("Couldn't fetch 'search_products_as_admin' of service catalog, message: #{e.message}")
+ []
+ end
+
+ def service_instances
+ aws_service_catalog.client.scan_provisioned_products.provisioned_products
+ rescue => _e
+ # TODO(lsmola) do not pollute log for now, since ServiceCatalog is not officially supported
+ # _log.warn("Couldn't fetch 'provisioned_products' of service catalog, message: #{e.message}")
+ []
+ end
+
+ def service_parameters_sets(product_id)
+ # TODO(lsmola) too many API calls, we need to do it in multiple threads
+
+ # Taking provisioning_artifacts of described product returns only active artifacts, doing list_provisioning_artifacts
+ # we are not able to recognize the active ones. Same with describe_product_as_admin, status is missing. Status is
+ # in the describe_provisioning_artifact, but it is wrong (always ACTIVE)
+ artifacts = aws_service_catalog.client.describe_product(:id => product_id).provisioning_artifacts
+ launch_paths = aws_service_catalog.client.list_launch_paths(:product_id => product_id).launch_path_summaries
+ parameters_sets = []
+
+ launch_paths.each do |launch_path|
+ artifacts.each do |artifact|
+ parameter_set = {:artifact => artifact, :launch_path => launch_path}
+ parameter_set[:provisioning_parameters] = aws_service_catalog.client.describe_provisioning_parameters(
+ :product_id => product_id,
+ :provisioning_artifact_id => artifact.id,
+ :path_id => launch_path.id
+ )
+ parameters_sets << parameter_set
+ end
+ end
+ parameters_sets
+ rescue => e
+ _log.warn("Couldn't fetch 'describe_provisioning_parameters' of service catalog, message: #{e.message}")
+ []
+ end
+
+ def describe_record(record_id)
+ aws_service_catalog.client.describe_record(:id => record_id)
+ rescue => e
+ _log.warn("Couldn't fetch 'describe_record' of service catalog, message: #{e.message}")
+ nil
+ end
+
private
def extra_image_references
diff --git a/app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb b/app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb
index 658dd6ec6..87c4d971d 100644
--- a/app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb
+++ b/app/models/manageiq/providers/amazon/inventory/collector/target_collection.rb
@@ -202,6 +202,16 @@ def stack_template(stack_name)
""
end
+ def service_offerings
+ # TODO(lsmola) targeted refresh for service catalog items
+ []
+ end
+
+ def service_instances
+ # TODO(lsmola) targeted refresh for service catalog items
+ []
+ end
+
private
def parse_targets!
diff --git a/app/models/manageiq/providers/amazon/inventory/parser/cloud_manager.rb b/app/models/manageiq/providers/amazon/inventory/parser/cloud_manager.rb
index fcbd24f1d..9392e051c 100644
--- a/app/models/manageiq/providers/amazon/inventory/parser/cloud_manager.rb
+++ b/app/models/manageiq/providers/amazon/inventory/parser/cloud_manager.rb
@@ -17,6 +17,8 @@ def parse
public_images if collector.options.get_public_images
referenced_images
instances
+ service_offerings
+ service_instances
$aws_log.info("#{log_header}...Complete")
end
@@ -342,4 +344,72 @@ def key_pairs
)
end
end
+
+ def service_offerings
+ collector.service_offerings.each do |service_offering|
+ persister_service_offering = persister.service_offerings.build(
+ :name => service_offering.product_view_summary.name,
+ :ems_ref => service_offering.product_view_summary.product_id,
+ :extra => {
+ :product_view_summary => service_offering.product_view_summary,
+ :status => service_offering.status,
+ :product_arn => service_offering.product_arn,
+ :created_time => service_offering.created_time,
+ }
+ )
+
+ service_parameters_sets(persister_service_offering)
+ end
+ end
+
+ def service_parameters_sets(persister_service_offering)
+ collector.service_parameters_sets(persister_service_offering.ems_ref).each do |service_parameters_set|
+ launch_path = service_parameters_set[:launch_path]
+ artifact = service_parameters_set[:artifact]
+ ems_ref = "#{persister_service_offering.ems_ref}__#{artifact.id}__#{launch_path.id}"
+
+ persister.service_parameters_sets.build(
+ :name => "#{persister_service_offering.name} #{artifact.name} #{launch_path.name}",
+ :ems_ref => ems_ref,
+ :service_offering => persister_service_offering,
+ :extra => {
+ :artifact => artifact,
+ :launch_path => launch_path,
+ :provisioning_artifact_parameters => service_parameters_set[:provisioning_parameters].provisioning_artifact_parameters,
+ :constraint_summaries => service_parameters_set[:provisioning_parameters].constraint_summaries,
+ :usage_instructions => service_parameters_set[:provisioning_parameters].usage_instructions,
+ }
+ )
+ end
+ end
+
+ def service_instances
+ # TODO(lsmola) a link to orchestration stack is in last_record_outputs
+
+ collector.service_instances.each do |service_instance|
+ described_record = collector.describe_record(service_instance.last_record_id)
+ described_record_detail = described_record&.record_detail
+ described_record_outputs = described_record&.record_outputs
+ service_parameters_sets_uuid = "#{described_record_detail.product_id}__#{described_record_detail.provisioning_artifact_id}"\
+ "__#{described_record_detail.path_id}"
+
+ persister.service_instances.build(
+ :name => service_instance.name,
+ :ems_ref => service_instance.id,
+ :service_offering => persister.service_offerings.lazy_find(described_record_detail&.product_id),
+ :service_parameters_set => persister.service_parameters_sets.lazy_find(service_parameters_sets_uuid),
+ :extra => {
+ :arn => service_instance.arn,
+ :type => service_instance.type,
+ :status => service_instance.status,
+ :status_message => service_instance.status_message,
+ :created_time => service_instance.created_time,
+ :idempotency_token => service_instance.idempotency_token,
+ :last_record_id => service_instance.last_record_id,
+ :last_record_detail => described_record_detail,
+ :last_record_outputs => described_record_outputs,
+ }
+ )
+ end
+ end
end
diff --git a/app/models/manageiq/providers/amazon/inventory/persister/definitions/cloud_collections.rb b/app/models/manageiq/providers/amazon/inventory/persister/definitions/cloud_collections.rb
index b88ea013a..6c2c22e9a 100644
--- a/app/models/manageiq/providers/amazon/inventory/persister/definitions/cloud_collections.rb
+++ b/app/models/manageiq/providers/amazon/inventory/persister/definitions/cloud_collections.rb
@@ -9,7 +9,10 @@ def initialize_cloud_inventory_collections
operating_systems
vm_and_template_labels
vm_and_template_taggings
- vms).each do |name|
+ vms
+ service_instances
+ service_offerings
+ service_parameters_sets).each do |name|
add_collection(cloud, name)
end
diff --git a/spec/models/manageiq/providers/amazon/aws_refresher_spec_common.rb b/spec/models/manageiq/providers/amazon/aws_refresher_spec_common.rb
index 3cd2ac9a0..4641cbec4 100644
--- a/spec/models/manageiq/providers/amazon/aws_refresher_spec_common.rb
+++ b/spec/models/manageiq/providers/amazon/aws_refresher_spec_common.rb
@@ -57,7 +57,7 @@ def stub_refresh_settings(settings)
end
def assert_common
- expect(@ems.direct_orchestration_stacks.size).to eql(3)
+ expect(@ems.direct_orchestration_stacks.size).to eql(7)
assert_specific_flavor
assert_specific_az
assert_specific_key_pair
@@ -84,6 +84,11 @@ def assert_common
assert_network_router
assert_relationship_tree
assert_specific_labels_on_vm
+
+ if options.inventory_object_refresh
+ assert_specific_service_offering
+ assert_specific_service_instance
+ end
end
def assert_specific_flavor
@@ -198,7 +203,7 @@ def assert_vpc_subnet_2
def assert_specific_cloud_network
assert_vpc
- expect(@cn.cloud_subnets.size).to eq(2)
+ expect(@cn.cloud_subnets.size).to eq(3)
assert_vpc_subnet_1
assert_vpc_subnet_2
end
@@ -280,7 +285,7 @@ def assert_specific_template
:product_name => "linux_generic",
)
)
- expect(@template.custom_attributes.size).to eq(0)
+ expect(@template.custom_attributes.size).to eq(1)
expect(@template.snapshots.size).to eq(0)
expect(@template.hardware).to have_attributes(
@@ -593,14 +598,14 @@ def assert_specific_vm_powered_off
).first
expect(v).to have_attributes(
:template => false,
- :ems_ref => "i-047886b9fd2397967",
+ :ems_ref => "i-0e1752ff841801f65",
:ems_ref_obj => nil,
- :uid_ems => "i-047886b9fd2397967",
+ :uid_ems => "i-0e1752ff841801f65",
:vendor => "amazon",
:power_state => "off",
:location => "unknown",
:tools_status => nil,
- :boot_time => Time.zone.parse("2017-09-26 07:48:52.000000000 +0000"),
+ :boot_time => Time.zone.parse("2018-09-03 12:10:36.000000000 +0000"),
:standby_action => nil,
:connection_state => nil,
:cpu_affinity => nil,
@@ -670,7 +675,7 @@ def assert_specific_vm_powered_off
)
expect(v.hardware.disks.size).to eq(1) # TODO: Change to a flavor that has disks
- expect(v.cloud_volumes.pluck(:name, :volume_type)).to match_array([["vol-0c2aaf810c8925376", "gp2"]])
+ expect(v.cloud_volumes.pluck(:name, :volume_type)).to match_array([["vol-076672a9b80ac2e25", "gp2"]])
expect(v.hardware.guest_devices.size).to eq(0)
expect(v.hardware.nics.size).to eq(0)
expect(v.hardware.networks.size).to eq(0)
@@ -1041,11 +1046,11 @@ def assert_specific_load_balancer_vpc
end
def assert_specific_load_balancer_vpc_relations
- expect(@elb.vms.count).to eq 2
- expect(@elb.load_balancer_pool_members.count).to eq 2
+ expect(@elb.vms.count).to eq 1
+ expect(@elb.load_balancer_pool_members.count).to eq 1
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.collect(&:name)).to match_array ["EmsRefreshSpec-PoweredOn-VPC"]
expect(@elb.cloud_subnets.map(&:name)).to(match_array(["EmsRefreshSpec-Subnet1", "EmsRefreshSpec-Subnet2"]))
end
@@ -1211,12 +1216,12 @@ def assert_specific_load_balancer_health_checks_vpc_and_vpc_2
"type" => "ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerHealthCheck"
)
- expect(health_check_1.load_balancer_pool_members.count).to eq 2
+ expect(health_check_1.load_balancer_pool_members.count).to eq 1
expect(health_check_1.load_balancer_pool_members).to match_array health_check_2.load_balancer_pool_members
expect(health_check_1.load_balancer_pool_members.collect(&:type)).to(
match_array(
- ["ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPoolMember"] * 2
+ ["ManageIQ::Providers::Amazon::NetworkManager::LoadBalancerPoolMember"] * 1
)
)
expect(health_check_1.vms).to match_array health_check_2.vms
@@ -1339,7 +1344,7 @@ def assert_specific_orchestration_stack_outputs
end
def assert_specific_orchestration_stack_associations
- @orch_stack_vm = Vm.where(:name => "i-0bca58e6e540ddc39").first
+ @orch_stack_vm = Vm.where(:ems_ref => "i-0bca58e6e540ddc39").first
@orch_stack_floating_ip = @orch_stack_vm.floating_ips.first
@parent_stack_sg = @orch_stack_vm.security_groups.first
@parent_stack_vpc = @orch_stack_vm.cloud_networks.first
@@ -1422,11 +1427,11 @@ def assert_relationship_tree
end
def assert_specific_labels_on_vm
- vm = ManageIQ::Providers::Amazon::CloudManager::Vm.find_by(:name => "ladas_test_5")
+ vm = ManageIQ::Providers::Amazon::CloudManager::Vm.find_by(:name => "EmsRefreshSpec-PoweredOn-Basic3")
expect(vm.labels).to include(
an_object_having_attributes(
- :name => "EmsRefreshSpecResourceGroupTag",
- :value => "EmsRefreshSpecResourceGroupTagValue",
+ :name => "owner",
+ :value => "UNKNOWN",
:source => "amazon"
)
)
@@ -1464,4 +1469,307 @@ def assert_mapped_tags_on_template
expect(template.tags.first.category).to eq(@image_tag_mapping_category)
expect(template.tags.first.classification.description).to eq("suse-11-server-64")
end
+
+ def assert_specific_service_offering
+ @service_offering_with_no_portfolio = ServiceOffering.find_by(:name => "EmsRefreshSpecProductWithNoPortfolio")
+ expect(@service_offering_with_no_portfolio).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecProductWithNoPortfolio",
+ "ems_ref" => "prod-4v6rc4hwaiiha",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceOffering",
+ "description" => nil,
+ "ems_id" => @ems.id,
+ "extra" => {
+ "status" => "CREATED",
+ "product_arn" => "arn:aws:catalog:us-east-1:200278856672:product/prod-4v6rc4hwaiiha",
+ "created_time" => format_time("2018-09-04T16:27:59.000+02:00"),
+ "product_view_summary" => {
+ "id" => "prodview-mojlvmp5xax74",
+ "name" => "EmsRefreshSpecProductWithNoPortfolio",
+ "type" => "CLOUD_FORMATION_TEMPLATE",
+ "owner" => "EmsRefreshSpecProductWithNoPortfolioOwner",
+ "product_id" => "prod-4v6rc4hwaiiha",
+ "distributor" => "",
+ "support_url" => nil,
+ "support_email" => nil,
+ "has_default_path" => false,
+ "short_description" => "EmsRefreshSpecProductWithNoPortfolio desc",
+ "support_description" => nil
+ }
+ },
+ "deleted_on" => nil,
+ )
+ )
+ @service_offering_with_two_portfolios = ServiceOffering.find_by(:name => "EmsRefreshSpecProduct")
+ expect(@service_offering_with_two_portfolios).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecProduct",
+ "ems_ref" => "prod-h7p6ruq5qgrga",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceOffering",
+ "description" => nil,
+ "ems_id" => @ems.id,
+ "extra" => {
+ "status" => "CREATED",
+ "product_arn" => "arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga",
+ "created_time" => format_time("2018-09-04T11:00:13.000+02:00"),
+ "product_view_summary" => {
+ "id" => "prodview-j3n5gqatjrkk2",
+ "name" => "EmsRefreshSpecProduct",
+ "type" => "CLOUD_FORMATION_TEMPLATE",
+ "owner" => "EmsRefreshSpecOwner",
+ "product_id" => "prod-h7p6ruq5qgrga",
+ "distributor" => "EmsRefreshSpecVendor",
+ "support_url" => "http://EmsRefreshSpec.com",
+ "support_email" => "EmsRefreshSpec@test.com",
+ "has_default_path" => false,
+ "short_description" => "EmsRefreshSpecProduct description",
+ "support_description" => "EmsRefreshSpec desc"
+ }
+ },
+ "deleted_on" => nil,
+ )
+ )
+
+ @service_offering_with_rules = ServiceOffering.find_by(:name => "EmsRefreshSpecProductWithRules")
+ expect(@service_offering_with_rules).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecProductWithRules",
+ "ems_ref" => "prod-cei2spnzu24lq",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceOffering",
+ "description" => nil,
+ "ems_id" => @ems.id,
+ "extra" => {
+ "status" => "CREATED",
+ "product_arn" => "arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq",
+ "created_time" => format_time("2018-09-04T15:23:06.000+02:00"),
+ "product_view_summary" => {
+ "id" => "prodview-as7h736moeyrc",
+ "name" => "EmsRefreshSpecProductWithRules",
+ "type" => "CLOUD_FORMATION_TEMPLATE",
+ "owner" => "EmsRefreshSpecProductWithRulesowner",
+ "product_id" => "prod-cei2spnzu24lq",
+ "distributor" => "EmsRefreshSpecProductWithRulesVendor",
+ "support_url" => nil,
+ "support_email" => nil,
+ "has_default_path" => false,
+ "short_description" => "EmsRefreshSpecProductWithRules desc",
+ "support_description" => nil
+ }
+ },
+ "deleted_on" => nil,
+ )
+ )
+
+ assert_service_parameters_sets
+ end
+
+ def assert_service_parameters_sets
+ expect(@service_offering_with_no_portfolio.service_parameters_sets.size).to eq 0
+ expect(@service_offering_with_two_portfolios.service_parameters_sets.pluck(:name, :ems_ref)).to(
+ contain_exactly(
+ ["EmsRefreshSpecProduct v2 EmsRefreshSpecPortfolio", "prod-h7p6ruq5qgrga__pa-nr3ua3nz3pgwq__lp-e76ssfhze5jyi"],
+ ["EmsRefreshSpecProduct v3 EmsRefreshSpecPortfolio", "prod-h7p6ruq5qgrga__pa-ysaib55ylta6k__lp-e76ssfhze5jyi"],
+ ["EmsRefreshSpecProduct v2 EmsRefreshSpecPortfolio2", "prod-h7p6ruq5qgrga__pa-nr3ua3nz3pgwq__lp-rb5sy6f5vyrdk"],
+ ["EmsRefreshSpecProduct v3 EmsRefreshSpecPortfolio2", "prod-h7p6ruq5qgrga__pa-ysaib55ylta6k__lp-rb5sy6f5vyrdk"],
+ )
+ )
+
+ expect(@service_offering_with_rules.service_parameters_sets.pluck(:name, :ems_ref)).to(
+ contain_exactly(
+ ["EmsRefreshSpecProductWithRules v1.1 EmsRefreshSpecPortfolio2", "prod-cei2spnzu24lq__pa-ybnrerfyrhm74__lp-jg4ob2tnq4pg2"]
+ )
+ )
+ end
+
+ def assert_specific_service_instance
+ # There is no admin view, we need to provision the product using the VCR account:
+ # Assign admin rights temporarily and run:
+ # aws_service_catalog.client.provision_product(:product_id => "prod-h7p6ruq5qgrga", :provisioned_product_name => "EmsRefreshSpecServiceInstanceV3", :provisioning_artifact_id => "pa-ysaib55ylta6k", :path_id => "lp-e76ssfhze5jyi",:provisioning_parameters => [{:key => "InstanceType", :value => "t1.micro"}, {:key => "KeyName", :value => "EmsRefreshSpec-KeyPair"}])
+ # aws_service_catalog.client.provision_product(:product_id => "prod-h7p6ruq5qgrga", :provisioned_product_name => "EmsRefreshSpecServiceInstance", :provisioning_artifact_id => "pa-nr3ua3nz3pgwq", :path_id => "lp-rb5sy6f5vyrdk", :provisioning_parameters => [{:key => "InstanceType", :value => "t1.micro"}, {:key => "KeyName", :value => "EmsRefreshSpec-KeyPair"}])
+ # aws_service_catalog.client.provision_product(:product_id => "prod-cei2spnzu24lq", :provisioned_product_name => "EmsRefreshSpecServiceInstanceWithRules", :provisioning_artifact_id => "pa-ybnrerfyrhm74", :path_id => "lp-jg4ob2tnq4pg2", :provisioning_parameters => [{:key => "InstanceType", :value => "t1.micro"}, {:key => "KeyName", :value => "EmsRefreshSpec-KeyPair"}, {:key => "Environment", :value => "test"}])
+ @service_instance_with_rules = ServiceInstance.find_by(:name => "EmsRefreshSpecServiceInstanceWithRules")
+ expect(@service_instance_with_rules).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecServiceInstanceWithRules",
+ "ems_ref" => "pp-5pyltbgyzheqm",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceInstance",
+ "ems_id" => @ems.id,
+ "service_offering_id" => @service_offering_with_rules.id,
+ "service_parameters_set_id" => service_parameter_set(@service_instance_with_rules).id,
+ "extra" => {
+ "arn" => "arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstanceWithRules/pp-5pyltbgyzheqm",
+ "type" => "CFN_STACK",
+ "status" => "AVAILABLE",
+ "created_time" => format_time("2018-09-04T15:38:38.933+02:00"),
+ "last_record_id" => "rec-li62bnn6bnza4",
+ "status_message" => nil,
+ "idempotency_token" => "39489a07-f013-4e49-a061-11360db7664c",
+ "last_record_detail" => {
+ "status" => "SUCCEEDED",
+ "path_id" => "lp-jg4ob2tnq4pg2",
+ "record_id" => "rec-li62bnn6bnza4",
+ "product_id" => "prod-cei2spnzu24lq",
+ "record_tags" => [
+ {
+ "key" => "aws:servicecatalog:productArn",
+ "value" => "arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq"
+ }, {
+ "key" => "aws:servicecatalog:provisioningPrincipalArn",
+ "value" => "arn:aws:iam::200278856672:user/VCR"
+ }, {
+ "key" => "aws:servicecatalog:portfolioArn",
+ "value" => "arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m"
+ }
+ ],
+ "record_type" => "PROVISION_PRODUCT",
+ "created_time" => format_time("2018-09-04T15:38:38.937+02:00"),
+ "updated_time" => format_time("2018-09-04T15:41:31.778+02:00"),
+ "record_errors" => [],
+ "provisioned_product_id" => "pp-5pyltbgyzheqm",
+ "provisioned_product_name" => "EmsRefreshSpecServiceInstanceWithRules",
+ "provisioned_product_type" => "CFN_STACK",
+ "provisioning_artifact_id" => "pa-ybnrerfyrhm74"
+ },
+ "last_record_outputs" => [
+ {
+ "output_key" => "CloudformationStackARN",
+ "description" => "The ARN of the launched Cloudformation Stack",
+ "output_value" => "arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35"
+ }, {
+ "output_key" => "URL",
+ "description" => "URL of the website",
+ "output_value" => "http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com"
+ }
+ ]
+ },
+ "deleted_on" => nil,
+ )
+ )
+
+ @service_instance_v3 = ServiceInstance.find_by(:name => "EmsRefreshSpecServiceInstanceV3")
+ expect(@service_instance_v3).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecServiceInstanceV3",
+ "ems_ref" => "pp-u2tepcnttldko",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceInstance",
+ "ems_id" => @ems.id,
+ "service_offering_id" => @service_offering_with_two_portfolios.id,
+ "service_parameters_set_id" => service_parameter_set(@service_instance_v3).id,
+ "extra" => {
+ "arn" =>
+ "arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstanceV3/pp-u2tepcnttldko",
+ "type" => "CFN_STACK",
+ "status" => "AVAILABLE",
+ "created_time" => format_time("2018-09-06T10:18:51.782+02:00"),
+ "last_record_id" => "rec-coaoipufhru7e",
+ "status_message" => nil,
+ "idempotency_token" => "c4de373d-fc6b-45ac-a7d0-760b6be25756",
+ "last_record_detail" => {
+ "status" => "SUCCEEDED",
+ "path_id" => "lp-e76ssfhze5jyi",
+ "record_id" => "rec-coaoipufhru7e",
+ "product_id" => "prod-h7p6ruq5qgrga",
+ "record_tags" => [
+ {"key" => "aws:servicecatalog:productArn",
+ "value" =>
+ "arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga"},
+ {"key" => "aws:servicecatalog:provisioningPrincipalArn",
+ "value" => "arn:aws:iam::200278856672:user/VCR"},
+ {"key" => "aws:servicecatalog:portfolioArn",
+ "value" =>
+ "arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk"}
+ ],
+ "record_type" => "PROVISION_PRODUCT",
+ "created_time" => format_time("2018-09-06T10:18:51.789+02:00"),
+ "updated_time" => format_time("2018-09-06T10:22:08.309+02:00"),
+ "record_errors" => [],
+ "provisioned_product_id" => "pp-u2tepcnttldko",
+ "provisioned_product_name" => "EmsRefreshSpecServiceInstanceV3",
+ "provisioned_product_type" => "CFN_STACK",
+ "provisioning_artifact_id" => "pa-ysaib55ylta6k"
+ },
+ "last_record_outputs" => [
+ {"output_key" => "CloudformationStackARN",
+ "description" => "The ARN of the launched Cloudformation Stack",
+ "output_value" =>
+ "arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2"},
+ {"output_key" => "URL",
+ "description" => "URL of the website",
+ "output_value" =>
+ "http://SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com"}
+ ]
+ },
+ "deleted_on" => nil,
+ )
+ )
+
+ @service_instance = ServiceInstance.find_by(:name => "EmsRefreshSpecServiceInstance")
+ expect(@service_instance).to(
+ have_attributes(
+ "name" => "EmsRefreshSpecServiceInstance",
+ "ems_ref" => "pp-gato4drzgerpy",
+ "type" => "ManageIQ::Providers::Amazon::CloudManager::ServiceInstance",
+ "ems_id" => @ems.id,
+ "service_offering_id" => @service_offering_with_two_portfolios.id,
+ "service_parameters_set_id" => service_parameter_set(@service_instance).id,
+ "extra" => {
+ "arn" =>
+ "arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstance/pp-gato4drzgerpy",
+ "type" => "CFN_STACK",
+ "status" => "AVAILABLE",
+ "created_time" => format_time("2018-09-06T10:19:14.188+02:00"),
+ "last_record_id" => "rec-txbigs6rk7vlc",
+ "status_message" => nil,
+ "idempotency_token" => "bd5ea4d0-de72-45be-a28b-2bfe9ae8e509",
+ "last_record_detail" => {
+ "status" => "SUCCEEDED",
+ "path_id" => "lp-rb5sy6f5vyrdk",
+ "record_id" => "rec-txbigs6rk7vlc",
+ "product_id" => "prod-h7p6ruq5qgrga",
+ "record_tags" => [
+ {"key" => "aws:servicecatalog:productArn",
+ "value" =>
+ "arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga"},
+ {"key" => "aws:servicecatalog:provisioningPrincipalArn",
+ "value" => "arn:aws:iam::200278856672:user/VCR"},
+ {"key" => "aws:servicecatalog:portfolioArn",
+ "value" =>
+ "arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m"}
+ ],
+ "record_type" => "PROVISION_PRODUCT",
+ "created_time" => format_time("2018-09-06T10:19:14.197+02:00"),
+ "updated_time" => format_time("2018-09-06T10:22:54.450+02:00"),
+ "record_errors" => [],
+ "provisioned_product_id" => "pp-gato4drzgerpy",
+ "provisioned_product_name" => "EmsRefreshSpecServiceInstance",
+ "provisioned_product_type" => "CFN_STACK",
+ "provisioning_artifact_id" => "pa-nr3ua3nz3pgwq"
+ },
+ "last_record_outputs" => [
+ {"output_key" => "CloudformationStackARN",
+ "description" => "The ARN of the launched Cloudformation Stack",
+ "output_value" =>
+ "arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35"},
+ {"output_key" => "URL",
+ "description" => "URL of the website",
+ "output_value" =>
+ "http://SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com"}
+ ]
+ },
+ "deleted_on" => nil,
+ )
+ )
+ end
+
+ def service_parameter_set(record)
+ rec_detail = record.extra["last_record_detail"]
+
+ ServiceParametersSet.find_by(
+ :ems_ref => "#{rec_detail["product_id"]}__#{rec_detail["provisioning_artifact_id"]}__#{rec_detail["path_id"]}"
+ )
+ end
+
+ def format_time(time)
+ Time.parse(time).localtime.iso8601(3)
+ end
end
diff --git a/spec/models/manageiq/providers/amazon/aws_refresher_spec_counts.rb b/spec/models/manageiq/providers/amazon/aws_refresher_spec_counts.rb
index c4825cbf8..23e639de1 100644
--- a/spec/models/manageiq/providers/amazon/aws_refresher_spec_counts.rb
+++ b/spec/models/manageiq/providers/amazon/aws_refresher_spec_counts.rb
@@ -66,13 +66,13 @@ def table_counts_from_api
ContainerLabelTagMapping.where(:labeled_resource_type => "Vm")
).pluck(:label_name)
# Correct count of mapped tags for Vms
- vms_tags_count = vms_tags.select { |x| vms_mappings.include?(x["key"]) }.count
+ vms_tags_count = vms_tags.select { |x| vms_mappings.include?(x["key"]) && x["value"].present? }.count
images_mappings = ContainerLabelTagMapping.where(:labeled_resource_type => nil).or(
ContainerLabelTagMapping.where(:labeled_resource_type => "Image")
).pluck(:label_name)
# Correct count of mapped tags for Images
- images_tags_count = images_tags.select { |x| images_mappings.include?(x["key"]) }.count
+ images_tags_count = images_tags.select { |x| images_mappings.include?(x["key"]) && x["value"].present? }.count
# Networks for all Vms is a list of private and public addresses of a 1 interface of a Vm
networks_count = instance_hashes.map { |x| [x['public_ip_address'], x['private_ip_address']] }.flatten.compact.size
@@ -137,6 +137,9 @@ def table_counts_from_api
orchestration_stack_outputs_count = orchestration_stack_hashes.map { |x| x["outputs"] }.flatten.compact.size
orchestration_stack_resources_count = stacks_resources.size
+ orchestration_templates_count = orchestration_stacks_count - (OrchestrationStack.pluck(:orchestration_template_id).count -
+ OrchestrationStack.pluck(:orchestration_template_id).uniq.count)
+
base_inventory_counts.merge(
:auth_private_key => key_pairs.size,
:availability_zone => availability_zones.size,
@@ -159,7 +162,7 @@ def table_counts_from_api
:orchestration_stack_output => orchestration_stack_outputs_count,
:orchestration_stack_parameter => orchestration_stack_parameters_count,
:orchestration_stack_resource => orchestration_stack_resources_count,
- :orchestration_template => orchestration_stacks_count,
+ :orchestration_template => orchestration_templates_count,
:security_group => security_groups_count,
:tagging => vms_tags_count + images_tags_count,
:vm => instances_count,
diff --git a/spec/models/manageiq/providers/amazon/cloud_manager/vcr_specs/targeted_refresh_spec.rb b/spec/models/manageiq/providers/amazon/cloud_manager/vcr_specs/targeted_refresh_spec.rb
index 93bf1e38f..cbef66aab 100644
--- a/spec/models/manageiq/providers/amazon/cloud_manager/vcr_specs/targeted_refresh_spec.rb
+++ b/spec/models/manageiq/providers/amazon/cloud_manager/vcr_specs/targeted_refresh_spec.rb
@@ -48,7 +48,7 @@
:auth_private_key => 1,
:availability_zone => 1,
:cloud_volume => 1,
- :custom_attribute => 2,
+ :custom_attribute => 3,
:disk => 1,
:firewall_rule => 13,
:flavor => 3,
@@ -104,7 +104,7 @@
:cloud_network => 1,
:cloud_subnet => 1,
:cloud_volume => 2,
- :custom_attribute => 2,
+ :custom_attribute => 3,
:disk => 2,
:firewall_rule => 3,
:flavor => 3,
@@ -307,7 +307,7 @@
:cloud_network => 1,
:cloud_subnet => 1,
:cloud_volume => 1,
- :custom_attribute => 6,
+ :custom_attribute => 7,
:disk => 1,
:firewall_rule => 3,
:flavor => 3,
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 92df9158d..91c3bc3da 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.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080745Z
+ - 20180904T145758Z
X-Amz-Content-Sha256:
- 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0090ea544e83c284ce26dd586bac267962e087f4db4b03b3fd4c3892dd52a726
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3811306073184dd3c554f8e6fa1a7751a2ac5ee2e554f7c54d55c52437aaee6a
Content-Length:
- '51'
Accept:
@@ -31,12 +31,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1437'
Date:
- - Tue, 26 Sep 2017 08:07:41 GMT
+ - Tue, 04 Sep 2018 14:57:58 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +42,7 @@ http_interactions:
string: |-
- f3530970-771b-45a1-9991-3e95ae8a1af8
+ 23efd37a-a5d3-4996-b621-9d059d95fe11
-
us-east-1a
@@ -85,7 +83,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:47 GMT
+ recorded_at: Tue, 04 Sep 2018 14:57:59 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -98,14 +96,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080747Z
+ - 20180904T145759Z
X-Amz-Content-Sha256:
- e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=618026df8aae30fbb6585d1ea8369a57543654e5efd24862c5f7ba34fcfbee60
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=53e4b2016b5109425d502bf85140e07f90f924798b718348342d30cbfd788788
Content-Length:
- '42'
Accept:
@@ -122,15 +120,15 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:42 GMT
+ - Tue, 04 Sep 2018 14:57:59 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- b2117bb0-d84c-48d8-ba70-0b77c4e0fdb1
+ eced1f0a-d591-407d-a982-94b6cc491f51
-
api-create
@@ -144,10 +142,18 @@ http_interactions:
aws-test-1
cb:c9:8d:70:8e:4c:d5:9a:bd:a9:32:bb:73:90:af:09:67:31:ce:b9
+ -
+ azagayno
+ d8:b4:60:b4:1d:a6:c5:68:b0:4c:55:a8:76:c4:53:c9:45:e5:8e:89
+
-
bd
38:ac:a0:23:29:3b:0a:a8:0d:13:8c:d1:78:d7:9d:a8:cf:c9:42:03
+ -
+ bdunne
+ 4b:49:72:eb:26:48:0f:93:d1:3b:3c:dc:f0:66:15:fa:a0:85:28:7e
+
-
bill
eb:13:8d:19:b1:9d:9f:8b:ea:e0:9b:0b:eb:ea:46:a7:b3:a9:76:99
@@ -156,6 +162,10 @@ http_interactions:
bmclaugh
1a:03:3d:32:1f:74:25:52:f1:5e:17:b3:10:82:b6:28:76:f1:e0:8b
+ -
+ BronaghsKeyPair
+ 1a:35:6a:3a:f1:fd:71:74:a1:d9:c3:2e:11:8e:64:c4:40:ad:7e:ba
+
-
bsorota
be:2e:fb:10:34:51:f6:eb:fb:1d:fe:af:47:56:69:5c:ed:d2:25:67
@@ -168,6 +178,14 @@ http_interactions:
dberger
2b:f3:69:12:e2:12:4b:7e:e2:9e:ff:ef:6f:df:c8:3e:77:e6:26:19
+ -
+ docker-test
+ 42:0c:f5:d8:26:96:c0:08:96:ac:2f:18:d2:c4:b9:ec:7d:3e:e4:e5
+
+ -
+ docker_1801_01
+ b1:ad:a7:e6:6e:da:9e:07:b2:f6:47:cf:38:2a:cb:ed:c2:e8:7b:0e
+
-
EmsRefreshSpec-KeyPair
49:9f:3f:a4:26:48:39:94:26:06:dd:25:73:e5:da:9b:4b:1b:6c:93
@@ -176,6 +194,10 @@ http_interactions:
EMSRefreshSpec-KeyPair-02
52:13:06:59:38:ef:97:58:ff:d4:46:f1:ad:60:ed:72:c0:63:aa:77
+ -
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 69:aa:aa:41:83:c2:dc:13:27:7a:c0:91:b9:b2:94:73:33:04:bd:58
+
-
gdb
7a:c7:44:04:62:0d:b6:a7:fe:90:45:7a:00:60:23:2f
@@ -184,10 +206,34 @@ http_interactions:
gm
a5:cb:4a:5d:e4:c0:97:7e:2f:c8:cd:6d:f7:6c:ab:4c:17:6d:6e:83
+ -
+ GregB-Minishift-keypair
+ 1e:33:8b:5f:ea:63:a0:87:82:67:e0:ad:96:f8:67:95:03:68:ab:35
+
+ -
+ hsong-keypair
+ e4:56:fb:0f:ae:21:15:2e:c1:2d:e4:35:ab:7c:12:be:46:ee:8c:30
+
+ -
+ hsong_centos_atomic
+ f3:88:fe:83:55:bd:5c:84:8b:c1:8b:fa:7b:5b:02:c9:77:03:4c:a0
+
+ -
+ hui_test
+ 35:8c:12:c8:63:1c:1f:a1:29:8f:98:74:6f:f3:12:92:e5:46:be:70
+
-
james
a9:48:48:b4:51:b7:43:b7:c2:12:69:50:e7:74:48:08:10:8d:7d:0c
+ -
+ james2
+ d3:db:86:19:03:50:fc:67:84:0b:92:f1:3b:15:13:c9:a9:86:20:9d
+
+ -
+ jcfoo
+ b7:5a:d2:4e:ef:86:6e:82:69:8d:8c:92:54:ec:39:e7:14:77:49:3b
+
-
jerryk
28:2f:64:b4:de:8a:fa:1b:65:3f:63:23:28:74:c3:a3:af:94:41:a6
@@ -201,8 +247,8 @@ http_interactions:
00:38:89:b1:d5:42:a4:31:67:05:ea:b5:87:19:d7:dd:46:21:df:21
-
- ladas_test
- 48:62:3d:b9:56:be:98:d8:cd:4d:73:b0:fa:36:9b:ba:0c:94:6a:29
+ ladas_ansible
+ 6b:6f:8b:c0:6f:0d:bf:62:2a:71:8d:5d:47:51:e0:22:e7:e9:9a:5e
-
mgf
@@ -216,6 +262,14 @@ http_interactions:
MIQ_SSA
2b:21:f4:b2:47:20:2e:91:4d:ef:5f:2f:48:90:5c:1a:da:ec:68:2d
+ -
+ MIQ_SSA-7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 75:e4:72:c9:d7:59:92:ca:14:68:32:b4:f1:b1:e2:b4:34:8b:34:ff
+
+ -
+ MIQ_SSA7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 27:f0:c9:fc:41:9f:e3:8a:bf:d6:7d:ed:69:6a:8a:3a:6f:3b:04:4b
+
-
mk
66:e9:a1:2a:7f:9d:46:b2:71:3f:1e:eb:a8:95:9f:c3:f6:ce:c7:38
@@ -228,6 +282,62 @@ http_interactions:
rpo
e6:c0:d7:a2:f8:dd:62:8d:76:36:7d:ca:d5:df:5f:a4:e9:bd:28:2c
+ -
+ simaishi
+ a1:d5:87:c3:87:6a:51:15:a9:50:79:15:49:c6:6e:67:70:17:a3:47
+
+ -
+ simaishi2
+ ca:8d:be:35:2e:be:bd:35:87:2b:b0:11:ff:50:32:58:19:36:07:77
+
+ -
+ smartstate-0a8b0ecf-320d-4f7c-ad28-1aae106a196b
+ 2d:98:ac:50:52:75:05:01:a2:33:92:03:78:43:96:94:64:80:29:84
+
+ -
+ smartstate-1bd0c674-5ea4-4a26-8970-054d19c8520a
+ 1d:cd:a7:b9:92:47:eb:cc:c7:58:33:f8:4e:4c:9a:a7:4d:79:76:58
+
+ -
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 2e:e2:62:00:bf:ef:de:87:3c:7e:37:c9:b8:3b:12:8c:a8:35:be:6a
+
+ -
+ smartstate-2d1d26a2-1852-44ed-b8aa-8f1697e0d2f0
+ f9:02:aa:24:bb:0e:70:51:d8:2e:c5:e1:d0:d4:1a:75:7a:b7:5c:94
+
+ -
+ smartstate-40193ce5-1459-4fdb-96d1-6128860ec235
+ 8d:3c:f4:ef:de:1c:8e:ec:22:06:52:2e:0b:b5:35:00:33:aa:70:b8
+
+ -
+ smartstate-7033fdde-6845-4d32-9e30-72d1b8599fa1
+ ba:fb:6c:f5:98:88:9c:c3:77:29:36:4c:a7:af:2d:f4:82:65:cb:ae
+
+ -
+ smartstate-70ceca4e-996f-47d5-9030-fd55a7910520
+ 65:cc:f4:64:ea:c3:34:63:19:5e:01:29:0e:4a:e6:53:b6:92:a1:f0
+
+ -
+ smartstate-74374e7e-6b63-421d-a1c5-3dcbd0b071e6
+ 60:36:1e:bf:75:da:23:60:76:5e:80:9f:b6:97:d0:1d:27:82:16:4e
+
+ -
+ smartstate-b5a73b24-f39e-11e6-b537-000c292c066c
+ fb:53:ce:0a:23:d8:7a:5c:25:32:74:e5:27:11:4b:e4:07:45:ef:44
+
+ -
+ smartstate-b88991cf-78cc-4e62-b775-72ad740d6ef1
+ 9c:bd:b7:f6:23:e8:ab:2c:d4:12:46:33:f7:7e:9c:10:64:c7:26:01
+
+ -
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ fd:bc:55:f2:b5:2e:4d:49:cc:21:12:64:7d:6a:4f:72:5b:d3:52:be
+
+ -
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0f:45:3d:81:81:1c:e6:93:eb:f2:7f:70:4b:51:86:69:47:85:d6:42
+
-
ssa
72:79:2e:fc:7e:67:ee:af:14:f5:5e:e1:cf:a8:9a:39:04:3a:91:84
@@ -236,10 +346,14 @@ http_interactions:
ssa_1
31:8f:c1:bc:0b:5c:ba:8a:df:b7:4c:24:12:6e:82:0f:6b:66:ff:e0
+ -
+ stomsa
+ 9a:82:b7:d1:ce:b3:96:71:0b:b0:af:5d:db:89:ea:af:66:69:54:9e
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:48 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:00 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -252,14 +366,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080748Z
+ - 20180904T145800Z
X-Amz-Content-Sha256:
- 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e154e8dd06650799431626a4edc7804a74b429803ffbc8c2ec24acf11b6948f5
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4ff0050649a7506bd1c85087556bb37189b69f4c78493da743ee7f88aefb5223
Content-Length:
- '40'
Accept:
@@ -270,21 +384,217 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c63e5293-a291-11e7-9b80-cda1ae80eac8
+ - eac891c9-b052-11e8-a1a5-95ef4bce4dbe
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '19861'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:43 GMT
+ - Tue, 04 Sep 2018 14:58:00 GMT
body:
encoding: UTF-8
string: |
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:12:03.839Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+ SC-200278856672-pp-kmmlut3eog5jm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:11:35.284Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+ SC-200278856672-pp-dpnpbpe64657e
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
@@ -316,6 +626,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -372,6 +685,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -410,6 +726,9 @@ http_interactions:
true
+
+ NOT_CHECKED
+
KeyName
@@ -453,6 +772,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -471,33 +793,33 @@ http_interactions:
- c63e5293-a291-11e7-9b80-cda1ae80eac8
+ eac891c9-b052-11e8-a1a5-95ef4bce4dbe
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:49 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:01 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080749Z
+ - 20180904T145801Z
X-Amz-Content-Sha256:
- - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
+ - 175dd3563745e0edd920aa5e1186c1ecc417142c8754ad55b6fefb0d78da9a7f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d77c6e69d786f31dc85ebac85d3c999bcb5af6d228d1e51553b870b284d1a73b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6d96dc54f402adf5c6f04a9590fcb5b36a413c688e5e9a78f7a79eba3c9ecdd7
Content-Length:
- - '106'
+ - '87'
Accept:
- "*/*"
response:
@@ -506,13 +828,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c723a8a6-a291-11e7-943f-41e33fe8d732
+ - eb2ef576-b052-11e8-892b-c7e377aeb1ad
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '2489'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:44 GMT
+ - Tue, 04 Sep 2018 14:58:00 GMT
body:
encoding: UTF-8
string: |
@@ -520,49 +844,75 @@ http_interactions:
- 2017-05-03T10:49:32.560Z
- 34.202.178.10
+ 2018-09-04T13:38:44.922Z
+ SC-200278-ElasticL-FDREQLBTVJ1Z
CREATE_COMPLETE
- IPAddress
- AWS::EC2::EIP
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
- 2017-05-03T10:48:56.988Z
- i-0bca58e6e540ddc39
+ 2018-09-04T13:38:53.347Z
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
CREATE_COMPLETE
- WebServerInstance
- AWS::EC2::Instance
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T13:38:56.729Z
+ SC-200278856672-pp-5pyltbgyzheqm-LaunchConfig-1KRBYT65PYDJY
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T13:41:25.707Z
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
- c723a8a6-a291-11e7-943f-41e33fe8d732
+ eb2ef576-b052-11e8-892b-c7e377aeb1ad
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:50 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:01 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080751Z
+ - 20180904T145801Z
X-Amz-Content-Sha256:
- - f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
+ - 4f67554d7040771121e681be30a59711c4619a8f6ffde0e5e1e841b4e59e73a4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d98d592090ef2684bb9ac6ceb437c0be7afdcd26c18ad336523726599b5d2f93
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f283c25850b90ae09115b630ab561ee75b3a930d44f3c8ae0c7e2f3c25621b9c
Content-Length:
- - '99'
+ - '80'
Accept:
- "*/*"
response:
@@ -571,314 +921,54 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c7c1483d-a291-11e7-b4ef-6bd9919827ed
+ - eb80971d-b052-11e8-9f26-9fd30f474ac3
Content-Type:
- text/xml
Content-Length:
- - '23157'
+ - '22726'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:46 GMT
+ - Tue, 04 Sep 2018 14:58:01 GMT
body:
encoding: UTF-8
- string: "\n
- \ \n {\n "AWSTemplateFormatVersion"
- : "2010-09-09",\n\n "Description" : "AWS CloudFormation
- Sample Template VPC_Single_Instance_In_Subnet: 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.",\n\n
- \ "Parameters" : {\n\n "InstanceType" : {\n "Description"
- : "WebServer EC2 instance type",\n "Type" : "String",\n
- \ "Default" : "t2.small",\n "AllowedValues"
- : [ "t1.micro", "t2.nano", "t2.micro", "t2.small",
- "t2.medium", "t2.large", "m1.small", "m1.medium",
- "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge",
- "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge",
- "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge",
- "m4.4xlarge", "m4.10xlarge", "c1.medium", "c1.xlarge",
- "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge",
- "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge",
- "c4.4xlarge", "c4.8xlarge", "g2.2xlarge", "g2.8xlarge",
- "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge",
- "r3.8xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge",
- "i2.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge",
- "d2.8xlarge", "hi1.4xlarge", "hs1.8xlarge",
- "cr1.8xlarge", "cc2.8xlarge", "cg1.4xlarge"]\n,\n
- \ "ConstraintDescription" : "must be a valid EC2 instance
- type."\n },\n\n "KeyName": {\n "Description"
- : "Name of an existing EC2 KeyPair to enable SSH access to the instance",\n
- \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription"
- : "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
- {\n "Description": "Db password",\n "Type":
- "String",\n "NoEcho": "true", \n "Default":
- "adminadmin"\n },\t\n \n "SSHLocation" : {\n
- \ "Description" : " The IP address range that can be used
- to SSH to the EC2 instances",\n "Type": "String",\n
- \ "MinLength": "9",\n "MaxLength":
- "18",\n "Default": "0.0.0.0/0",\n "AllowedPattern":
- "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
- \ "ConstraintDescription": "must be a valid IP CIDR range
- of the form x.x.x.x/x."\n },\n\n "InstanceSecurityGroupID":
- {\n "Description": "Security Group ID",\n "Type":
- "AWS::EC2::SecurityGroup::Id",\n "ConstraintDescription":
- "must be the id of an existing VPC SecurityGroup."\n },\n \n
- \ "SubnetID": {\n "Description": "Subnet ID",\n
- \ "Type": "AWS::EC2::Subnet::Id",\n "ConstraintDescription":
- "must be the id of an existing VPC Subnet."\n }\n },\n\n "Mappings"
- : {\n "Region2Examples" : {\n "us-east-1" :
- { "Examples" : "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
- },\n "us-west-2" : { "Examples" : "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
- },\n "us-west-1" : { "Examples" : "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
- },\n "eu-west-1" : { "Examples" : "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
- },\n "eu-west-2" : { "Examples" : "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
- },\n "eu-central-1" : { "Examples" : "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
- },\n "ap-southeast-1" : { "Examples" : "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
- },\n "ap-northeast-1" : { "Examples" : "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
- },\n "ap-northeast-2" : { "Examples" : "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
- },\n "ap-southeast-2" : { "Examples" : "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
- },\n "ap-south-1" : { "Examples" : "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
- },\n "us-east-2" : { "Examples" : "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
- },\n "ca-central-1" : { "Examples" : "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
- },\n "sa-east-1" : { "Examples" : "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
- },\n "cn-north-1" : { "Examples" : "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
- }\n }\n,\n "AWSInstanceType2Arch" : {\n "t1.micro"
- \ : { "Arch" : "PV64" },\n "t2.nano"
- \ : { "Arch" : "HVM64" },\n "t2.micro"
- \ : { "Arch" : "HVM64" },\n "t2.small"
- \ : { "Arch" : "HVM64" },\n "t2.medium"
- \ : { "Arch" : "HVM64" },\n "t2.large"
- \ : { "Arch" : "HVM64" },\n "m1.small"
- \ : { "Arch" : "PV64" },\n "m1.medium"
- \ : { "Arch" : "PV64" },\n "m1.large"
- \ : { "Arch" : "PV64" },\n "m1.xlarge"
- \ : { "Arch" : "PV64" },\n "m2.xlarge"
- \ : { "Arch" : "PV64" },\n "m2.2xlarge"
- \ : { "Arch" : "PV64" },\n "m2.4xlarge"
- \ : { "Arch" : "PV64" },\n "m3.medium"
- \ : { "Arch" : "HVM64" },\n "m3.large"
- \ : { "Arch" : "HVM64" },\n "m3.xlarge"
- \ : { "Arch" : "HVM64" },\n "m3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.large"
- \ : { "Arch" : "HVM64" },\n "m4.xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.2xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.4xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.10xlarge"
- : { "Arch" : "HVM64" },\n "c1.medium"
- \ : { "Arch" : "PV64" },\n "c1.xlarge"
- \ : { "Arch" : "PV64" },\n "c3.large"
- \ : { "Arch" : "HVM64" },\n "c3.xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.4xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.8xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.large"
- \ : { "Arch" : "HVM64" },\n "c4.xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.2xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.4xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.8xlarge"
- \ : { "Arch" : "HVM64" },\n "g2.2xlarge"
- \ : { "Arch" : "HVMG2" },\n "g2.8xlarge"
- \ : { "Arch" : "HVMG2" },\n "r3.large"
- \ : { "Arch" : "HVM64" },\n "r3.xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.4xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.8xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.2xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.4xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.8xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.2xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.4xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.8xlarge"
- \ : { "Arch" : "HVM64" },\n "hi1.4xlarge"
- : { "Arch" : "HVM64" },\n "hs1.8xlarge"
- : { "Arch" : "HVM64" },\n "cr1.8xlarge"
- : { "Arch" : "HVM64" },\n "cc2.8xlarge"
- : { "Arch" : "HVM64" }\n },\n\n "AWSInstanceType2NATArch"
- : {\n "t1.micro" : { "Arch" : "NATPV64"
- \ },\n "t2.nano" : { "Arch" : "NATHVM64"
- \ },\n "t2.micro" : { "Arch" : "NATHVM64"
- \ },\n "t2.small" : { "Arch" : "NATHVM64"
- \ },\n "t2.medium" : { "Arch" : "NATHVM64"
- \ },\n "t2.large" : { "Arch" : "NATHVM64"
- \ },\n "m1.small" : { "Arch" : "NATPV64"
- \ },\n "m1.medium" : { "Arch" : "NATPV64"
- \ },\n "m1.large" : { "Arch" : "NATPV64"
- \ },\n "m1.xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.2xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.4xlarge" : { "Arch" : "NATPV64"
- \ },\n "m3.medium" : { "Arch" : "NATHVM64"
- \ },\n "m3.large" : { "Arch" : "NATHVM64"
- \ },\n "m3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.large" : { "Arch" : "NATHVM64"
- \ },\n "m4.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.10xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c1.medium" : { "Arch" : "NATPV64"
- \ },\n "c1.xlarge" : { "Arch" : "NATPV64"
- \ },\n "c3.large" : { "Arch" : "NATHVM64"
- \ },\n "c3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.large" : { "Arch" : "NATHVM64"
- \ },\n "c4.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "g2.2xlarge" : { "Arch" : "NATHVMG2"
- \ },\n "g2.8xlarge" : { "Arch" : "NATHVMG2"
- \ },\n "r3.large" : { "Arch" : "NATHVM64"
- \ },\n "r3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "hi1.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "hs1.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "cr1.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "cc2.8xlarge" : { "Arch" : "NATHVM64"
- \ }\n }\n,\n "AWSRegionArch2AMI" : {\n "us-east-1"
- \ : {"PV64" : "ami-2a69aa47", "HVM64"
- : "ami-6869aa05", "HVMG2" : "ami-bb18efad"},\n
- \ "us-west-2" : {"PV64" : "ami-7f77b31f",
- "HVM64" : "ami-7172b611", "HVMG2" : "ami-31912f51"},\n
- \ "us-west-1" : {"PV64" : "ami-a2490dc2",
- "HVM64" : "ami-31490d51", "HVMG2" : "ami-0a9dcf6a"},\n
- \ "eu-west-1" : {"PV64" : "ami-4cdd453f",
- "HVM64" : "ami-f9dd458a", "HVMG2" : "ami-873e61e1"},\n
- \ "eu-west-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-886369ec", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "eu-central-1" : {"PV64" : "ami-6527cf0a",
- "HVM64" : "ami-ea26ce85", "HVMG2" : "ami-a16ba4ce"},\n
- \ "ap-northeast-1" : {"PV64" : "ami-3e42b65f",
- "HVM64" : "ami-374db956", "HVMG2" : "ami-6b443f0c"},\n
- \ "ap-northeast-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-2b408b45", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "ap-southeast-1" : {"PV64" : "ami-df9e4cbc",
- "HVM64" : "ami-a59b49c6", "HVMG2" : "ami-1c0ba17f"},\n
- \ "ap-southeast-2" : {"PV64" : "ami-63351d00",
- "HVM64" : "ami-dc361ebf", "HVMG2" : "ami-bf0d0adc"},\n
- \ "ap-south-1" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-ffbdd790", "HVMG2" : "ami-6135440e"},\n
- \ "us-east-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-f6035893", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "ca-central-1" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-730ebd17", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "sa-east-1" : {"PV64" : "ami-1ad34676",
- "HVM64" : "ami-6dd04501", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "cn-north-1" : {"PV64" : "ami-77559f1a",
- "HVM64" : "ami-8e6aa0e3", "HVMG2" : "NOT_SUPPORTED"}\n
- \ }\n\n },\n\n "Resources" : {\n "IPAddress" :
- {\n "Type" : "AWS::EC2::EIP",\n "Properties"
- : {\n "Domain" : "vpc",\n "InstanceId"
- : { "Ref" : "WebServerInstance" }\n }\n },\n\n
- \ "WebServerInstance" : {\n "Type" : "AWS::EC2::Instance",\n
- \ "Metadata" : {\n "Comment" : "Install
- a simple application",\n "AWS::CloudFormation::Init"
- : {\n "config" : {\n "packages" :
- {\n "yum" : {\n "httpd" :
- []\n }\n },\n\n "files" : {\n
- \ "/var/www/html/index.html" : {\n "content"
- : { "Fn::Join" : ["\\n", [\n "<img
- src=\\"", {"Fn::FindInMap" : ["Region2Examples",
- {"Ref" : "AWS::Region"}, "Examples"]}, "/cloudformation_graphic.png\\"
- alt=\\"AWS CloudFormation Logo\\"/>",\n "<h1>Congratulations,
- you have successfully launched the AWS CloudFormation sample.</h1>"\n
- \ ]]},\n "mode" : "000644",\n
- \ "owner" : "root",\n "group"
- \ : "root"\n },\n\n "/etc/cfn/cfn-hup.conf"
- : {\n "content" : { "Fn::Join" : ["",
- [\n "[main]\\n",\n "stack=",
- { "Ref" : "AWS::StackId" }, "\\n",\n "region=",
- { "Ref" : "AWS::Region" }, "\\n"\n ]]},\n
- \ "mode" : "000400",\n "owner"
- \ : "root",\n "group" : "root"\n
- \ },\n\n "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
- : {\n "content": { "Fn::Join" : ["",
- [\n "[cfn-auto-reloader-hook]\\n",\n "triggers=post.update\\n",\n
- \ "path=Resources.WebServerInstance.Metadata.AWS::CloudFormation::Init\\n",\n
- \ "action=/opt/aws/bin/cfn-init -v ",\n "
- \ --stack ", { "Ref" : "AWS::StackName" },\n
- \ " --resource WebServerInstance ",\n "
- \ --region ", { "Ref" : "AWS::Region" }, "\\n",\n
- \ "runas=root\\n"\n ]]}\n }\n
- \ },\n\n "services" : {\n "sysvinit"
- : {\n "httpd" : { "enabled" : "true",
- "ensureRunning" : "true" },\n "cfn-hup"
- : { "enabled" : "true", "ensureRunning" : "true",
- \n "files" : ["/etc/cfn/cfn-hup.conf",
- "/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}\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 "KeyName" : { "Ref"
- : "KeyName" },\n "Tags" : [ {"Key" :
- "Application", "Value" : { "Ref" : "AWS::StackId"}
- } ],\n "NetworkInterfaces" : [{\n "GroupSet"
- \ : [{ "Ref" : "InstanceSecurityGroupID"
- }],\n "AssociatePublicIpAddress" : "true",\n
- \ "DeviceIndex" : "0",\n "DeleteOnTermination"
- \ : "true",\n "SubnetId" :
- { "Ref" : "SubnetID" }\n }],\n "UserData"
- \ : { "Fn::Base64" : { "Fn::Join" : ["",
- [\n "#!/bin/bash -xe\\n",\n "yum update
- -y aws-cfn-bootstrap\\n",\n\n "/opt/aws/bin/cfn-init
- -v ",\n " --stack ", { "Ref"
- : "AWS::StackName" },\n " --resource WebServerInstance
- ",\n " --region ", { "Ref" :
- "AWS::Region" }, "\\n",\n\n "/opt/aws/bin/cfn-signal
- -e $? ",\n " --stack ", { "Ref"
- : "AWS::StackName" },\n " --resource WebServerInstance
- ",\n " --region ", { "Ref" :
- "AWS::Region" }, "\\n"\n ]]}}\n },\n "CreationPolicy"
- : {\n "ResourceSignal" : {\n "Timeout"
- : "PT15M"\n }\n }\n }\n },\n\n "Outputs"
- : {\n "URL" : {\n "Value" : { "Fn::Join"
- : [ "", ["http://", { "Fn::GetAtt" : ["WebServerInstance",
- "PublicIp"] }]]},\n "Description" : "Newly created
- application URL"\n }\n }\n}\n\n\n \n
- \ Original\n Processed\n \n
- \ \n \n c7c1483d-a291-11e7-b4ef-6bd9919827ed\n
- \ \n\n"
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.","Parameters":{"Environment":{"Description":"Environment type","Type":"String","Default":"prod","AllowedValues":["test","prod"]},"InstanceType":{"Description":"WebServer EC2 instance type","Type":"String","Default":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{"testInstanceType":{"RuleCondition":{"Fn::Equals":[{"Ref":"Environment"},"test"]},"Assertions":[{"Assert":{"Fn::Contains":[["t1.micro"],{"Ref":"InstanceType"}]},"AssertDescription":"For the test environment, the instance type must be t1.micro"}]},"prodInstanceType":{"RuleCondition":{"Fn::Equals":[{"Ref":"Environment"},"prod"]},"Assertions":[{"Assert":{"Fn::Contains":[["m1.large"],{"Ref":"InstanceType"}]},"AssertDescription":"For the prod environment, the instance type must be m1.large"}]}}}
+
+ Original
+ Processed
+
+
+
+ eb80971d-b052-11e8-9f26-9fd30f474ac3
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:52 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:02 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack&Version=2010-05-15
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-kmmlut3eog5jm&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080752Z
+ - 20180904T145802Z
X-Amz-Content-Sha256:
- - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
+ - b97d6dafce2eb15f8b48c6f8f8632a91fd2949c097244bc7271d80c8744181ef
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ee1d1ffcdca72039e97139da72649fc6a6bd9e6192c963875bc21c71d4fbfab7
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3c7db9979e240fac450ce8955313766d65ced94a0fa4132c3794dd6811a30555
Content-Length:
- - '74'
+ - '87'
Accept:
- "*/*"
response:
@@ -887,15 +977,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c8c99066-a291-11e7-8cf0-03a7b22f517f
+ - ec32f809-b052-11e8-862a-256d43157e72
Content-Type:
- text/xml
Content-Length:
- - '6667'
+ - '2490'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:48 GMT
+ - Tue, 04 Sep 2018 14:58:03 GMT
body:
encoding: UTF-8
string: |
@@ -903,154 +993,330 @@ http_interactions:
- 2017-05-03T10:46:51.634Z
- EmsRe-Attac-18IYH2NXW163I
- CREATE_COMPLETE
- AttachGateway
- AWS::EC2::VPCGatewayAttachment
-
-
- 2017-05-03T10:46:59.572Z
- EmsRe-Inbou-1M80E3XJX5ZG6
- CREATE_COMPLETE
- InboundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.467Z
- EmsRe-Inbou-E8UR0I5STC4V
- CREATE_COMPLETE
- InboundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:55.099Z
- EmsRe-Inbou-1E29UZ91J3L0R
+ 2018-09-04T12:12:09.241Z
+ SC-200278-ElasticL-1FZE3MOB69WMC
CREATE_COMPLETE
- InboundSSHNetworkAclEntry
- AWS::EC2::NetworkAclEntry
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
- 2017-05-03T10:46:51.481Z
- sg-76c10f08
+ 2018-09-04T12:12:17.645Z
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
- 2017-05-03T10:46:29.550Z
- igw-64924d02
- CREATE_COMPLETE
- InternetGateway
- AWS::EC2::InternetGateway
-
-
- 2017-05-03T10:46:34.869Z
- acl-e616ad9f
- CREATE_COMPLETE
- NetworkAcl
- AWS::EC2::NetworkAcl
-
-
- 2017-05-03T10:46:56.226Z
- EmsRe-OutBo-1NZIAZJB04JPV
- CREATE_COMPLETE
- OutBoundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.162Z
- EmsRe-OutBo-11CPJOERKOC1S
- CREATE_COMPLETE
- OutBoundHTTPSNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:57.712Z
- EmsRe-OutBo-1VCOFXN25WKE2
- CREATE_COMPLETE
- OutBoundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:47:11.450Z
- EmsRe-Route-CE90KA6C89YL
- CREATE_COMPLETE
- Route
- AWS::EC2::Route
-
-
- 2017-05-03T10:46:35.945Z
- rtb-d37690ab
+ 2018-09-04T12:12:20.596Z
+ SC-200278856672-pp-kmmlut3eog5jm-LaunchConfig-1OKSZDM92RBKG
CREATE_COMPLETE
- RouteTable
- AWS::EC2::RouteTable
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
- 2017-05-03T10:46:51.908Z
- subnet-2190b144
+ 2018-09-04T12:15:10.214Z
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
CREATE_COMPLETE
- Subnet
- AWS::EC2::Subnet
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+ ec32f809-b052-11e8-862a-256d43157e72
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:03 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-kmmlut3eog5jm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145803Z
+ X-Amz-Content-Sha256:
+ - 532cb76c694635b4436067f19c96ca474da742a392f291b5dc05eda48f33660b
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a46c57821b156ce8a49255f3122093a149a74a770535c50393b837305aef9b6
+ Content-Length:
+ - '80'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - ec818c80-b052-11e8-a13c-ddcb40457984
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '21739'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:02 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. 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":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{}}
+
+ Original
+ Processed
+
+
+
+ ec818c80-b052-11e8-a13c-ddcb40457984
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:04 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-dpnpbpe64657e&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145804Z
+ X-Amz-Content-Sha256:
+ - e2518fc8e2f734f91d752f6df25faf5193464522102bc55d79e4007cba29df5a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=01e911fc5ee7a4b290241cb0fe71ac850785d5ac5907ab905adf7fb0bc25ac74
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - ed2fa73a-b052-11e8-9a5b-016e640c3f1c
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:04 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
- 2017-05-03T10:47:12.194Z
- aclassoc-5960cf29
+ 2018-09-04T12:11:39.968Z
+ SC-200278-ElasticL-1EUDCD7AKWGXB
CREATE_COMPLETE
- SubnetNetworkAclAssociation
- AWS::EC2::SubnetNetworkAclAssociation
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
- 2017-05-03T10:47:11.882Z
- rtbassoc-d35ff3a8
+ 2018-09-04T12:11:48.639Z
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
CREATE_COMPLETE
- SubnetRouteTableAssociation
- AWS::EC2::SubnetRouteTableAssociation
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
- 2017-05-03T10:46:30.347Z
- vpc-8cf117f5
+ 2018-09-04T12:11:51.871Z
+ SC-200278856672-pp-dpnpbpe64657e-LaunchConfig-1VKNSV250AM86
CREATE_COMPLETE
- VPC
- AWS::EC2::VPC
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
- 2017-05-03T10:49:38.256Z
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ 2018-09-04T12:14:20.745Z
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
CREATE_COMPLETE
- WebServerInstance
- AWS::CloudFormation::Stack
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
- c8c99066-a291-11e7-8cf0-03a7b22f517f
+ ed2fa73a-b052-11e8-9a5b-016e640c3f1c
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:53 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:04 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecStack&Version=2010-05-15
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-dpnpbpe64657e&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080753Z
+ - 20180904T145804Z
X-Amz-Content-Sha256:
- - 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
+ - 7f85447e7a34c4363deb7d82daf0e8e396e6d47b0c813b77d11975c2c7841fb1
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=8ff6212e7f7c7d22f32fe3f51bd906e4a89a36a62dfad21b6ad455236809f629
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=125c51c6a0bc379f6050039b9f284fc61046bc4dd556e741a62f2100dbfc0bfa
Content-Length:
- - '67'
+ - '80'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - ed7e14c6-b052-11e8-8f3a-4991121a35c6
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '21739'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:05 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. 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":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{}}
+
+ Original
+ Processed
+
+
+
+ ed7e14c6-b052-11e8-8f3a-4991121a35c6
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:05 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=billy1&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145805Z
+ X-Amz-Content-Sha256:
+ - 0ac8d282d9bebb8cc9d81b3ad8cd95d1ea7a5deb39aeae4502f26b44e5053da4
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=63ee36fa77f4c0abb53cd47e0ba5660f6759fa8ee4fb277c7ab68893e0b1dce2
+ Content-Length:
+ - '61'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - edded2b6-b052-11e8-bff2-9de952bbfebd
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '315'
+ Date:
+ - Tue, 04 Sep 2018 14:58:05 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+ edded2b6-b052-11e8-bff2-9de952bbfebd
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:06 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=billy1&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145806Z
+ X-Amz-Content-Sha256:
+ - dcba2d4ed390c1e50d4fa2d45182dc900c47ee0ec2cd28a43797819dcb30536b
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a0f170dc41089eee6120648a77d6d50c784aac88e1f3da96a38faafd5e028a27
+ Content-Length:
+ - '54'
Accept:
- "*/*"
response:
@@ -1059,7 +1325,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c95778e3-a291-11e7-af30-3bd6529823da
+ - ee2be15e-b052-11e8-bff2-9de952bbfebd
Content-Type:
- text/xml
Content-Length:
@@ -1067,7 +1333,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:48 GMT
+ - Tue, 04 Sep 2018 14:58:06 GMT
body:
encoding: UTF-8
string: "\n
@@ -1206,32 +1472,32 @@ http_interactions:
: "IP Address of the host",\n "Value" : { "Ref"
: "WebServerInstance" }\n }\n }\n}\n\n \n
\ Original\n Processed\n \n
- \ \n \n c95778e3-a291-11e7-af30-3bd6529823da\n
+ \ \n \n ee2be15e-b052-11e8-bff2-9de952bbfebd\n
\ \n\n"
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:54 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:07 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080754Z
+ - 20180904T145807Z
X-Amz-Content-Sha256:
- - a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
+ - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=52aa8759aeec7a93569791d7718410a67c4b226873792671935364bec7fce8a3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=325908178b17cfbf1314bc0e84b85b9256679e892ed2510ec0dd518917ac0b86
Content-Length:
- - '97'
+ - '106'
Accept:
- "*/*"
response:
@@ -1240,15 +1506,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - c9ec6591-a291-11e7-8cf0-03a7b22f517f
+ - eed34500-b052-11e8-a200-af24d8edb342
Content-Type:
- text/xml
Content-Length:
- - '7096'
- Vary:
- - Accept-Encoding
+ - '1297'
Date:
- - Tue, 26 Sep 2017 08:07:49 GMT
+ - Tue, 04 Sep 2018 14:58:06 GMT
body:
encoding: UTF-8
string: |
@@ -1256,161 +1520,55 @@ http_interactions:
- 2017-03-27T12:21:09.758Z
- EmsRe-Gatew-1LHVB7WCBDH2J
- CREATE_COMPLETE
- GatewayToInternet
- AWS::EC2::VPCGatewayAttachment
-
-
- 2017-03-27T12:21:18.408Z
- EmsRe-Inbou-114C8QHJD1A0
- CREATE_COMPLETE
- InboundDynamicPortPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:17.491Z
- EmsRe-Inbou-10A1RE6O5U1OG
- CREATE_COMPLETE
- InboundHTTPPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:18.284Z
- EmsRe-Inbou-NCOLEFTRFR80
- CREATE_COMPLETE
- InboundSSHPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:20:47.040Z
- igw-f3b65295
- CREATE_COMPLETE
- InternetGateway
- AWS::EC2::InternetGateway
-
-
- 2017-03-27T12:21:17.267Z
- EmsRe-Outbo-GYCVGUJ9J26R
- CREATE_COMPLETE
- OutboundPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:19.063Z
- EmsRefres-PublicEl-15YIQXDK2TNOF
- CREATE_COMPLETE
- PublicElasticLoadBalancer
- AWS::ElasticLoadBalancing::LoadBalancer
-
-
- 2017-03-27T12:21:12.098Z
- sg-5946c626
- CREATE_COMPLETE
- PublicLoadBalancerSecurityGroup
- AWS::EC2::SecurityGroup
-
-
- 2017-03-27T12:20:55.848Z
- acl-e98b7590
- CREATE_COMPLETE
- PublicNetworkAcl
- AWS::EC2::NetworkAcl
-
-
- 2017-03-27T12:21:30.588Z
- EmsRe-Publi-13PVGYUA7QQU3
- CREATE_COMPLETE
- PublicRoute
- AWS::EC2::Route
-
-
- 2017-03-27T12:20:54.594Z
- rtb-93067bea
- CREATE_COMPLETE
- PublicRouteTable
- AWS::EC2::RouteTable
-
-
- 2017-03-27T12:21:09.517Z
- subnet-de2363bb
- CREATE_COMPLETE
- PublicSubnet
- AWS::EC2::Subnet
-
-
- 2017-03-27T12:21:35.209Z
- aclassoc-4471fa35
- CREATE_COMPLETE
- PublicSubnetNetworkAclAssociation
- AWS::EC2::SubnetNetworkAclAssociation
-
-
- 2017-03-27T12:21:31.953Z
- rtbassoc-1f3b2c67
- CREATE_COMPLETE
- PublicSubnetRouteTableAssociation
- AWS::EC2::SubnetRouteTableAssociation
-
-
- 2017-03-27T12:20:47.805Z
- vpc-c3d2f1a5
- CREATE_COMPLETE
- VPC
- AWS::EC2::VPC
-
-
- 2017-03-27T12:23:33.873Z
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
- CREATE_COMPLETE
- WebServerFleet
- AWS::AutoScaling::AutoScalingGroup
-
-
- 2017-03-27T12:21:41.260Z
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
+ 2017-05-03T10:49:32.560Z
+ 34.202.178.10
CREATE_COMPLETE
- WebServerLaunchConfig
- AWS::AutoScaling::LaunchConfiguration
+
+ NOT_CHECKED
+
+ IPAddress
+ AWS::EC2::EIP
- 2017-03-27T12:21:35.209Z
- sg-9242c2ed
+ 2017-05-03T10:48:56.988Z
+ i-0bca58e6e540ddc39
CREATE_COMPLETE
- WebServerSecurityGroup
- AWS::EC2::SecurityGroup
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::EC2::Instance
- c9ec6591-a291-11e7-8cf0-03a7b22f517f
+ eed34500-b052-11e8-a200-af24d8edb342
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:55 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:07 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ string: Action=GetTemplate&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080755Z
+ - 20180904T145807Z
X-Amz-Content-Sha256:
- - d196f07c8d09b8b0ccee298e3e6f0e4e89593cbeea565c8601f126be53b544a8
+ - f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=828df020d33e351357bd799bb1d3b928a40bdf713457bff94c026bcae1d5ba2f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d1a7237ffc7495e57593a40a83d057e79cde5536855624c70fe33e8bf4ec5a41
Content-Length:
- - '90'
+ - '99'
Accept:
- "*/*"
response:
@@ -1419,95 +1577,1048 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ca81a0f0-a291-11e7-98e3-edb0b13c39c4
+ - ef21b2b3-b052-11e8-b122-b7ec86b65cbf
Content-Type:
- text/xml
Content-Length:
- - '49484'
+ - '23157'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:50 GMT
+ - Tue, 04 Sep 2018 14:58:08 GMT
body:
encoding: UTF-8
- string: |
-
-
- {
- "AWSTemplateFormatVersion": "2010-09-09",
- "Description": "AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.",
- "Parameters": {
- "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": "Lockdown SSH access to the bastion host (default can be accessed from anywhere)",
- "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 CIDR range of the form x.x.x.x/x."
- },
- "WebServerInstanceType": {
- "Description": "WebServer Server EC2 instance type",
- "Type": "String",
- "Default": "t2.small",
- "AllowedValues": [
- "t1.micro",
- "t2.nano",
- "t2.micro",
- "t2.small",
- "t2.medium",
- "t2.large",
- "m1.small",
- "m1.medium",
- "m1.large",
- "m1.xlarge",
- "m2.xlarge",
- "m2.2xlarge",
- "m2.4xlarge",
- "m3.medium",
- "m3.large",
- "m3.xlarge",
- "m3.2xlarge",
- "m4.large",
- "m4.xlarge",
- "m4.2xlarge",
- "m4.4xlarge",
- "m4.10xlarge",
- "c1.medium",
- "c1.xlarge",
- "c3.large",
- "c3.xlarge",
- "c3.2xlarge",
- "c3.4xlarge",
- "c3.8xlarge",
- "c4.large",
- "c4.xlarge",
- "c4.2xlarge",
- "c4.4xlarge",
- "c4.8xlarge",
- "g2.2xlarge",
- "g2.8xlarge",
- "r3.large",
- "r3.xlarge",
- "r3.2xlarge",
- "r3.4xlarge",
- "r3.8xlarge",
- "i2.xlarge",
- "i2.2xlarge",
- "i2.4xlarge",
- "i2.8xlarge",
- "d2.xlarge",
- "d2.2xlarge",
- "d2.4xlarge",
- "d2.8xlarge",
- "hi1.4xlarge",
- "hs1.8xlarge",
- "cr1.8xlarge",
+ string: "\n
+ \ \n {\n "AWSTemplateFormatVersion"
+ : "2010-09-09",\n\n "Description" : "AWS CloudFormation
+ Sample Template VPC_Single_Instance_In_Subnet: 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.",\n\n
+ \ "Parameters" : {\n\n "InstanceType" : {\n "Description"
+ : "WebServer EC2 instance type",\n "Type" : "String",\n
+ \ "Default" : "t2.small",\n "AllowedValues"
+ : [ "t1.micro", "t2.nano", "t2.micro", "t2.small",
+ "t2.medium", "t2.large", "m1.small", "m1.medium",
+ "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge",
+ "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge",
+ "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge",
+ "m4.4xlarge", "m4.10xlarge", "c1.medium", "c1.xlarge",
+ "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge",
+ "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge",
+ "c4.4xlarge", "c4.8xlarge", "g2.2xlarge", "g2.8xlarge",
+ "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge",
+ "r3.8xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge",
+ "i2.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge",
+ "d2.8xlarge", "hi1.4xlarge", "hs1.8xlarge",
+ "cr1.8xlarge", "cc2.8xlarge", "cg1.4xlarge"]\n,\n
+ \ "ConstraintDescription" : "must be a valid EC2 instance
+ type."\n },\n\n "KeyName": {\n "Description"
+ : "Name of an existing EC2 KeyPair to enable SSH access to the instance",\n
+ \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription"
+ : "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
+ {\n "Description": "Db password",\n "Type":
+ "String",\n "NoEcho": "true", \n "Default":
+ "adminadmin"\n },\t\n \n "SSHLocation" : {\n
+ \ "Description" : " The IP address range that can be used
+ to SSH to the EC2 instances",\n "Type": "String",\n
+ \ "MinLength": "9",\n "MaxLength":
+ "18",\n "Default": "0.0.0.0/0",\n "AllowedPattern":
+ "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
+ \ "ConstraintDescription": "must be a valid IP CIDR range
+ of the form x.x.x.x/x."\n },\n\n "InstanceSecurityGroupID":
+ {\n "Description": "Security Group ID",\n "Type":
+ "AWS::EC2::SecurityGroup::Id",\n "ConstraintDescription":
+ "must be the id of an existing VPC SecurityGroup."\n },\n \n
+ \ "SubnetID": {\n "Description": "Subnet ID",\n
+ \ "Type": "AWS::EC2::Subnet::Id",\n "ConstraintDescription":
+ "must be the id of an existing VPC Subnet."\n }\n },\n\n "Mappings"
+ : {\n "Region2Examples" : {\n "us-east-1" :
+ { "Examples" : "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
+ },\n "us-west-2" : { "Examples" : "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
+ },\n "us-west-1" : { "Examples" : "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
+ },\n "eu-west-1" : { "Examples" : "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
+ },\n "eu-west-2" : { "Examples" : "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
+ },\n "eu-central-1" : { "Examples" : "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
+ },\n "ap-southeast-1" : { "Examples" : "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
+ },\n "ap-northeast-1" : { "Examples" : "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
+ },\n "ap-northeast-2" : { "Examples" : "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
+ },\n "ap-southeast-2" : { "Examples" : "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
+ },\n "ap-south-1" : { "Examples" : "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
+ },\n "us-east-2" : { "Examples" : "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
+ },\n "ca-central-1" : { "Examples" : "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
+ },\n "sa-east-1" : { "Examples" : "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
+ },\n "cn-north-1" : { "Examples" : "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
+ }\n }\n,\n "AWSInstanceType2Arch" : {\n "t1.micro"
+ \ : { "Arch" : "PV64" },\n "t2.nano"
+ \ : { "Arch" : "HVM64" },\n "t2.micro"
+ \ : { "Arch" : "HVM64" },\n "t2.small"
+ \ : { "Arch" : "HVM64" },\n "t2.medium"
+ \ : { "Arch" : "HVM64" },\n "t2.large"
+ \ : { "Arch" : "HVM64" },\n "m1.small"
+ \ : { "Arch" : "PV64" },\n "m1.medium"
+ \ : { "Arch" : "PV64" },\n "m1.large"
+ \ : { "Arch" : "PV64" },\n "m1.xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.2xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.4xlarge"
+ \ : { "Arch" : "PV64" },\n "m3.medium"
+ \ : { "Arch" : "HVM64" },\n "m3.large"
+ \ : { "Arch" : "HVM64" },\n "m3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "m3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.large"
+ \ : { "Arch" : "HVM64" },\n "m4.xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.10xlarge"
+ : { "Arch" : "HVM64" },\n "c1.medium"
+ \ : { "Arch" : "PV64" },\n "c1.xlarge"
+ \ : { "Arch" : "PV64" },\n "c3.large"
+ \ : { "Arch" : "HVM64" },\n "c3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.large"
+ \ : { "Arch" : "HVM64" },\n "c4.xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "g2.2xlarge"
+ \ : { "Arch" : "HVMG2" },\n "g2.8xlarge"
+ \ : { "Arch" : "HVMG2" },\n "r3.large"
+ \ : { "Arch" : "HVM64" },\n "r3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "hi1.4xlarge"
+ : { "Arch" : "HVM64" },\n "hs1.8xlarge"
+ : { "Arch" : "HVM64" },\n "cr1.8xlarge"
+ : { "Arch" : "HVM64" },\n "cc2.8xlarge"
+ : { "Arch" : "HVM64" }\n },\n\n "AWSInstanceType2NATArch"
+ : {\n "t1.micro" : { "Arch" : "NATPV64"
+ \ },\n "t2.nano" : { "Arch" : "NATHVM64"
+ \ },\n "t2.micro" : { "Arch" : "NATHVM64"
+ \ },\n "t2.small" : { "Arch" : "NATHVM64"
+ \ },\n "t2.medium" : { "Arch" : "NATHVM64"
+ \ },\n "t2.large" : { "Arch" : "NATHVM64"
+ \ },\n "m1.small" : { "Arch" : "NATPV64"
+ \ },\n "m1.medium" : { "Arch" : "NATPV64"
+ \ },\n "m1.large" : { "Arch" : "NATPV64"
+ \ },\n "m1.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.2xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.4xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m3.medium" : { "Arch" : "NATHVM64"
+ \ },\n "m3.large" : { "Arch" : "NATHVM64"
+ \ },\n "m3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.large" : { "Arch" : "NATHVM64"
+ \ },\n "m4.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.10xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c1.medium" : { "Arch" : "NATPV64"
+ \ },\n "c1.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "c3.large" : { "Arch" : "NATHVM64"
+ \ },\n "c3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.large" : { "Arch" : "NATHVM64"
+ \ },\n "c4.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "g2.2xlarge" : { "Arch" : "NATHVMG2"
+ \ },\n "g2.8xlarge" : { "Arch" : "NATHVMG2"
+ \ },\n "r3.large" : { "Arch" : "NATHVM64"
+ \ },\n "r3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "hi1.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "hs1.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "cr1.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "cc2.8xlarge" : { "Arch" : "NATHVM64"
+ \ }\n }\n,\n "AWSRegionArch2AMI" : {\n "us-east-1"
+ \ : {"PV64" : "ami-2a69aa47", "HVM64"
+ : "ami-6869aa05", "HVMG2" : "ami-bb18efad"},\n
+ \ "us-west-2" : {"PV64" : "ami-7f77b31f",
+ "HVM64" : "ami-7172b611", "HVMG2" : "ami-31912f51"},\n
+ \ "us-west-1" : {"PV64" : "ami-a2490dc2",
+ "HVM64" : "ami-31490d51", "HVMG2" : "ami-0a9dcf6a"},\n
+ \ "eu-west-1" : {"PV64" : "ami-4cdd453f",
+ "HVM64" : "ami-f9dd458a", "HVMG2" : "ami-873e61e1"},\n
+ \ "eu-west-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-886369ec", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "eu-central-1" : {"PV64" : "ami-6527cf0a",
+ "HVM64" : "ami-ea26ce85", "HVMG2" : "ami-a16ba4ce"},\n
+ \ "ap-northeast-1" : {"PV64" : "ami-3e42b65f",
+ "HVM64" : "ami-374db956", "HVMG2" : "ami-6b443f0c"},\n
+ \ "ap-northeast-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-2b408b45", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "ap-southeast-1" : {"PV64" : "ami-df9e4cbc",
+ "HVM64" : "ami-a59b49c6", "HVMG2" : "ami-1c0ba17f"},\n
+ \ "ap-southeast-2" : {"PV64" : "ami-63351d00",
+ "HVM64" : "ami-dc361ebf", "HVMG2" : "ami-bf0d0adc"},\n
+ \ "ap-south-1" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-ffbdd790", "HVMG2" : "ami-6135440e"},\n
+ \ "us-east-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-f6035893", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "ca-central-1" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-730ebd17", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "sa-east-1" : {"PV64" : "ami-1ad34676",
+ "HVM64" : "ami-6dd04501", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "cn-north-1" : {"PV64" : "ami-77559f1a",
+ "HVM64" : "ami-8e6aa0e3", "HVMG2" : "NOT_SUPPORTED"}\n
+ \ }\n\n },\n\n "Resources" : {\n "IPAddress" :
+ {\n "Type" : "AWS::EC2::EIP",\n "Properties"
+ : {\n "Domain" : "vpc",\n "InstanceId"
+ : { "Ref" : "WebServerInstance" }\n }\n },\n\n
+ \ "WebServerInstance" : {\n "Type" : "AWS::EC2::Instance",\n
+ \ "Metadata" : {\n "Comment" : "Install
+ a simple application",\n "AWS::CloudFormation::Init"
+ : {\n "config" : {\n "packages" :
+ {\n "yum" : {\n "httpd" :
+ []\n }\n },\n\n "files" : {\n
+ \ "/var/www/html/index.html" : {\n "content"
+ : { "Fn::Join" : ["\\n", [\n "<img
+ src=\\"", {"Fn::FindInMap" : ["Region2Examples",
+ {"Ref" : "AWS::Region"}, "Examples"]}, "/cloudformation_graphic.png\\"
+ alt=\\"AWS CloudFormation Logo\\"/>",\n "<h1>Congratulations,
+ you have successfully launched the AWS CloudFormation sample.</h1>"\n
+ \ ]]},\n "mode" : "000644",\n
+ \ "owner" : "root",\n "group"
+ \ : "root"\n },\n\n "/etc/cfn/cfn-hup.conf"
+ : {\n "content" : { "Fn::Join" : ["",
+ [\n "[main]\\n",\n "stack=",
+ { "Ref" : "AWS::StackId" }, "\\n",\n "region=",
+ { "Ref" : "AWS::Region" }, "\\n"\n ]]},\n
+ \ "mode" : "000400",\n "owner"
+ \ : "root",\n "group" : "root"\n
+ \ },\n\n "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
+ : {\n "content": { "Fn::Join" : ["",
+ [\n "[cfn-auto-reloader-hook]\\n",\n "triggers=post.update\\n",\n
+ \ "path=Resources.WebServerInstance.Metadata.AWS::CloudFormation::Init\\n",\n
+ \ "action=/opt/aws/bin/cfn-init -v ",\n "
+ \ --stack ", { "Ref" : "AWS::StackName" },\n
+ \ " --resource WebServerInstance ",\n "
+ \ --region ", { "Ref" : "AWS::Region" }, "\\n",\n
+ \ "runas=root\\n"\n ]]}\n }\n
+ \ },\n\n "services" : {\n "sysvinit"
+ : {\n "httpd" : { "enabled" : "true",
+ "ensureRunning" : "true" },\n "cfn-hup"
+ : { "enabled" : "true", "ensureRunning" : "true",
+ \n "files" : ["/etc/cfn/cfn-hup.conf",
+ "/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}\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 "KeyName" : { "Ref"
+ : "KeyName" },\n "Tags" : [ {"Key" :
+ "Application", "Value" : { "Ref" : "AWS::StackId"}
+ } ],\n "NetworkInterfaces" : [{\n "GroupSet"
+ \ : [{ "Ref" : "InstanceSecurityGroupID"
+ }],\n "AssociatePublicIpAddress" : "true",\n
+ \ "DeviceIndex" : "0",\n "DeleteOnTermination"
+ \ : "true",\n "SubnetId" :
+ { "Ref" : "SubnetID" }\n }],\n "UserData"
+ \ : { "Fn::Base64" : { "Fn::Join" : ["",
+ [\n "#!/bin/bash -xe\\n",\n "yum update
+ -y aws-cfn-bootstrap\\n",\n\n "/opt/aws/bin/cfn-init
+ -v ",\n " --stack ", { "Ref"
+ : "AWS::StackName" },\n " --resource WebServerInstance
+ ",\n " --region ", { "Ref" :
+ "AWS::Region" }, "\\n",\n\n "/opt/aws/bin/cfn-signal
+ -e $? ",\n " --stack ", { "Ref"
+ : "AWS::StackName" },\n " --resource WebServerInstance
+ ",\n " --region ", { "Ref" :
+ "AWS::Region" }, "\\n"\n ]]}}\n },\n "CreationPolicy"
+ : {\n "ResourceSignal" : {\n "Timeout"
+ : "PT15M"\n }\n }\n }\n },\n\n "Outputs"
+ : {\n "URL" : {\n "Value" : { "Fn::Join"
+ : [ "", ["http://", { "Fn::GetAtt" : ["WebServerInstance",
+ "PublicIp"] }]]},\n "Description" : "Newly created
+ application URL"\n }\n }\n}\n\n\n \n
+ \ Original\n Processed\n \n
+ \ \n \n ef21b2b3-b052-11e8-b122-b7ec86b65cbf\n
+ \ \n\n"
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:08 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145808Z
+ X-Amz-Content-Sha256:
+ - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a56353e4593a8335aa9c49971299471d9a5b1c11da46d3228747aba982ab5e0d
+ Content-Length:
+ - '74'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - ef93d579-b052-11e8-bff2-9de952bbfebd
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '8877'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:08 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2017-05-03T10:46:51.634Z
+ EmsRe-Attac-18IYH2NXW163I
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ AttachGateway
+ AWS::EC2::VPCGatewayAttachment
+
+
+ 2017-05-03T10:46:59.572Z
+ EmsRe-Inbou-1M80E3XJX5ZG6
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:56.467Z
+ EmsRe-Inbou-E8UR0I5STC4V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:55.099Z
+ EmsRe-Inbou-1E29UZ91J3L0R
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundSSHNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:51.481Z
+ sg-76c10f08
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-05-03T10:46:29.550Z
+ igw-64924d02
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InternetGateway
+ AWS::EC2::InternetGateway
+
+
+ 2017-05-03T10:46:34.869Z
+ acl-e616ad9f
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ NetworkAcl
+ AWS::EC2::NetworkAcl
+
+
+ 2017-05-03T10:46:56.226Z
+ EmsRe-OutBo-1NZIAZJB04JPV
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:56.162Z
+ EmsRe-OutBo-11CPJOERKOC1S
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPSNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:57.712Z
+ EmsRe-OutBo-1VCOFXN25WKE2
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:47:11.450Z
+ EmsRe-Route-CE90KA6C89YL
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Route
+ AWS::EC2::Route
+
+
+ 2017-05-03T10:46:35.945Z
+ rtb-d37690ab
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ RouteTable
+ AWS::EC2::RouteTable
+
+
+ 2017-05-03T10:46:51.908Z
+ subnet-2190b144
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Subnet
+ AWS::EC2::Subnet
+
+
+ 2017-05-03T10:47:12.194Z
+ aclassoc-5960cf29
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetNetworkAclAssociation
+ AWS::EC2::SubnetNetworkAclAssociation
+
+
+ 2017-05-03T10:47:11.882Z
+ rtbassoc-d35ff3a8
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetRouteTableAssociation
+ AWS::EC2::SubnetRouteTableAssociation
+
+
+ 2017-05-03T10:46:30.347Z
+ vpc-8cf117f5
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ VPC
+ AWS::EC2::VPC
+
+
+ 2017-05-03T10:49:38.256Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::CloudFormation::Stack
+
+
+
+
+ ef93d579-b052-11e8-bff2-9de952bbfebd
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:08 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145808Z
+ X-Amz-Content-Sha256:
+ - 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2951aa5027b8bb8a57e9b07a2abeb4ec94f8191f382e0374f4df98d0893d3aea
+ Content-Length:
+ - '67'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - efe2e075-b052-11e8-b4f5-2bcee048e305
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '11953'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:09 GMT
+ body:
+ encoding: UTF-8
+ string: "\n
+ \ \n {\n "AWSTemplateFormatVersion"
+ : "2010-09-09",\n\n "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.",\n\n "Parameters" : {\n\n "InstanceType"
+ : {\n "Description" : "WebServer EC2 instance type",\n
+ \ "Type" : "String",\n "Default" :
+ "t2.nano",\n "AllowedValues" : [ "t2.nano",
+ "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 "KeyName": {\n "Description":
+ "Name of an existing EC2 KeyPair to enable SSH access to the instances",\n
+ \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription":
+ "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
+ {\n "Description": "Db password",\n "Type":
+ "String",\n "NoEcho": "true", \n "Default":
+ "adminadmin"\n },\t\n\n "SSHLocation" : {\n "Description"
+ : " The IP address range that can be used to SSH to the EC2 instances",\n
+ \ "Type": "String",\n "MinLength":
+ "9",\n "MaxLength": "18",\n "Default":
+ "0.0.0.0/0",\n "AllowedPattern": "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
+ \ "ConstraintDescription": "must be a valid IP CIDR range
+ of the form x.x.x.x/x."\n }\n },\n\n "Mappings" : {\n
+ \ "RegionMap" : {\n "us-east-1" : { "AMI"
+ : "ami-7f418316" },\n "us-west-1" : { "AMI"
+ : "ami-951945d0" },\n "us-west-2" : { "AMI"
+ : "ami-16fd7026" },\n "eu-west-1" : { "AMI"
+ : "ami-24506250" },\n "sa-east-1" : { "AMI"
+ : "ami-3e3be423" },\n "ap-southeast-1" : { "AMI"
+ : "ami-74dda626" },\n "ap-southeast-2" : { "AMI"
+ : "ami-b3990e89" },\n "ap-northeast-1" : { "AMI"
+ : "ami-dcfa4edd" }\n }\n },\n\n "Resources" : {\n\n
+ \ "VPC" : {\n "Type" : "AWS::EC2::VPC",\n
+ \ "Properties" : {\n "CidrBlock" : "10.2.0.0/16",\n
+ \ "Tags" : [ {"Key" : "Application", "Value"
+ : { "Ref" : "AWS::StackId"} } ]\n }\n },\n\n "Subnet"
+ : {\n "Type" : "AWS::EC2::Subnet",\n "Properties"
+ : {\n "VpcId" : { "Ref" : "VPC" },\n
+ \ "CidrBlock" : "10.2.0.0/24",\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "InternetGateway"
+ : {\n "Type" : "AWS::EC2::InternetGateway",\n "Properties"
+ : {\n "Tags" : [ {"Key" : "Application",
+ "Value" : { "Ref" : "AWS::StackId"} } ]\n }\n
+ \ },\n\n "AttachGateway" : {\n "Type" : "AWS::EC2::VPCGatewayAttachment",\n
+ \ "Properties" : {\n "VpcId" : { "Ref"
+ : "VPC" },\n "InternetGatewayId" : { "Ref"
+ : "InternetGateway" }\n }\n },\n\n "RouteTable"
+ : {\n "Type" : "AWS::EC2::RouteTable",\n "Properties"
+ : {\n "VpcId" : {"Ref" : "VPC"},\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "Route"
+ : {\n "Type" : "AWS::EC2::Route",\n "DependsOn"
+ : "AttachGateway",\n "Properties" : {\n "RouteTableId"
+ : { "Ref" : "RouteTable" },\n "DestinationCidrBlock"
+ : "0.0.0.0/0",\n "GatewayId" : { "Ref"
+ : "InternetGateway" }\n }\n },\n\n "SubnetRouteTableAssociation"
+ : {\n "Type" : "AWS::EC2::SubnetRouteTableAssociation",\n
+ \ "Properties" : {\n "SubnetId" : { "Ref"
+ : "Subnet" },\n "RouteTableId" : { "Ref"
+ : "RouteTable" }\n }\n },\n\n "NetworkAcl"
+ : {\n "Type" : "AWS::EC2::NetworkAcl",\n "Properties"
+ : {\n "VpcId" : {"Ref" : "VPC"},\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "InboundHTTPNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "100",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "80", "To"
+ : "80"}\n }\n },\n\n "InboundSSHNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "101",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "22", "To"
+ : "22"}\n }\n },\n\n "InboundResponsePortsNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "102",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "1024", "To"
+ : "65535"}\n }\n },\n\n "OutBoundHTTPNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "100",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "80", "To"
+ : "80"}\n }\n },\n\n "OutBoundHTTPSNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "101",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "443", "To"
+ : "443"}\n }\n },\n\n "OutBoundResponsePortsNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "102",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "1024", "To"
+ : "65535"}\n }\n },\n\n "SubnetNetworkAclAssociation"
+ : {\n "Type" : "AWS::EC2::SubnetNetworkAclAssociation",\n
+ \ "Properties" : {\n "SubnetId" : { "Ref"
+ : "Subnet" },\n "NetworkAclId" : { "Ref"
+ : "NetworkAcl" }\n }\n },\n\n "InstanceSecurityGroup"
+ : {\n "Type" : "AWS::EC2::SecurityGroup",\n "Properties"
+ : {\n "VpcId" : { "Ref" : "VPC" },\n
+ \ "GroupDescription" : "Enable SSH access via port 22",\n
+ \ "SecurityGroupIngress" : [\n {"IpProtocol"
+ : "tcp", "FromPort" : "22", "ToPort"
+ : "22", "CidrIp" : { "Ref" : "SSHLocation"}},\n
+ \ { "IpProtocol" : "tcp", "FromPort"
+ : "80", "ToPort" : "80", "CidrIp"
+ : "0.0.0.0/0"}\n ]\n }\n },\n\n\n "WebServerInstance"
+ : {\n "Type" : "AWS::CloudFormation::Stack",\n
+ \ "DependsOn" : "AttachGateway",\n "Properties"
+ : {\n "TemplateURL" : "https://s3.amazonaws.com/cf-templates-13wbkx0x8rgs2-us-east-1/EmsRefreshSpecStackTemplates/cf-vpc-template-for-vm",\n
+ \ "Parameters" : {\n "DBRootPassword"
+ : { "Ref" : "DBRootPassword" },\n "InstanceType"
+ : { "Ref" : "InstanceType" },\n "KeyName"
+ : { "Ref" : "KeyName" },\n "InstanceSecurityGroupID":
+ { "Ref" : "InstanceSecurityGroup" },\n "SubnetID"
+ : { "Ref" : "Subnet" }\n }\n }\n
+ \ }\n },\n\n "Outputs" : {\n "Bastion" : {\n "Description"
+ : "IP Address of the host",\n "Value" : { "Ref"
+ : "WebServerInstance" }\n }\n }\n}\n\n \n
+ \ Original\n Processed\n \n
+ \ \n \n efe2e075-b052-11e8-b4f5-2bcee048e305\n
+ \ \n\n"
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:09 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145809Z
+ X-Amz-Content-Sha256:
+ - a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1cb500dfd9b1d348cffa4f8b1b54d2623146739a1dc4a27813cd27b7ea15acbd
+ Content-Length:
+ - '97'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - f03daa7b-b052-11e8-89bc-072c0f25f17e
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '9436'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:09 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2017-03-27T12:21:09.758Z
+ EmsRe-Gatew-1LHVB7WCBDH2J
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ GatewayToInternet
+ AWS::EC2::VPCGatewayAttachment
+
+
+ 2017-03-27T12:21:18.408Z
+ EmsRe-Inbou-114C8QHJD1A0
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundDynamicPortPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-03-27T12:21:17.491Z
+ EmsRe-Inbou-10A1RE6O5U1OG
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundHTTPPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-03-27T12:21:18.284Z
+ EmsRe-Inbou-NCOLEFTRFR80
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundSSHPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-03-27T12:20:47.040Z
+ igw-f3b65295
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InternetGateway
+ AWS::EC2::InternetGateway
+
+
+ 2017-03-27T12:21:17.267Z
+ EmsRe-Outbo-GYCVGUJ9J26R
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutboundPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-03-27T12:21:19.063Z
+ EmsRefres-PublicEl-15YIQXDK2TNOF
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2017-03-27T12:21:12.098Z
+ sg-5946c626
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicLoadBalancerSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-03-27T12:20:55.848Z
+ acl-e98b7590
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicNetworkAcl
+ AWS::EC2::NetworkAcl
+
+
+ 2017-03-27T12:21:30.588Z
+ EmsRe-Publi-13PVGYUA7QQU3
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicRoute
+ AWS::EC2::Route
+
+
+ 2017-03-27T12:20:54.594Z
+ rtb-93067bea
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicRouteTable
+ AWS::EC2::RouteTable
+
+
+ 2017-03-27T12:21:09.517Z
+ subnet-de2363bb
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnet
+ AWS::EC2::Subnet
+
+
+ 2017-03-27T12:21:35.209Z
+ aclassoc-4471fa35
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnetNetworkAclAssociation
+ AWS::EC2::SubnetNetworkAclAssociation
+
+
+ 2017-03-27T12:21:31.953Z
+ rtbassoc-1f3b2c67
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnetRouteTableAssociation
+ AWS::EC2::SubnetRouteTableAssociation
+
+
+ 2017-03-27T12:20:47.805Z
+ vpc-c3d2f1a5
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ VPC
+ AWS::EC2::VPC
+
+
+ 2017-03-27T12:23:33.873Z
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerFleet
+ AWS::AutoScaling::AutoScalingGroup
+
+
+ 2017-03-27T12:21:41.260Z
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerLaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2017-03-27T12:21:35.209Z
+ sg-9242c2ed
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+
+
+ f03daa7b-b052-11e8-89bc-072c0f25f17e
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:10 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145810Z
+ X-Amz-Content-Sha256:
+ - d196f07c8d09b8b0ccee298e3e6f0e4e89593cbeea565c8601f126be53b544a8
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=254d1f4c1d11eea460eccf563c0c863a42d2c5b582a4b59ffea105e06a1fb76e
+ Content-Length:
+ - '90'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - f08ba3be-b052-11e8-b4f5-2bcee048e305
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '49484'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:58:10 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {
+ "AWSTemplateFormatVersion": "2010-09-09",
+ "Description": "AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.",
+ "Parameters": {
+ "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": "Lockdown SSH access to the bastion host (default can be accessed from anywhere)",
+ "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 CIDR range of the form x.x.x.x/x."
+ },
+ "WebServerInstanceType": {
+ "Description": "WebServer Server EC2 instance type",
+ "Type": "String",
+ "Default": "t2.small",
+ "AllowedValues": [
+ "t1.micro",
+ "t2.nano",
+ "t2.micro",
+ "t2.small",
+ "t2.medium",
+ "t2.large",
+ "m1.small",
+ "m1.medium",
+ "m1.large",
+ "m1.xlarge",
+ "m2.xlarge",
+ "m2.2xlarge",
+ "m2.4xlarge",
+ "m3.medium",
+ "m3.large",
+ "m3.xlarge",
+ "m3.2xlarge",
+ "m4.large",
+ "m4.xlarge",
+ "m4.2xlarge",
+ "m4.4xlarge",
+ "m4.10xlarge",
+ "c1.medium",
+ "c1.xlarge",
+ "c3.large",
+ "c3.xlarge",
+ "c3.2xlarge",
+ "c3.4xlarge",
+ "c3.8xlarge",
+ "c4.large",
+ "c4.xlarge",
+ "c4.2xlarge",
+ "c4.4xlarge",
+ "c4.8xlarge",
+ "g2.2xlarge",
+ "g2.8xlarge",
+ "r3.large",
+ "r3.xlarge",
+ "r3.2xlarge",
+ "r3.4xlarge",
+ "r3.8xlarge",
+ "i2.xlarge",
+ "i2.2xlarge",
+ "i2.4xlarge",
+ "i2.8xlarge",
+ "d2.xlarge",
+ "d2.2xlarge",
+ "d2.4xlarge",
+ "d2.8xlarge",
+ "hi1.4xlarge",
+ "hs1.8xlarge",
+ "cr1.8xlarge",
"cc2.8xlarge",
"cg1.4xlarge"
],
@@ -2887,11 +3998,11 @@ http_interactions:
- ca81a0f0-a291-11e7-98e3-edb0b13c39c4
+ f08ba3be-b052-11e8-b4f5-2bcee048e305
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:57 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:11 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -2904,14 +4015,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080757Z
+ - 20180904T145811Z
X-Amz-Content-Sha256:
- cf1ad38a5e121d365a76501102e3a4a993d4244281ebab672dff531c33021b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6d324f780c1e245276d049b3dd5926fecd1e9036fdd4cbb722814ca335f14651
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=547bc52775776db0ee74f65a7cfe157df5de00b814c075abe065fd6b5e833168
Content-Length:
- '95'
Accept:
@@ -2922,13 +4033,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - cb988fd1-a291-11e7-bf7d-873244a15acc
+ - f167abb0-b052-11e8-a495-dd3e63fa60d1
Content-Type:
- text/xml
Content-Length:
- - '1993'
+ - '2513'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:52 GMT
+ - Tue, 04 Sep 2018 14:58:11 GMT
body:
encoding: UTF-8
string: |
@@ -2939,6 +4052,9 @@ http_interactions:
2017-03-27T11:33:42.596Z
EmsRefres-ElasticL-UPI0RRUFR3HI
CREATE_COMPLETE
+
+ NOT_CHECKED
+
ElasticLoadBalancer
AWS::ElasticLoadBalancing::LoadBalancer
@@ -2946,6 +4062,9 @@ http_interactions:
2017-03-27T11:34:04.759Z
EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -2953,6 +4072,9 @@ http_interactions:
2017-03-27T11:34:09.927Z
EmsRefreshSpecStackWithAutoscalingGroup2-LaunchConfig-TS2701Z3OAJM
CREATE_COMPLETE
+
+ NOT_CHECKED
+
LaunchConfig
AWS::AutoScaling::LaunchConfiguration
@@ -2960,17 +4082,20 @@ http_interactions:
2017-03-27T11:35:43.230Z
EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerGroup
AWS::AutoScaling::AutoScalingGroup
- cb988fd1-a291-11e7-bf7d-873244a15acc
+ f167abb0-b052-11e8-a495-dd3e63fa60d1
http_version:
- recorded_at: Tue, 26 Sep 2017 08:07:58 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:11 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -2983,14 +4108,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080758Z
+ - 20180904T145811Z
X-Amz-Content-Sha256:
- 58ff96b898c867bf25034c5573221c35d0e0af4daa07f74edc786725101bc560
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=459d745a4a380e35420ea2c90eda3266a17f092c3fd7c244e3b8f926dc3ec9e0
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b991aee0e8943523232fb4ba38de9da82d083985c1d5eeb17429a4cf29dce7f2
Content-Length:
- '88'
Accept:
@@ -3001,7 +4126,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - cc0bead4-a291-11e7-ab7b-c571f1c90ba1
+ - f1b5caf9-b052-11e8-bff2-9de952bbfebd
Content-Type:
- text/xml
Content-Length:
@@ -3009,7 +4134,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:53 GMT
+ - Tue, 04 Sep 2018 14:58:12 GMT
body:
encoding: UTF-8
string: |
@@ -3911,33 +5036,1246 @@ http_interactions:
- cc0bead4-a291-11e7-ab7b-c571f1c90ba1
+ f1b5caf9-b052-11e8-bff2-9de952bbfebd
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:00 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:13 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=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145813Z
+ X-Amz-Content-Sha256:
+ - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=68e3a63c89e1dfdacd1987265c569b0ff2dc6a55621f0cf6eaa9773e3f20960c
+ 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:
+ - Tue, 04 Sep 2018 14:58:13 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 42e6f6ca-ebdc-4dad-b4e2-fa740587035c
+
+ -
+ ami-0908219546812fe3e
+ 200278856672/dberger-clone
+ available
+ 200278856672
+ 2018-08-27T21:46:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ dberger-clone
+ Clone of bronagh1213
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-07e530b95d909f36d
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-098d7f1f
+ 200278856672/lads_image_from_volume
+ available
+ 200278856672
+ 2017-01-27T15:52:29.000Z
+ false
+ x86_64
+ machine
+ lads_image_from_volume
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fb2163b24646b146
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-0b8474d3c25191349
+ 200278856672/import-ami-09bf69373591f57dc
+ available
+ 200278856672
+ 2018-08-31T14:30:06.000Z
+ false
+ x86_64
+ machine
+ import-ami-09bf69373591f57dc
+ AWS-VMImport service: Linux - CentOS Linux release 7.5.1804 (Core) - 3.10.0-862.11.6.el7.x86_64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03e398e6e95827703
+ 67
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ simaishi-g5
+
+
+ xen
+ true
+
+ -
+ ami-1b3cc30d
+ jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ available
+ 200278856672
+ 2017-01-30T22:12:24.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ jerryk_instance_store_ami01
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-204c8436
+ 200278856672/Ladas_test_5_image
+ available
+ 200278856672
+ 2017-02-16T15:23:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ Ladas_test_5_image
+ testing snapshot events
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-eafde662
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-20e90e49
+ jf-test-copy/jf-test-copy.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+
+
+
+ xen
+
+ -
+ ami-22470534
+ 200278856672/ssa-agent-0525
+ available
+ 200278856672
+ 2017-05-25T18:23:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-0525
+ working version 1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-08810574
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-25a81c4c
+ 200278856672/suse-11-server-64
+ available
+ 200278856672
+ 2012-08-22T01:42:54.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ suse-11-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6eee471d
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-64
+
+
+ xen
+
+ -
+ ami-320c005a
+ 200278856672/t2 rhel 7.1
+ available
+ 200278856672
+ 2015-04-28T17:25:53.000Z
+ false
+ x86_64
+ machine
+ t2 rhel 7.1
+ rhel
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8b289bec
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ mkanoor_t2_rhel
+
+
+ xen
+
+ -
+ ami-3bae1a52
+ 200278856672/ubuntu-11.10-server-32
+ available
+ 200278856672
+ 2012-08-22T00:31:49.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-11.10-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-968927e5
+ 8
+ false
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-32
+
+
+ xen
+
+ -
+ ami-3f0e495a
+ 200278856672/CFME5.5.0
+ available
+ 200278856672
+ 2015-09-30T16:31:07.000Z
+ false
+ x86_64
+ machine
+ CFME5.5.0
+ Red Hat CloudForms 5.5 AMI
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdf
+
+ snap-9dd602d7
+ 50
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sda1
+
+ snap-1d177976
+ 40
+ false
+ standard
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ cfme-5.5
+
+
+ xen
+
+ -
+ ami-45c9df3e
+ 200278856672/ladas_test_111_snapshot_image_sdd
+ available
+ 200278856672
+ 2017-09-04T15:05:02.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image_sdd
+
+ ebs
+ /dev/sdd
+
+
-
+ /dev/sdd
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-57318e3c
+ 200278856672/mkanoor_testing_vpc
+ available
+ 200278856672
+ 2015-08-24T15:36:54.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ mkanoor_testing_vpc
+ mkanoor_testing_vpc
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5ab0eb13
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-5769193e
+ 200278856672/EmsRefreshSpec-Image
+ available
+ 200278856672
+ 2013-06-22T02:28:44.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-Image
+ EmsRefreshSpec-Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5f38cd0e
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-5e86fe48
+ 200278856672/ssa-agent-hsong
+ available
+ 200278856672
+ 2017-05-18T14:44:02.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-hsong
+ [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a5070b29f3ddcd92
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-63026775
+ 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ available
+ 200278856672
+ 2017-04-26T15:30:36.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-PoweredOn-VPC_snapshot
+ EmsRefreshSpec-PoweredOn-VPC_description
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0001b68fed820fb79
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+
+ snap-0f1eb18bc955eb28a
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-63ac180a
+ 200278856672/redhat-6.3-32
+ available
+ 200278856672
+ 2012-08-21T23:30:21.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ redhat-6.3-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-d23a95a1
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-32
+
+
+ xen
+
+ -
+ ami-67bc0b0e
+ 200278856672/miq-extract-base-ubuntu-12.04
+ available
+ 200278856672
+ 2012-08-27T19:14:39.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ miq-extract-base-ubuntu-12.04
+ ubuntu 12.04 + rvm/Ruby1.9
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-d03941a3
+ 8
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ miq-extract-base-ubuntu-12.04
+
+
+ xen
+
+ -
+ ami-7c4aa86a
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2017-01-13T11:31:28.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+ [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6054c98a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7d85fd6b
+ 200278856672/hsong-ssa-agent-v1
+ available
+ 200278856672
+ 2017-05-18T14:21:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ hsong-ssa-agent-v1
+ [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05ef19f30ffe6ceaa
+ 80
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-8bf2e4f0
+ 200278856672/ladas_test_111_snapshot_image
+ available
+ 200278856672
+ 2017-09-04T15:04:28.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-95ad19fc
+ 200278856672/ubuntu-11.10-server-64
+ available
+ 200278856672
+ 2012-08-22T00:20:33.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ ubuntu-11.10-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-90bc12e3
+ 8
+ false
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-64
+
+
+ xen
+
+ -
+ ami-a7185ec2
+ 200278856672/CFME-55Image
+ available
+ 200278856672
+ 2015-10-01T15:35:55.000Z
+ false
+ x86_64
+ machine
+ CFME-55Image
+ CFME-55Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+
+ 30
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sda1
+
+ snap-249e4c6c
+ 40
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-ad43a4c4
+ rpo-images/miq-ec2-proto.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+ extract-proto0
+
+
+ xen
+
+ -
+ ami-bbc9dac0
+ 200278856672/ladas_test111
+ available
+ 200278856672
+ 2017-09-06T15:25:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ ladas_test111
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09505262c29651f47
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-bda014d4
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2012-08-21T21:31:39.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-5210bc21
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-64
+
+
+ xen
+
+ -
+ ami-c68639af
+ miq-extract-images/evm-extract.manifest.xml
+ available
+ 200278856672
+ 2012-10-11T20:34:52.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ evm-extract
+ instance-store
+
+
-
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ evm-extract
+
+
+ xen
+
+ -
+ ami-cd43a4a4
+ rpo-images/miq-ec2-extract.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+ extract-proto-old
+
+
+ xen
+
+ -
+ ami-cf08bda6
+ rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ available
+ 200278856672
+ 2012-08-19T18:43:47.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ extract-proto3
+
+
+ xen
+
+ -
+ ami-cf96afb0
+ 200278856672/dberger_test_image
+ available
+ 200278856672
+ 2018-07-17T15:29:53.000Z
+ true
+ x86_64
+ machine
+ simple
+ dberger_test_image
+ Just a test image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0400b13c0acfdffa9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ org
+ cfme
+
+
+ xen
+ true
+
+ -
+ ami-ebcb7e82
+ rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T02:47:43.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ ubuntu10.04-rvm-ruby1.9
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-10.04-rvm-ruby1.9
+
+
+ xen
+
+ -
+ ami-edaa1f84
+ rpo-work/miq-test.img.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T18:51:02.000Z
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ test-linux
+
+
+ xen
+
+ -
+ ami-edad1984
+ 200278856672/ubuntu-12.04-server-32
+ available
+ 200278856672
+ 2012-08-22T00:07:18.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-12.04-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8ec06efd
+ 8
+ true
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-12.04-server-32
+
+
+ xen
+
+ -
+ ami-f3a81c9a
+ 200278856672/suse-11-server-32
+ available
+ 200278856672
+ 2012-08-22T01:57:01.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ suse-11-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-baf35ac9
+ 10
+ false
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-32
+
+
+ xen
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:58:15 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=2016-11-15
+ string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080800Z
+ - 20180904T145816Z
X-Amz-Content-Sha256:
- - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b23f7397f6f0a5c0c436848e547e263c0f85cf24eb8129ff1a4a1ef67f89683e
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=82ba78f4dafa22cbfd73e732a9f800acce9e17f977882e99846794ad5c8e20cf
Content-Length:
- - '103'
+ - '110'
Accept:
- "*/*"
response:
@@ -3952,7 +6290,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:54 GMT
+ - Tue, 04 Sep 2018 14:58:18 GMT
Server:
- AmazonEC2
body:
@@ -3960,29 +6298,3277 @@ http_interactions:
string: |-
- 31a7cc4f-297c-44bb-a46b-a005930445b6
+ ab341498-f0f3-49b3-a224-460b3a6d3e6c
-
- ami-098d7f1f
- 200278856672/lads_image_from_volume
+ ami-0293da6a
+ 309956199498/RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T20:32:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4bfb05c4
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-02a9ce6b
+ 309956199498/RHEL-6.4_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-04-10T22:38:50.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.4_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c3be779a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-02ba6009c5e7a02ab
+ 309956199498/RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-11T01:14:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-01c28ef48fde91a74
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-036a036a
+ 309956199498/RHEL-6.1_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:23:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.1_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b9b870e4
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-03d01c6a
+ 309956199498/RHEL-5.5-Starter-EBS-i386-14-Access2
+ available
+ 309956199498
+ 2011-10-10T14:02:38.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.5-Starter-EBS-i386-14-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-9693f8f5
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-0456c465f72bd0c95
+ 309956199498/RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-15T15:58:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-01cc239ae078f91f5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0707307d
+ 309956199498/RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-23T02:44:16.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0474fffe1f2eded28
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-071c247d
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ available
+ 679593333241
+ 2018-01-29T11:05:45.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-06c7170eb18e5058c
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0845091f
+ 309956199498/RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-05T21:30:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-93baa0ea
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-086f9875
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ available
+ 679593333241
+ 2018-03-02T05:49:09.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-02-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0fd087ac74cf66429
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-09ae22a8a98cc4f9d
+ 309956199498/RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-16T19:16:22.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-074d480ddb740eb71
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0bd11d62
+ 309956199498/RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T15:11:49.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4c2d472f
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-0d70a070
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:42:07.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0e782571
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-25T17:10:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-010aa1159136454b2
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0fe82466
+ 309956199498/RHEL-6.1-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2011-10-10T21:32:39.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.1-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0292e761
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-10251c7a
+ 309956199498/RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:22:53.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7d72846a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-10663b78
+ 309956199498/RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-25T20:24:21.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bf56423e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-11322278
+ 309956199498/RHEL-6.5_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2014-04-01T13:58:44.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ed50b637
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-13d0f569
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ available
+ 679593333241
+ 2018-01-12T06:52:56.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-10
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-017d1cfcc9b402d3e
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-140eaf7d
+ 309956199498/RHEL-6.3-Starter-i386-1-Access2
+ available
+ 309956199498
+ 2012-06-04T19:10:28.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.3-Starter-i386-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-186d0067
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-14e9c76e
+ 309956199498/RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-18T21:29:08.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0f42b03b4565e957e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-179db56c
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ available
+ 679593333241
+ 2017-08-10T00:08:51.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-061b22038dcd055dd
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-180a540f
+ 309956199498/RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T20:06:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-88a0f200
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-1c43ff74
+ 309956199498/RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-09T20:00:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7d0526da
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-1def2374
+ 309956199498/RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T20:38:43.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-dc5227bf
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-227b0c4a
+ 309956199498/RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-05T22:18:23.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bb531132
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-261f5a4c
+ 309956199498/Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-17T16:53:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7a8a411b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-2a532b40
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-2facc546
+ 309956199498/RHEL-5.9_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T01:15:43.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.9_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-46973f1b
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-30185959
+ 309956199498/RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ available
+ 309956199498
+ 2013-08-13T20:39:20.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2cdf2b7b
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-3068da58
+ 309956199498/RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T13:23:21.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-008530a7
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-3368015a
+ 309956199498/RHEL-6.0_GA-x86_64-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:51:24.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.0_GA-x86_64-6-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3828e165
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-346b9c49
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ available
+ 679593333241
+ 2018-03-02T05:48:56.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-099825c0474cb713a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-3e6eb444
+ 309956199498/RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-24T16:16:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0d59b38500ea97665
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-416a7028
+ 309956199498/RHEL-6.5_GA-i386-4-Access2
+ available
+ 309956199498
+ 2014-04-22T14:35:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09e954d6
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-46a4f52e
+ 309956199498/RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-20T15:33:32.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1af51e9b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-46b9b62e
+ 309956199498/RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-30T15:38:01.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a93871dc
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4769732e
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2014-04-22T15:09:36.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d353ee0c
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4bf3d731
+ aws-marketplace/CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ available
+ 679593333241
+ 2018-01-12T20:33:32.000Z
+ false
+
+
-
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ x86_64
+ machine
+ aws-marketplace
+ CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ CentOS Linux 7 x86_64 HVM EBS 1801_01
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0061a4a372352a41e
+ 8
+ false
+ standard
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-4d752124
+ 309956199498/RHEL-5.10_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:50:01.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.10_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d2b5f1d2
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4d7a0f32
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ available
+ 679593333241
+ 2018-06-01T11:25:10.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0bbdb96a310a18f2a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-4eaf3758
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-24T15:22:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04ff5f6baaa0e6941
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-4f53dd26
+ 309956199498/RHEL-5.9_GLD-x86_64-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:12:36.000Z
+ false
+ x86_64
+ machine
+ aki-ecfa0185
+ RHEL-5.9_GLD-x86_64-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-52b6db1e
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4f85ec26
+ 309956199498/RHEL-5.6_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-19T16:36:21.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.6_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ef87c53
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4fe2fa58
+ 309956199498/RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-03T15:56:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05db0f9172aa4584a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-531c4a29
+ 309956199498/RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:33:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05276352df4811187
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-5328fe38
+ 309956199498/RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-07-17T02:08:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4a7c1639
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-563ca440
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-25T00:42:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02a781e1733af35eb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-5dff9c4a
+ 309956199498/RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-08-25T14:32:56.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c4e89758
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-5ebdda37
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ available
+ 309956199498
+ 2013-04-11T02:10:05.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c37bb19a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ hvm
+ xen
+
+ -
+ ami-6178480b
+ 309956199498/RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-19T23:05:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-af3b8ed0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-61b69108
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ available
+ 309956199498
+ 2013-11-20T21:42:28.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0db87915
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-61d4ac77
+ 309956199498/RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-05-18T18:23:45.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0bd1c49ec2e5f5faf
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-645bae0c
+ 309956199498/RHEL-7.0_GA_HVM-x86_64-3-Access2
+ available
+ 309956199498
+ 2014-05-28T19:16:58.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_GA_HVM-x86_64-3-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ac125df
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-68ee1915
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-01T23:39:39.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b9e559310af1cd36
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6ea1e806
+ 309956199498/RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T22:54:38.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6b906be4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6fc25c15
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ available
+ 679593333241
+ 2017-11-30T05:32:04.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0a17e753d76724406
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-7305bd18
+ 309956199498/RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2015-08-27T11:36:17.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f7944281
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-7368011a
+ 309956199498/RHEL-6.0_GA-i386-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:44:20.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.0_GA-i386-6-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4119d01c
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7375211a
+ 309956199498/RHEL-5.10-GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:48:28.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.10-GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2ea9ed2e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-73aac31a
+ 309956199498/RHEL-5.7_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:09:06.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.7_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ddfc5580
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-74b17c1c
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2
+ available
+ 309956199498
+ 2014-07-14T21:53:46.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-98227e33
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-766ad81e
+ 309956199498/RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T12:58:23.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1405afb3
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-78175611
+ 309956199498/RHEL-6.4_GA-i386-10-Access2
+ available
+ 309956199498
+ 2013-08-13T19:30:50.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-49bc491e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-78400710
+ 309956199498/RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-29T01:07:35.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2d5685a0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-79adc410
+ 309956199498/RHEL-5.8_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:44:18.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.8_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-fe3990a3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7a96b801
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:37:28.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0822784885cd20aff
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-7adcf900
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ available
+ 679593333241
+ 2018-01-12T06:51:53.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-03fbeeb66a6618d09
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-7b0c6312
+ 309956199498/RHEL-6.4_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:29.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03a50c59
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7dea2614
+ 309956199498/RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ available
+ 309956199498
+ 2011-10-10T23:01:40.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2ec9bc4d
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7f0c6316
+ 309956199498/RHEL-6.4_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7fa40d25
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7f6af100
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T12:44:23.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-057d3a00fab9a4150
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-81122afb
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ available
+ 679593333241
+ 2018-01-29T11:06:15.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-094d0e7007d8b3169
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-81573ee8
+ 309956199498/RHEL-5.7_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T21:56:07.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.7_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7a0aa627
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-817bf7fe
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ available
+ 679593333241
+ 2018-05-09T17:44:39.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-04-23
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0399eb57c40c5f605
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-836c05ea
+ 309956199498/RHEL-6.2_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:20:34.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.2_GA-x86_64-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d7854e8a
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-89756fe0
+ 309956199498/RHEL-6.5_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2014-04-22T14:32:02.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-7-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c9ff4216
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8b52dce2
+ 309956199498/RHEL-5.9_GLD-i386-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:04:19.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.9_GLD-i386-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a04b26ec
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8cbd6de4
+ 309956199498/RHEL-5.11_Beta-i386-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:56.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_Beta-i386-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bd864512
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8d0bdae4
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2012-01-31T16:22:44.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e6b3ab82
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8e502c98
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:58:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09a24861343c92e4a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-8e5a67e4
+ 309956199498/RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-25T00:30:40.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-10fb9f02
+ 5
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-90a8bbfa
+ 309956199498/RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-04-13T01:07:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-fcafc1e6
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-936a03fa
+ 309956199498/RHEL-6.1_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:31:04.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.1_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6bc60e36
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-93bdadfa
+ 309956199498/RHEL-6.5_GA-i386-1-Access2
+ available
+ 309956199498
+ 2014-04-02T17:52:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-1-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-29be68f3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-95005f82
+ 309956199498/RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-25T21:19:31.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3d4278c4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-950e95ea
+ 309956199498/RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T15:08:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b24b01fd1db26eeb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9819ad8e
+ 309956199498/RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-03-20T03:38:51.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0898973d25521cccd
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-990b64f0
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2013-05-10T00:09:00.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b1278eeb
+ 7
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-9ceabde6
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T01:55:41.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a1cfc902770c514d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9d2f098b
+ 309956199498/RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:15:03.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ee220de9f1633620
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a05415c9
+ 309956199498/RHEL-6.4_GA-x86_64-10-Access2
+ available
+ 309956199498
+ 2013-08-14T13:38:22.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-46dc1211
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a090b8db
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ available
+ 679593333241
+ 2017-08-10T00:09:12.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0520447773371dd49
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-a1563fc8
+ 309956199498/RHEL-5.8_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T22:28:38.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.8_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f48926a9
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a15a33c8
+ 309956199498/RHEL-6.3_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-18T14:27:58.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.3_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3bf75166
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a16eacc8
+ 309956199498/RHEL-6.0-Starter-EBS-i386-15-Access2
+ available
+ 309956199498
+ 2011-09-23T19:21:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.0-Starter-EBS-i386-15-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-54fb0b37
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a33668b4
+ 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T22:32:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b9a222c1
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a45cf6cc
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:55:37.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-efcdd344
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a5d21ecc
+ 309956199498/RHEL-5.6-Starter-EBS-i386-13-Access2
+ available
+ 309956199498
+ 2011-10-10T16:11:55.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.6-Starter-EBS-i386-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-76630915
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a82204be
+ 309956199498/RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:04:05.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06cad1de61450c3f0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a93531c3
+ 309956199498/RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-03-10T18:46:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d585efd0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-ac5ff5c4
+ 309956199498/RHEL-5.10_GA-i386-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:43:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.10_GA-i386-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b36b7318
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-ac910ed6
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-11-29T19:11:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-023ae83387e571ca7
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-acac51c4
+ 309956199498/RHEL-6.5_GA-i386-6-Access2
+ available
+ 309956199498
+ 2014-06-11T10:45:09.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-i386-6-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a0a94077
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-af5c35c6
+ 309956199498/RHEL-6.3_GA-i386-5-Access2
available
- 200278856672
- 2017-01-27T15:52:29.000Z
+ 309956199498
+ 2013-05-18T15:25:25.000Z
false
- x86_64
+ i386
machine
- lads_image_from_volume
-
+ aki-68ceaf01
+ RHEL-6.3_GA-i386-5-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-0fb2163b24646b146
- 1
+ snap-1b08ae46
+ 6
true
- gp2
+ standard
false
@@ -3991,99 +9577,167 @@ http_interactions:
xen
-
- ami-1b3cc30d
- jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ ami-b1e0e7a6
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-01-30T22:12:24.000Z
+ 309956199498
+ 2016-12-06T19:09:24.000Z
false
x86_64
machine
- aki-825ea7eb
- jerryk_instance_store_ami01
- instance-store
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-c4464775
+ 10
+ true
+ gp2
+ false
+
hvm
xen
-
- ami-204c8436
- 200278856672/Ladas_test_5_image
+ ami-b214e6da
+ 309956199498/RHEL-6.5_GA_HVM-x86_64-6-Access2
available
- 200278856672
- 2017-02-16T15:23:41.000Z
+ 309956199498
+ 2014-06-10T19:16:46.000Z
false
- i386
+ x86_64
machine
- aki-36ed075f
- Ladas_test_5_image
- testing snapshot events
+ RHEL-6.5_GA_HVM-x86_64-6-Access2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-eafde662
- 7
+ snap-3baca6ef
+ 10
true
standard
false
+
+ hvm
+ xen
+
+ -
+ ami-b2bd6dda
+ 309956199498/RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
- ephemeral0
+ /dev/sda1
+
+ snap-4f8043e0
+ 10
+ true
+ gp2
+ false
+
+
+ paravirtual
+ xen
+
+ -
+ ami-b35925a5
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:55:09.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdg
- ephemeral1
+ /dev/sda1
+
+ snap-0fc148ef3438d1e04
+ 10
+ true
+ gp2
+ false
+
- paravirtual
+ hvm
xen
-
- ami-20e90e49
- jf-test-copy/jf-test-copy.img.manifest.xml
+ ami-b4a21ddc
+ 309956199498/RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2014-10-10T13:34:45.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
+ RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bbafa91c
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
xen
-
- ami-22470534
- 200278856672/ssa-agent-0525
+ ami-b62589c9
+ 309956199498/RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-25T18:23:14.000Z
+ 309956199498
+ 2018-04-19T18:55:57.000Z
false
x86_64
machine
simple
- ssa-agent-0525
- working version 1
+ RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-08810574
+ snap-02109fa20ec701636
10
true
gp2
@@ -4095,24 +9749,82 @@ http_interactions:
xen
-
- ami-25a81c4c
- 200278856672/suse-11-server-64
+ ami-bb8c62d0
+ 309956199498/RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
available
- 200278856672
- 2012-08-22T01:42:54.000Z
+ 309956199498
+ 2015-06-04T17:30:59.000Z
false
x86_64
machine
- aki-825ea7eb
- suse-11-server-64
-
+ simple
+ RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-6eee471d
+ snap-8d1009f8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-bd8daeaa
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-11-08T17:14:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a4c8f515
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-be6a98d6
+ 309956199498/RHEL-6.5_GA-x86_64-9-Access2
+ available
+ 309956199498
+ 2014-06-11T03:08:30.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-x86_64-9-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-97627d43
10
true
standard
@@ -4121,32 +9833,56 @@ http_interactions:
paravirtual
-
+ xen
+
+ -
+ ami-befed2d6
+ 309956199498/RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-03-19T21:05:30.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- suse-11-server-64
+ /dev/sda1
+
+ snap-bd88c7d5
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-320c005a
- 200278856672/t2 rhel 7.1
+ ami-c35767a9
+ 309956199498/RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
available
- 200278856672
- 2015-04-28T17:25:53.000Z
+ 309956199498
+ 2016-02-20T03:54:06.000Z
false
x86_64
machine
- t2 rhel 7.1
- rhel
+ simple
+ RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8b289bec
+ snap-0b675a0f
10
true
gp2
@@ -4155,202 +9891,393 @@ http_interactions:
hvm
-
+ xen
+
+ -
+ ami-c56c05ac
+ 309956199498/RHEL-6.2_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:12:17.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.2_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- mkanoor_t2_rhel
+ /dev/sda1
+
+ snap-be7cb4e3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-3bae1a52
- 200278856672/ubuntu-11.10-server-32
+ ami-c5a094bf
+ 309956199498/RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-22T00:31:49.000Z
+ 309956199498
+ 2018-01-22T17:34:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fba1838228dc629f
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-c63d82ae
+ 309956199498/RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-10T14:57:48.000Z
false
i386
machine
- aki-805ea7e9
- ubuntu-11.10-server-32
-
+ aki-8f9dcae6
+ RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-968927e5
- 8
- false
+ snap-4d7a7aea
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-c787eeae
+ 309956199498/RHEL-5.5_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-19T18:39:37.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.5_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fdb5d52
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-cbd306a2
+ 309956199498/RHEL-6.2-Starter-EBS-i386-4-Access2
+ available
+ 309956199498
+ 2011-12-19T17:51:18.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.2-Starter-EBS-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-75094510
+ 6
+ true
standard
false
-
- /dev/sda2
+ /dev/sdf
ephemeral0
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
-
+ xen
+
+ -
+ ami-cd5b32a4
+ 309956199498/RHEL-5.9_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T13:21:46.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.9_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-11.10-server-32
+ /dev/sda1
+
+ snap-04f75059
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-3f0e495a
- 200278856672/CFME5.5.0
+ ami-cdc96aa6
+ 309956199498/RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-09-30T16:31:07.000Z
+ 309956199498
+ 2015-08-04T17:23:22.000Z
false
x86_64
machine
- CFME5.5.0
- Red Hat CloudForms 5.5 AMI
+ simple
+ RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-1d177976
- 40
- false
+ snap-91688ce5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-cfd31fa6
+ 309956199498/RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ available
+ 309956199498
+ 2011-10-10T17:09:26.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-32a7cd51
+ 6
+ true
standard
false
-
/dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-d2d06aba
+ 309956199498/RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-10-17T20:41:16.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
- snap-9dd602d7
- 50
- false
+ snap-110804b7
+ 10
+ true
gp2
false
hvm
-
- -
- Name
- cfme-5.5
-
-
xen
-
- ami-45c9df3e
- 200278856672/ladas_test_111_snapshot_image_sdd
+ ami-d2d369ba
+ 309956199498/RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:05:02.000Z
+ 309956199498
+ 2014-10-17T20:29:05.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image_sdd
-
+ RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
- /dev/sdd
+ /dev/sda1
-
- /dev/sdd
+ /dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-de444878
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-57318e3c
- 200278856672/mkanoor_testing_vpc
+ ami-d97120a3
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-08-24T15:36:54.000Z
+ 309956199498
+ 2018-01-04T21:29:11.000Z
false
x86_64
machine
- aki-1eceaf77
- mkanoor_testing_vpc
- mkanoor_testing_vpc
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-5ab0eb13
- 7
+ snap-056379444619d757b
+ 10
true
- standard
+ gp2
false
- paravirtual
+ hvm
xen
+ true
-
- ami-5769193e
- 200278856672/EmsRefreshSpec-Image
+ ami-d9ed21b0
+ 309956199498/RHEL-5.7-Starter-EBS-x86_64-3-Access2
available
- 200278856672
- 2013-06-22T02:28:44.000Z
+ 309956199498
+ 2011-10-10T19:01:04.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-Image
- EmsRefreshSpec-Image
+ aki-08ed0761
+ RHEL-5.7-Starter-EBS-x86_64-3-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5f38cd0e
- 7
+ snap-a6dfb5c5
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
xen
-
- ami-5e86fe48
- 200278856672/ssa-agent-hsong
+ ami-dbb45dcd
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
available
- 200278856672
- 2017-05-18T14:44:02.000Z
+ 309956199498
+ 2017-01-17T19:59:58.000Z
false
x86_64
machine
simple
- ssa-agent-hsong
- [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0a5070b29f3ddcd92
+ snap-07e0629666eb37658
10
true
gp2
@@ -4362,151 +10289,171 @@ http_interactions:
xen
-
- ami-63026775
- 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ ami-def37ea1
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-04-26T15:30:36.000Z
+ 309956199498
+ 2018-05-08T21:48:36.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-PoweredOn-VPC_snapshot
- EmsRefreshSpec-PoweredOn-VPC_description
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0001b68fed820fb79
- 7
+ snap-0b8a46e49a52d14ee
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+ true
+
+ -
+ ami-e2c45a98
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ available
+ 679593333241
+ 2017-11-30T05:31:28.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
+ /dev/sda1
- snap-0f1eb18bc955eb28a
- 1
+ snap-0f90a5c0b7f575bf8
+ 8
true
gp2
false
+ -
+ /dev/sdb
+ ephemeral0
+
paravirtual
xen
+ false
-
- ami-63ac180a
- 200278856672/redhat-6.3-32
+ ami-e97bf796
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
available
- 200278856672
- 2012-08-21T23:30:21.000Z
+ 679593333241
+ 2018-05-09T17:38:24.000Z
false
- i386
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
machine
- aki-36ed075f
- redhat-6.3-32
-
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
ebs
/dev/sda1
-
/dev/sda1
- snap-d23a95a1
- 7
+ snap-05db1cc1fdb7d5484
+ 8
true
- standard
+ gp2
false
-
- /dev/sdf
+ /dev/sdb
ephemeral0
- -
- /dev/sdg
- ephemeral1
-
paravirtual
-
- -
- Name
- redhat-6.3-32
-
-
xen
+ false
-
- ami-67bc0b0e
- 200278856672/miq-extract-base-ubuntu-12.04
+ ami-e984ed80
+ 309956199498/RHEL-5.5_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-27T19:14:39.000Z
+ 309956199498
+ 2013-05-19T17:59:35.000Z
false
x86_64
machine
- aki-825ea7eb
- miq-extract-base-ubuntu-12.04
- ubuntu 12.04 + rvm/Ruby1.9
+ aki-30ceaf59
+ RHEL-5.5_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-d03941a3
- 8
+ snap-29b03774
+ 6
true
standard
false
- -
- /dev/sdb
- ephemeral0
-
paravirtual
-
- -
- Name
- miq-extract-base-ubuntu-12.04
-
-
xen
-
- ami-7c4aa86a
- 200278856672/redhat-6.3-64
+ ami-e9ec2080
+ 309956199498/RHEL-5.7-Starter-EBS-i386-5-Access2
available
- 200278856672
- 2017-01-13T11:31:28.000Z
+ 309956199498
+ 2011-10-10T18:04:32.000Z
false
- x86_64
+ i386
machine
- aki-08ed0761
- redhat-6.3-64
- [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ aki-36ed075f
+ RHEL-5.7-Starter-EBS-i386-5-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-6054c98a
- 7
+ snap-8e90faed
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
@@ -4516,25 +10463,25 @@ http_interactions:
xen
-
- ami-7d85fd6b
- 200278856672/hsong-ssa-agent-v1
+ ami-eb0a7694
+ 309956199498/RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:21:55.000Z
+ 309956199498
+ 2018-06-06T21:58:13.000Z
false
x86_64
machine
simple
- hsong-ssa-agent-v1
- [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-05ef19f30ffe6ceaa
- 80
+ snap-076491f21bfe39630
+ 10
true
gp2
false
@@ -4545,55 +10492,63 @@ http_interactions:
xen
-
- ami-8bf2e4f0
- 200278856672/ladas_test_111_snapshot_image
+ ami-ebba9e90
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:04:28.000Z
+ 309956199498
+ 2017-08-01T13:55:21.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image
-
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-05b0394bb3b8b42d0
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-95ad19fc
- 200278856672/ubuntu-11.10-server-64
+ ami-ec601593
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
available
- 200278856672
- 2012-08-22T00:20:33.000Z
+ 679593333241
+ 2018-06-01T11:50:23.000Z
false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
x86_64
machine
- aki-825ea7eb
- ubuntu-11.10-server-64
-
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-05-22
ebs
/dev/sda1
-
/dev/sda1
- snap-90bc12e3
+ snap-029167631d7dbab96
8
- false
- standard
+ true
+ gp2
false
@@ -4601,94 +10556,70 @@ http_interactions:
/dev/sdb
ephemeral0
-
- paravirtual
-
-
- Name
- ubuntu-11.10-server-64
+ /dev/sdc
+ ephemeral1
-
+
+ hvm
xen
+ true
-
- ami-a7185ec2
- 200278856672/CFME-55Image
+ ami-ee0eaf87
+ 309956199498/RHEL-6.3-Starter-x86_64-1-Access2
available
- 200278856672
- 2015-10-01T15:35:55.000Z
+ 309956199498
+ 2012-06-04T19:11:15.000Z
false
x86_64
machine
- CFME-55Image
- CFME-55Image
+ aki-ecfa0185
+ RHEL-6.3-Starter-x86_64-1-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-249e4c6c
- 40
- false
- gp2
+ snap-0a6f0275
+ 7
+ true
+ standard
false
-
- /dev/sdb
-
- 30
- false
- gp2
- false
-
+ /dev/sdf
+ ephemeral0
-
- hvm
- xen
-
- -
- ami-ad43a4c4
- rpo-images/miq-ec2-proto.img.manifest.xml
- available
- 200278856672
-
- false
- i386
- machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
-
- Name
- extract-proto0
+ /dev/sdg
+ ephemeral1
-
+
+ paravirtual
xen
-
- ami-bbc9dac0
- 200278856672/ladas_test111
+ ami-eea69e86
+ 309956199498/RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-06T15:25:11.000Z
+ 309956199498
+ 2015-04-14T16:05:15.000Z
false
x86_64
machine
simple
- ladas_test111
-
+ RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-09505262c29651f47
+ snap-f7bff783
10
true
gp2
@@ -4700,311 +10631,284 @@ http_interactions:
xen
-
- ami-bda014d4
- 200278856672/redhat-6.3-64
+ ami-ef0ddc86
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
available
- 200278856672
- 2012-08-21T21:31:39.000Z
+ 309956199498
+ 2012-01-31T17:25:19.000Z
false
x86_64
machine
- aki-08ed0761
- redhat-6.3-64
-
+ aki-ecfa0185
+ RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5210bc21
- 7
+ snap-a26c77c6
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- redhat-6.3-64
-
-
xen
-
- ami-c68639af
- miq-extract-images/evm-extract.manifest.xml
+ ami-f1c75d8e
+ 309956199498/RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-10-11T20:34:52.000Z
+ 309956199498
+ 2018-05-22T20:49:43.000Z
false
x86_64
machine
- aki-825ea7eb
- evm-extract
- instance-store
+ simple
+ RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
-
- /dev/sdb
- ephemeral0
+ /dev/sda1
+
+ snap-034ca7106de61d544
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- evm-extract
-
-
+ hvm
xen
-
- ami-cd43a4a4
- rpo-images/miq-ec2-extract.img.manifest.xml
+ ami-f22c838f
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2018-04-05T14:03:24.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- extract-proto-old
+ /dev/sda1
+
+ snap-082db2812440be4e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
+ true
-
- ami-cf08bda6
- rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ ami-f4f16b9d
+ 309956199498/RHEL-6.4_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-19T18:43:47.000Z
+ 309956199498
+ 2013-03-28T15:27:20.000Z
false
x86_64
machine
- aki-6a0cf803
- instance-store
+ aki-ecfa0185
+ RHEL-6.4_GA-x86_64-4-Access2
+ ebs
/dev/sda1
-
- sdb
+ /dev/sda1
+
+ snap-11a7ef56
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
ephemeral0
-
- sdc
+ /dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- extract-proto3
-
-
xen
-
- ami-ebcb7e82
- rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ ami-fb261f91
+ 309956199498/RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
available
- 200278856672
- 2012-08-15T02:47:43.000Z
+ 309956199498
+ 2016-03-02T16:35:59.000Z
false
x86_64
machine
- aki-6a0cf803
- ubuntu10.04-rvm-ruby1.9
- instance-store
+ simple
+ RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sdb
- ephemeral0
-
- -
- sdc
- ephemeral1
+ /dev/sda1
+
+ snap-493b545c
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- ubuntu-10.04-rvm-ruby1.9
-
-
+ hvm
xen
-
- ami-edaa1f84
- rpo-work/miq-test.img.manifest.xml
+ ami-fbc89880
+ 309956199498/RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-15T18:51:02.000Z
+ 309956199498
+ 2017-07-24T15:44:37.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
+ simple
+ RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-06b3fdee8ff92a35b
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- test-linux
-
-
+ hvm
xen
-
- ami-edad1984
- 200278856672/ubuntu-12.04-server-32
+ ami-fc94dd94
+ 309956199498/RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-22T00:07:18.000Z
+ 309956199498
+ 2015-02-09T21:01:42.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- ubuntu-12.04-server-32
-
+ aki-919dcaf8
+ RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8ec06efd
- 8
+ snap-4c738dc3
+ 6
true
- standard
+ gp2
false
- -
- /dev/sda2
- ephemeral0
-
paravirtual
-
+ xen
+
+ -
+ ami-ff13f292
+ 309956199498/RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-05-03T20:13:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-12.04-server-32
+ /dev/sda1
+
+ snap-5f073bba
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-f3a81c9a
- 200278856672/suse-11-server-32
+ ami-ff83ea96
+ 309956199498/RHEL-5.6_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-22T01:57:01.000Z
+ 309956199498
+ 2013-05-19T15:16:36.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- suse-11-server-32
-
+ aki-30ceaf59
+ RHEL-5.6_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-baf35ac9
- 10
- false
+ snap-0215af5f
+ 6
+ true
standard
false
paravirtual
-
- -
- Name
- suse-11-server-32
-
-
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:01 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080801Z
- X-Amz-Content-Sha256:
- - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=434fef7c64974ab1eb7eb2dd3becd9cea61e6f2cc0c2bc4116499da2b9138bed
- Content-Length:
- - '110'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:07:56 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 1c17df88-2f1d-4b5a-8bb8-fac2f025e673
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:02 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:20 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -5017,14 +10921,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080802Z
+ - 20180904T145820Z
X-Amz-Content-Sha256:
- 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5cef978fcd6b889a29bda9b46b69cbf70c53a4bf271ab5d28fa7b14ea9c77764
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3652579502a5c866da59df280b918fdbfaa4e661cc015a49fd61940af799fad2
Content-Length:
- '43'
Accept:
@@ -5041,7 +10945,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:07:57 GMT
+ - Tue, 04 Sep 2018 14:58:21 GMT
Server:
- AmazonEC2
body:
@@ -5049,46 +10953,183 @@ http_interactions:
string: |-
- 2221c9ea-de12-44ad-ba44-6fe86fdf1560
+ b3d325e6-b112-4616-923e-3f062dba61c8
-
- r-06329810cfd223fe6
+ r-0dece58a7cd92b3d1
200278856672
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
+ i-0828f09c91ab89a97
+ ami-6869aa05
16
running
- ip-10-0-1-85.ec2.internal
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2018-03-01T21:31:41.000Z
+
+ us-east-1c
+
+ default
+
+
+ enabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
+ true
+
+ -
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-080996fdeaee13caf
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+
+ hvm
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+ xen
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
+ 200278856672
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+
-
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+
+ eni-attach-f41e8d30
+ 0
+ attached
+ 2018-03-01T21:31:41.000Z
+ true
+
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0d9d5788168db3796
+ 200278856672
+
+
+
-
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-32.ec2.internal
-
- MIQ_SSA
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
0
t2.micro
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5096,100 +11137,112 @@ http_interactions:
-
/dev/sda1
- vol-000f77902b1a16428
+ vol-0390b378515bffd1c
attached
- 2017-08-29T19:14:36.000Z
- true
+ 2018-04-05T18:29:10.000Z
+ false
hvm
- ptDPo1504034075390
+
-
- hsong-ssa
-
+ Name
+ smartstate
xen
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+
200278856672
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
- eni-attach-075e6227
+ eni-attach-39fcca94
0
attached
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.85
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-003249dcbdd91448e
+ r-016047928b31890f5
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
+ i-0297a2b1075b3a2c6
+ ami-5769193e
80
stopped
- ip-10-0-1-87.ec2.internal
+
- User initiated (2017-06-07 16:32:25 GMT)
+ User initiated
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-22T20:35:56.000Z
+ t1.micro
+ 2018-04-05T10:08:22.000Z
- us-east-1e
+ us-east-1b
default
+ aki-1eceaf77
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
- true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
x86_64
ebs
@@ -5198,87 +11251,150 @@ http_interactions:
-
/dev/sda1
- vol-0385dfce3061ff5a9
+ vol-0e7609b478fe9ca91
attached
- 2017-05-22T20:35:57.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0ed526ebed417656f
- attached
- 2017-05-22T20:35:57.000Z
- false
+ 2018-04-05T10:08:23.000Z
+ true
- hvm
+ paravirtual
-
Name
- test_billy_20170522_v2
+ mslemr
xen
-
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-228-8-132.ec2.internal
+ ec2-54-237-152-215.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.228.8.132
+ 54.237.152.215
+
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
- true
-
-
-
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-ff35f0d1
- 0
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-01fea15450fb7ba14
attached
- 2017-05-22T20:35:56.000Z
+ 2018-09-04T12:12:32.000Z
true
-
-
-
-
- 10.0.1.87
- true
-
-
-
+
-
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-0e65ce29775f6d8fc
+ r-0bc3ae5e3f08c8a44
200278856672
-
- i-0d794150f7fd264c4
- ami-3f0e495a
+ i-0125949f65c1e5528
+ ami-70e8fd66
-
80
- stopped
+ 16
+ running
- ip-10-2-0-191.ec2.internal
+ ip-10-2-0-152.ec2.internal
- User initiated (2017-06-26 19:23:18 GMT)
+
+ hsong_centos_atomic
0
- t2.small
- 2017-06-09T15:00:46.000Z
+ t2.micro
+ 2018-03-06T18:29:43.000Z
us-east-1c
@@ -5289,18 +11405,15 @@ http_interactions:
subnet-2190b144
vpc-8cf117f5
- 10.2.0.191
+ 10.2.0.152
+ 52.3.221.140
true
-
- sg-4cc30d32
- default
+ sg-5c49922a
+ launch-wizard-26
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -5308,18 +11421,9 @@ http_interactions:
-
/dev/sda1
- vol-0290849f78dccf167
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-083b1f1e71831ba7e
+ vol-006fabcff33ae5272
attached
- 2017-06-09T15:00:47.000Z
+ 2018-03-06T18:29:43.000Z
false
@@ -5329,84 +11433,101 @@ http_interactions:
-
Name
- test_billy0002
+ hsong-centos
xen
-
- eni-45fef051
+ eni-a50a3f25
subnet-2190b144
vpc-8cf117f5
-
+ Primary network interface
200278856672
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-4cc30d32
- default
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-877ba01f
+ eni-attach-3be67cff
0
attached
- 2017-06-09T15:00:46.000Z
+ 2018-03-06T18:29:43.000Z
true
+
+ 52.3.221.140
+
+ amazon
+
-
- 10.2.0.191
+ 10.2.0.152
true
+
+ 52.3.221.140
+
+ amazon
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
false
+
+ 1
+ 1
+
-
- r-057ea81c4767b9a2a
+ r-072fcf51c1deca398
200278856672
-
- i-02975d4eb8e53bafd
- ami-b63769a1
+ i-0510954911e45949b
+ ami-c998b6b2
16
running
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
+ ip-10-0-1-66.ec2.internal
+
- MIQ_SSA
+ bronaghkeypair
0
t2.micro
- 2017-09-25T18:21:15.000Z
+ 2017-12-13T14:43:34.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a5b994d0
+ launch-wizard-14
x86_64
@@ -5416,9 +11537,9 @@ http_interactions:
-
/dev/sda1
- vol-0f151bad0c041c2db
+ vol-0d3587406018a8205
attached
- 2017-08-10T19:10:06.000Z
+ 2017-12-13T14:43:35.000Z
true
@@ -5428,228 +11549,202 @@ http_interactions:
-
Name
- MIQ_SSA
+ bronagh
xen
-
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-f902c21c
+ eni-attach-0dbdb6d5
0
attached
- 2017-08-10T19:10:05.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 10.0.1.66
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-02b7af2df00a8de50
+ r-066d4d1b049774f63
200278856672
-
- i-0150ac66c83e0eae8
- ami-6869aa05
+ i-0274ada368eb4da36
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
0
- t2.nano
- 2017-05-02T19:39:36.000Z
+ t2.micro
+ 2017-10-30T21:20:33.000Z
us-east-1c
default
- enabled
+ disabled
subnet-de2363bb
vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
+ 10.0.0.91
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-8dff68ff
+ launch-wizard-53
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-02e5c41d12060ab3b
+ vol-0d76e68ae71222b49
attached
- 2017-05-02T19:39:37.000Z
- true
+ 2017-10-20T03:07:59.000Z
+ false
hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
+ sbRkK1508468877905
-
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
-
- -
- aws:cloudformation:logical-id
- WebServerFleet
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Network
- Public
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ Name
+ ssa-docker
xen
-
- eni-3e17562a
+ eni-47ff1251
subnet-de2363bb
vpc-c3d2f1a5
-
+ Primary network interface
200278856672
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-3a6592a2
+ eni-attach-5fcc62c4
0
attached
- 2017-05-02T19:39:36.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
+
+ arn:aws:iam::200278856672:instance-profile/MIQ_SSA
+ AIPAJB66KPP4NYH7OLI2I
+
false
- true
+
+ 1
+ 1
+
- 226008221399
-
- r-083cc6d943a6cc2e8
+ r-1842f370
200278856672
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
+ i-8b5739f2
+ ami-5769193e
16
running
- ip-10-0-1-78.ec2.internal
+ ip-10-0-0-254.ec2.internal
- bsorota
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-13T14:58:47.000Z
+ t1.micro
+ 2017-09-13T16:07:19.000Z
us-east-1e
default
+ aki-1eceaf77
- enabled
+ disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
x86_64
@@ -5659,150 +11754,262 @@ http_interactions:
-
/dev/sda1
- vol-06c7662068fe81b92
+ vol-67606d2d
attached
- 2017-02-16T16:40:47.000Z
+ 2013-09-23T20:11:57.000Z
true
-
- hvm
- IIQTn1487263246120
-
-
- foo
- bar
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+ paravirtual
+ aPCzL1379967112359
+
-
Name
- bronagh-events-test
+ EmsRefreshSpec-PoweredOn-VPC
-
owner
- bronaghs
+ UNKNOWN
xen
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-45f9a86f
+ eni-attach-05fac66f
0
attached
- 2017-02-16T16:40:47.000Z
+ 2013-09-23T20:11:52.000Z
true
+
+ 54.208.119.197
+
+ 200278856672
+
-
- 10.0.1.78
+ 10.0.0.254
true
+
+ 54.208.119.197
+
+ 200278856672
+
+
+ -
+ 10.0.0.208
+
+ false
false
+
+ 1
+ 1
+
-
- r-063763c7bd0616325
+ r-0c0e56163429b9a46
200278856672
-
-
-
- sg-28999abf
- launch-wizard-12
-
-
+
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
+ i-0bca58e6e540ddc39
+ ami-6869aa05
16
running
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
+ ip-10-2-0-239.ec2.internal
+
- ladas_test
+ EmsRefreshSpec-KeyPair
0
- t1.micro
- 2017-05-05T14:04:30.000Z
+ t2.nano
+ 2017-05-03T10:47:06.000Z
- us-east-1d
+ us-east-1c
default
disabled
- 10.233.77.119
- 54.81.241.87
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
+ true
-
- sg-28999abf
- launch-wizard-12
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-02a26016b0b7a9450
+ vol-0628a6ce987d4cb6e
attached
- 2017-05-05T14:04:33.000Z
+ 2017-05-03T10:47:07.000Z
true
- paravirtual
- qWVKg1493993070283
+ hvm
+ EmsRe-WebSe-1229KQXQO3HUK
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ Name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
+
+
xen
-
+
+ -
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
+ 200278856672
+ in-use
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
+ true
+
+
-
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+ eni-attach-cbd22453
+ 0
+ attached
+ 2017-05-03T10:47:06.000Z
+ true
+
+
+ 34.202.178.10
+
+ 200278856672
+
+
+ -
+ 10.2.0.239
+ true
+
+ 34.202.178.10
+
+ 200278856672
+
+
+
+
+
+
false
+ true
+
+ 1
+ 1
+
-
- r-38bafd9b
+ r-076deaba20c4af747
200278856672
-
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
-
- i-fb694e66
+ i-0e1752ff841801f65
ami-5769193e
-
16
- running
+ 80
+ stopped
- ip-10-0-0-109.ec2.internal
+
-
+ User initiated (2018-09-03 12:12:01 GMT)
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-09-06T21:07:48.000Z
+ 2018-09-03T12:10:36.000Z
us-east-1e
@@ -5812,17 +12019,20 @@ http_interactions:
disabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
- true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5830,93 +12040,55 @@ http_interactions:
-
/dev/sda1
- vol-3bc4d1ea
+ vol-076672a9b80ac2e25
attached
- 2016-05-10T20:56:38.000Z
+ 2018-09-03T12:10:36.000Z
true
paravirtual
- uBCLe1462913797292
+
- -
- Name
- VMstate-8
-
-
owner
UNKNOWN
-
- 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.163.162.32
-
- amazon
-
-
- -
- 10.0.0.109
- true
-
- 54.163.162.32
-
- amazon
-
-
-
-
+ Name
+ EmsRefreshSpec-PoweredOff
-
+
+ xen
+
false
+
+ 1
+ 1
+
-
- r-0ce8dea404618f3a5
+ r-05e4ba632b214dc1e
200278856672
-
- i-03d706b95aa8b12ce
- ami-271e7c31
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
80
stopped
- ip-10-0-1-229.ec2.internal
+ ip-10-0-8-55.ec2.internal
- User initiated (2017-06-20 17:19:50 GMT)
- james
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
0
- t2.medium
- 2017-06-16T20:54:01.000Z
+ t2.nano
+ 2018-06-11T07:26:10.000Z
us-east-1e
@@ -5925,14 +12097,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.55
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
@@ -5946,49 +12118,57 @@ http_interactions:
-
/dev/sda1
- vol-096d40746df01e27b
+ vol-06e9ef72a99dcc223
attached
- 2017-06-16T20:54:01.000Z
- false
+ 2018-06-06T18:52:18.000Z
+ true
hvm
- DpMDq1497646440165
+
-
Name
- Ansible Tower Trial Instance
+ ladas_ansible_test_2__1
+
+ -
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
xen
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
+
200278856672
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-4735d966
+ eni-attach-838d7a26
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.229
+ 10.0.8.55
true
@@ -5996,45 +12176,43 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-02d2f89dd4a54f2de
- 200278856672
-
-
-
- i-013f45a83fd938928
- ami-3f0e495a
+ i-002ca40492fff0e67
+ ami-a4dc46db
80
stopped
- ip-10-2-0-15.ec2.internal
+ ip-10-0-8-133.ec2.internal
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
- 0
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
- t2.micro
- 2017-06-07T15:59:47.000Z
+ t2.nano
+ 2018-06-15T13:08:32.000Z
- us-east-1c
+ us-east-1e
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
true
-
- sg-4cc30d32
- default
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
@@ -6048,58 +12226,57 @@ http_interactions:
-
/dev/sda1
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
+ vol-096db62af3cb45d75
attached
- 2017-06-07T15:59:48.000Z
- false
+ 2018-06-06T18:52:18.000Z
+ true
hvm
+ -
+ TestTag
+ test2__0
+
-
Name
- test_billy0001
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
xen
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
200278856672
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-4cc30d32
- default
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-63ae77fb
+ eni-attach-828d7a27
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.2.0.15
+ 10.0.8.133
true
@@ -6107,52 +12284,56 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-04c0352eb6024667f
+ r-00a2f9d88c2068981
200278856672
-
- i-091fe7ccd76ddac3b
- ami-0092b117
+ i-05d2313e6b9a42b16
+ ami-6871a115
16
running
- ip-10-0-1-239.ec2.internal
+ ip-10-0-1-192.ec2.internal
- bmclaugh
+ julian cheal
0
t2.micro
- 2017-08-24T15:40:38.000Z
+ 2018-04-26T10:02:38.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
true
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-041d424d
+ launch-wizard-36
+
+
+
+
x86_64
ebs
/dev/sda1
@@ -6160,94 +12341,43 @@ http_interactions:
-
/dev/sda1
- vol-04fc5431c4edd9bb6
+ vol-0eb5ddcf735f22184
attached
- 2017-05-16T18:19:22.000Z
+ 2018-04-26T10:03:06.000Z
true
hvm
- HqLiY1494958760362
-
- -
- Name
- bmclaugh_console_test
-
-
+
xen
-
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-041d424d
+ launch-wizard-36
- eni-attach-88392ea7
+ eni-attach-7e503066
0
attached
- 2017-05-16T18:19:21.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- 10.0.0.129
+ 10.0.1.192
true
@@ -6255,31 +12385,40 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-1842f370
+ r-09188ea8e40a2b4d8
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-8b5739f2
+ i-09b65a1400b9538ff
ami-5769193e
16
running
- ip-10-0-0-254.ec2.internal
-
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
- EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-09-13T16:07:19.000Z
+ 2018-07-25T11:01:38.000Z
- us-east-1e
+ us-east-1c
default
@@ -6287,15 +12426,12 @@ http_interactions:
disabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
- true
+ 10.149.203.110
+ 75.101.229.189
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-347f9b5d
+ default
x86_64
@@ -6305,259 +12441,191 @@ http_interactions:
-
/dev/sda1
- vol-67606d2d
+ vol-04d23aa0121812de9
attached
- 2013-09-23T20:11:57.000Z
+ 2018-07-25T11:01:38.000Z
true
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
paravirtual
- aPCzL1379967112359
+
-
Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
+ mslemr-test4
xen
-
- -
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-05fac66f
- 0
- attached
- 2013-09-23T20:11:52.000Z
- true
-
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.254
- true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-0c0e56163429b9a46
+ r-0a1dcdbc4e3f20db0
200278856672
-
- i-0bca58e6e540ddc39
- ami-6869aa05
+ i-004f3bd30726946d1
+ ami-2051294a
16
running
- ip-10-2-0-239.ec2.internal
+ ip-10-0-8-25.ec2.internal
- EmsRefreshSpec-KeyPair
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
0
- t2.nano
- 2017-05-03T10:47:06.000Z
+ t1.micro
+ 2018-02-06T09:49:36.000Z
- us-east-1c
+ us-east-1e
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.25
true
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-0628a6ce987d4cb6e
+ vol-00198c2e466b380ac
attached
- 2017-05-03T10:47:07.000Z
+ 2018-02-06T09:49:36.000Z
true
hvm
- EmsRe-WebSe-1229KQXQO3HUK
+
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- WebServerInstance
+ Name
+ ladas-test-foreman.ec2.internal
xen
-
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
+ eni-88c5a245
+ subnet-5f5a9670
+ vpc-ff49ff91
200278856672
in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-cbd22453
+ eni-attach-d82c7915
0
attached
- 2017-05-03T10:47:06.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 34.202.178.10
-
- 200278856672
-
-
- 10.2.0.239
+ 10.0.8.25
true
-
- 34.202.178.10
-
- 200278856672
-
false
- true
+
+ 1
+ 1
+
-
- r-051854d34993ed969
+ r-18ca6cb0
200278856672
-
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
-
- i-0347d4075310c21e6
- ami-3f0e495a
+ i-680071e9
+ ami-5769193e
-
80
- stopped
+ 16
+ running
- ip-10-0-1-167.ec2.internal
-
- User initiated (2017-03-22 18:08:49 GMT)
- db
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
0
- t2.small
- 2017-03-21T19:39:50.000Z
+ t1.micro
+ 2017-09-07T14:42:55.000Z
us-east-1e
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
- true
+ 10.91.143.248
+ 54.221.202.53
-
- sg-24362241
- default
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -6565,115 +12633,77 @@ http_interactions:
-
/dev/sda1
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
+ vol-b6fa656a
attached
- 2017-03-21T19:39:51.000Z
- false
+ 2016-01-07T19:58:39.000Z
+ true
- hvm
-
+ paravirtual
+ JwNdr1452196715903
+ -
+ owner
+ UNKNOWN
+
-
Name
- tina_test_march21001
+ EmsRefreshSpec-PoweredOn-Basic3
xen
-
- -
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-8a10e2a6
- 0
- attached
- 2017-03-21T19:39:50.000Z
- true
-
-
- -
- 10.0.1.167
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-052a9ecb9d478b8d6
+ r-052a327ea7fccec89
200278856672
-
- i-099e794cfa830e9be
- ami-2051294a
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-10-0-0-4.ec2.internal
+ ip-172-30-0-44.ec2.internal
-
- ladas
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
0
t2.micro
- 2017-09-04T13:26:00.000Z
+ 2018-03-15T13:27:36.000Z
- us-east-1e
+ us-east-1a
default
- enabled
+ disabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
true
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-67541b15
+ smartstate
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -6681,10 +12711,10 @@ http_interactions:
-
/dev/sda1
- vol-00306cda05dec2db5
+ vol-0a184b5b739d382d8
attached
- 2017-09-04T13:26:01.000Z
- true
+ 2018-03-15T13:27:37.000Z
+ false
@@ -6693,107 +12723,97 @@ http_interactions:
-
Name
- ladas_test112
+ smartstate
xen
-
- eni-6933e6c9
- subnet-f849ff96
- vpc-ff49ff91
- test
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
+
200278856672
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-67541b15
+ smartstate
- eni-attach-de56932b
+ eni-attach-22e6878f
0
attached
- 2017-09-04T13:26:00.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 54.208.121.144
-
- 200278856672
-
-
- 10.0.0.4
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-0330333bbdf03e149
+ r-0cca17241eb40667c
200278856672
-
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
+ i-03769bc6ccaba947a
+ ami-2a69aa47
16
running
- ip-10-0-0-236.ec2.internal
-
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
- ladas
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-07T12:23:45.000Z
+ t1.micro
+ 2018-09-04T13:39:05.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
- disabled
+ enabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
- true
+ 10.231.214.59
+ 54.196.64.159
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
x86_64
@@ -6803,88 +12823,76 @@ http_interactions:
-
/dev/sda1
- vol-0ac7a66512bf0d20c
+ vol-0eb026a02c6666ea0
attached
- 2017-09-07T12:23:46.000Z
+ 2018-09-04T13:39:05.000Z
true
- hvm
-
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
-
- Name
- ladas_test_40
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
- xen
-
-
- eni-b9cc7f19
- subnet-f849ff96
- vpc-ff49ff91
-
- 200278856672
- in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0b3482fe
- 0
- attached
- 2017-09-07T12:23:45.000Z
- true
-
-
- 52.70.78.137
-
- 200278856672
-
-
- -
- 10.0.0.236
- true
-
- 52.70.78.137
-
- 200278856672
-
-
-
-
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
-
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-03174ab388e42d485
+ r-09dd2a3970815aaee
200278856672
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
+ i-066465f361331dfa6
+ ami-a4dc46db
80
stopped
- ip-10-0-1-70.ec2.internal
+ ip-10-0-8-108.ec2.internal
- User initiated (2017-05-02 13:12:28 GMT)
- 0
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
- t2.medium
- 2017-04-12T18:17:01.000Z
+ t2.micro
+ 2018-05-25T15:39:08.000Z
us-east-1e
@@ -6893,14 +12901,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.108
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
@@ -6914,19 +12922,10 @@ http_interactions:
-
/dev/sda1
- vol-0816f373502e8db24
+ vol-0875db6c16a8e9335
attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
- attached
- 2017-04-12T18:17:03.000Z
- false
+ 2018-05-24T13:44:27.000Z
+ true
@@ -6935,37 +12934,37 @@ http_interactions:
-
Name
- tina_take_two002
+ ladas_ansible_test_2
xen
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
- eni-attach-59c6f675
+ eni-attach-b64f3e14
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.70
+ 10.0.8.108
true
@@ -6973,29 +12972,27 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-01228013207b85dad
- 200278856672
-
-
-
- i-08c033357b433ea2c
- ami-0b33d91d
+ i-0c37a7d012922752e
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-1-155.ec2.internal
+ ip-10-0-8-189.ec2.internal
-
- bd
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
0
- t2.nano
- 2017-09-05T13:28:00.000Z
+ t2.micro
+ 2018-05-25T15:39:09.000Z
us-east-1e
@@ -7004,66 +13001,70 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.189
true
-
- sg-65d59519
- launch-wizard-37
+ sg-08314440
+ launch-wizard-38
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-01aca96e22103f767
+ vol-06bc83fa0e7bd77c4
attached
- 2017-02-14T16:18:29.000Z
+ 2018-05-24T13:44:27.000Z
true
hvm
- hPmBd1487089108162
+
-
Name
- mhild
+ ladas_ansible_test_2
xen
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-65d59519
- launch-wizard-37
+ sg-08314440
+ launch-wizard-38
- eni-attach-2d92e207
+ eni-attach-494c3deb
0
attached
- 2017-02-14T16:18:28.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.155
+ 10.0.8.189
true
@@ -7072,45 +13073,48 @@ http_interactions:
false
true
+
+ 1
+ 1
+
-
- r-0e0f81bfeea774100
+ r-0b0ebf36d34acdaa6
200278856672
-
- i-0951b95d6db76519d
- ami-b63769a1
+ i-0a67c549558c9c392
+ ami-26ebbc5c
80
stopped
- ip-172-30-0-105.ec2.internal
+ ip-10-0-1-165.ec2.internal
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
+ User initiated (2018-07-09 19:41:17 GMT)
0
t2.micro
- 2017-08-29T15:52:11.000Z
+ 2018-04-24T18:47:14.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.105
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-b00affc6
+ launch-wizard-23
@@ -7124,9 +13128,9 @@ http_interactions:
-
/dev/sda1
- vol-0ea3efc6f99654381
+ vol-0b80eb1a867cd27f8
attached
- 2017-07-26T15:15:30.000Z
+ 2018-02-28T16:08:25.000Z
true
@@ -7136,181 +13140,203 @@ http_interactions:
-
Name
- MIQ_SSA
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
xen
-
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-4451b1a7
+ eni-attach-87883f81
0
attached
- 2017-07-26T15:15:29.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 10.0.1.165
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-18ca6cb0
+ r-0b5184e8fed7c403a
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-680071e9
- ami-5769193e
+ i-02007c8f386e74470
+ ami-55ef662f
16
running
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
+ ip-10-0-1-179.ec2.internal
+
- EmsRefreshSpec-KeyPair
+ bronaghkeypair1213
0
- t1.micro
- 2017-09-07T14:42:55.000Z
+ t2.micro
+ 2017-12-13T15:04:34.000Z
- us-east-1e
+ us-east-1d
default
- aki-1eceaf77
disabled
- 10.91.143.248
- 54.221.202.53
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-b6fa656a
+ vol-07be95279f27e791f
attached
- 2016-01-07T19:58:39.000Z
+ 2017-12-13T15:04:35.000Z
true
- paravirtual
- JwNdr1452196715903
+ hvm
+
-
- owner
- UNKNOWN
+ Name
+ bronagh1213
-
- Name
- EmsRefreshSpec-PoweredOn-Basic3
+ AWS_Tier
+ Gold
xen
-
+
+ -
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
+ true
+
+
-
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+ eni-attach-e6616b3e
+ 0
+ attached
+ 2017-12-13T15:04:34.000Z
+ true
+
+
+ -
+ 10.0.1.179
+ true
+
+
+
+
+
false
+ true
+
+ 1
+ 1
+
-
- r-06a48602fb689eb1b
+ r-0dee19ffc1a9d96c4
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-047886b9fd2397967
- ami-5769193e
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
80
stopped
-
+ ip-172-30-0-213.ec2.internal
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
0
- t1.micro
- 2017-09-26T07:48:52.000Z
+ t2.micro
+ 2018-04-17T08:15:14.000Z
- us-east-1e
+ us-east-1a
default
- aki-1eceaf77
disabled
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.213
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-67541b15
+ smartstate
@@ -7324,51 +13350,89 @@ http_interactions:
-
/dev/sda1
- vol-0c2aaf810c8925376
+ vol-070d695244916edf4
attached
- 2017-09-26T07:48:52.000Z
- true
+ 2018-02-26T18:31:28.000Z
+ false
- paravirtual
- lGtNQ1506412131645
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
+ smartstate
xen
-
+
+ -
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-fbede525
+ 0
+ attached
+ 2018-02-26T18:31:27.000Z
+ true
+
+
+ -
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-0cac97e7f6d09c34a
+ r-08722bad9d42340ba
200278856672
-
- i-0fca61ededa522f1a
+ i-0639022117944a668
ami-63ac180a
16
running
- ip-10-0-0-36.ec2.internal
+ ip-10-0-0-98.ec2.internal
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
us-east-1e
@@ -7380,8 +13444,8 @@ http_interactions:
subnet-f849ff96
vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
+ 10.0.0.98
+ 54.172.168.193
true
-
@@ -7396,15 +13460,15 @@ http_interactions:
-
/dev/sda1
- vol-097f300050f495d06
+ vol-0b2d1d3b42eb03555
attached
- 2017-05-02T19:39:50.000Z
+ 2018-03-15T13:28:48.000Z
true
paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
-
aws:autoscaling:groupName
@@ -7414,14 +13478,14 @@ http_interactions:
xen
-
- eni-fe24b408
+ eni-17e6c4d8
subnet-f849ff96
vpc-ff49ff91
200278856672
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -7430,23 +13494,23 @@ http_interactions:
- eni-attach-0e5ec721
+ eni-attach-5225809d
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
true
- 54.145.134.133
+ 54.172.168.193
amazon
-
- 10.0.0.36
+ 10.0.0.98
true
- 54.145.134.133
+ 54.172.168.193
amazon
@@ -7456,46 +13520,50 @@ http_interactions:
false
+
+ 1
+ 1
+
226008221399
-
- r-045f6da0fe48accc5
+ r-0098192b5619646aa
200278856672
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
80
stopped
- ip-172-30-0-113.ec2.internal
+ ip-172-30-3-177.ec2.internal
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
0
t2.micro
- 2017-07-17T21:02:54.000Z
+ 2018-03-15T07:09:23.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
+ subnet-bc418ce4
vpc-aee2a6ca
- 172.30.0.113
+ 172.30.3.177
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
@@ -7509,9 +13577,9 @@ http_interactions:
-
/dev/sda1
- vol-0657f371b97c0f147
+ vol-00991e8e4231720cb
attached
- 2017-07-17T19:21:46.000Z
+ 2018-03-12T13:48:52.000Z
true
@@ -7521,182 +13589,93 @@ http_interactions:
-
Name
- MIQ_SSA
+ stomsa
xen
-
- eni-5836d558
- subnet-e88815d5
+ eni-44432b95
+ subnet-bc418ce4
vpc-aee2a6ca
-
+ Primary network interface
200278856672
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
- eni-attach-cd97a82d
+ eni-attach-2bb4992d
0
attached
- 2017-07-17T19:21:45.000Z
+ 2018-03-12T13:48:51.000Z
true
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-001ade0887ad9089f
+ r-094143b846043daef
200278856672
-
-
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
-
+
-
- i-025623c4c4e4f84a0
- ami-2a69aa47
+ i-0b2631823a0fdfc76
+ ami-5769193e
16
running
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
- EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-08-31T00:02:52.000Z
+ 2018-07-25T10:56:16.000Z
- us-east-1d
-
- default
-
- aki-919dcaf8
-
- enabled
-
- 10.51.177.218
- 54.224.115.150
-
- -
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-04eb2f294c5f9f7eb
- attached
- 2017-08-31T00:02:52.000Z
- true
-
-
-
- paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- aws:cloudformation:logical-id
- WebServerGroup
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
-
-
- xen
-
- false
-
-
- 226008221399
-
- -
- r-06c8896ff6d4d039d
- 200278856672
-
-
-
-
- i-0b1ec6330e0180f75
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-103.ec2.internal
-
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-09-23T18:24:21.000Z
-
- us-east-1a
+ us-east-1b
default
+ aki-1eceaf77
disabled
- subnet-e88815d5
+ subnet-56f55f20
vpc-aee2a6ca
- 172.30.0.103
+ 172.30.1.91
+ 18.209.8.70
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -7704,62 +13683,66 @@ http_interactions:
-
/dev/sda1
- vol-0d805ae0a434871aa
+ vol-0d62d6706c88af498
attached
- 2017-09-23T18:24:22.000Z
+ 2018-07-25T10:56:17.000Z
true
- hvm
+ paravirtual
-
- -
- Name
- MIQ_SSA
-
-
xen
-
- eni-7b9a4078
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
200278856672
in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-aa928893
+ eni-attach-d57a046c
0
attached
- 2017-09-23T18:24:21.000Z
+ 2018-07-25T10:56:16.000Z
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+
+ 1
+ 1
+
@@ -7802,6 +13785,10 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
x86_64
ebs
/dev/sda1
@@ -7882,51 +13869,55 @@ http_interactions:
false
+
+ 1
+ 1
+
-
- r-00811be44fc3b2c8f
+ r-0afdcc8251cc93fd7
200278856672
-
+
+
-
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
+ i-0aa433595b855eeeb
+ ami-2a69aa47
-
80
- stopped
+ 16
+ running
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-03-13T12:10:54.000Z
+ t1.micro
+ 2018-03-01T21:31:04.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
+ 10.185.167.107
+ 54.161.0.45
-
- sg-82c99dfe
- launch-wizard-38
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -7934,118 +13925,89 @@ http_interactions:
-
/dev/sda1
- vol-0e251f8b387b2d87d
+ vol-007e8c0663020ed1c
attached
- 2017-02-16T16:28:16.000Z
+ 2018-03-01T21:31:05.000Z
true
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
- hvm
- Wewzf1487262494337
+ paravirtual
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
-
EmsRefreshSpecResourceGroupTag
EmsRefreshSpecResourceGroupTagValue
-
- owner
- Ladas
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
-
- Name
- ladas_test_5
+ aws:autoscaling:groupName
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
-
- xen
-
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
- attached
- 2017-02-16T16:28:15.000Z
- true
-
-
- -
- 10.0.1.86
- true
-
-
-
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 226008221399
-
- r-08595d55d4aa901a4
+ r-0bd40467050d37fd3
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0c1542ba946875280
- ami-3f0e495a
+ i-0235e2c2b4fcabeab
+ ami-5769193e
-
80
- stopped
+ 16
+ running
- ip-10-0-1-90.ec2.internal
-
- User initiated (2017-03-23 19:13:13 GMT)
- db
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
0
- t2.small
- 2017-03-21T19:41:22.000Z
+ m3.medium
+ 2018-03-14T21:43:12.000Z
- us-east-1e
+ us-east-1b
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
- true
+ 10.180.71.172
+ 54.87.20.125
-
- sg-24362241
+ sg-347f9b5d
default
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -8053,104 +14015,66 @@ http_interactions:
-
/dev/sda1
- vol-035c47f5f5190ddc8
+ vol-07667df1666e2060a
attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
- attached
- 2017-03-21T19:41:23.000Z
- false
+ 2018-03-14T21:43:13.000Z
+ true
- hvm
+ paravirtual
-
- -
- Name
- tina_test_march21003
-
-
xen
-
- -
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
- -
- 10.0.1.90
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-01136b3a8909eb8ef
+ r-0d025657762e468f5
200278856672
-
- i-035fa3affa815d81d
- ami-3f0e495a
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
80
stopped
- ip-10-0-1-230.ec2.internal
+ ip-10-0-1-19.ec2.internal
- User initiated (2017-03-22 19:02:26 GMT)
- db
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
0
-
- t2.small
- 2017-03-21T19:39:52.000Z
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ t2.micro
+ 2018-03-06T05:28:40.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
@@ -8164,58 +14088,49 @@ http_interactions:
-
/dev/sda1
- vol-059f5f4b2a5663e65
+ vol-09a10c5f98f2dd67c
attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
- attached
- 2017-03-21T19:39:52.000Z
+ 2018-03-06T05:28:40.000Z
false
hvm
-
+ 152031409666653601
-
Name
- tina_test_march21002
+ james
xen
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-9413e1b8
+ eni-attach-3a325e3c
0
attached
- 2017-03-21T19:39:52.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 10.0.1.230
+ 10.0.1.19
true
@@ -8223,48 +14138,54 @@ http_interactions:
false
+ false
+
+ 1
+ 1
+
-
- r-05ad2451777d582ec
+ r-0d3845bde588bc6ff
200278856672
-
- sg-347f9b5d
- default
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
-
- i-02c925747e07a8118
- ami-5769193e
+ i-0e48bff566d8742b3
+ ami-2a69aa47
16
running
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
+ ip-10-41-232-222.ec2.internal
+ ec2-54-225-48-100.compute-1.amazonaws.com
+ EmsRefreshSpec-KeyPair
0
- m3.medium
- 2017-07-24T19:18:26.000Z
+ t1.micro
+ 2018-09-04T12:12:02.000Z
us-east-1d
default
- aki-1eceaf77
+ aki-919dcaf8
- disabled
+ enabled
- 10.102.130.251
- 54.162.181.195
+ 10.41.232.222
+ 54.225.48.100
-
- sg-347f9b5d
- default
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
x86_64
@@ -8274,31 +14195,60 @@ http_interactions:
-
/dev/sda1
- vol-05eb880e2e337b3f1
+ vol-044ae2b3615b12913
attached
- 2017-07-24T19:18:26.000Z
+ 2018-09-04T12:12:03.000Z
true
paravirtual
-
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
-
- Name
- testtina123456
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
xen
false
+
+ 1
+ 1
+
+ 940372691376
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:04 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:28 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -8311,14 +14261,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080809Z
+ - 20180904T145844Z
X-Amz-Content-Sha256:
- d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=de199882e65b5dd210df2968b73cbde76de703239be55deeac625b47d3cb0c8f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=864d04a165c0dbac4d938e6cf447159048ff54882a93f5988ee8faae84a25f91
Content-Length:
- '38'
Accept:
@@ -8335,7 +14285,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:04 GMT
+ - Tue, 04 Sep 2018 14:58:44 GMT
Server:
- AmazonEC2
body:
@@ -8343,31 +14293,8 @@ http_interactions:
string: |-
- 45b595f5-46a6-4ab1-975f-2d4259402ff4
+ bb075526-314b-4612-abbe-000efc305b03
- -
- vpc-a06de3c5
- available
- 10.0.0.0/16
-
-
-
- 10.0.0.0/16
- vpc-cidr-assoc-57b3403e
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- Name
- DemoVPC
-
-
- default
- false
-
-
vpc-ff49ff91
available
@@ -8430,6 +14357,29 @@ http_interactions:
default
false
+ -
+ vpc-36cad24e
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-1c435976
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ Bronagh-network
+
+
+ default
+ false
+
-
vpc-aee2a6ca
available
@@ -8493,7 +14443,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:10 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:45 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -8506,14 +14456,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080810Z
+ - 20180904T145845Z
X-Amz-Content-Sha256:
- 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=66d0c57fd3e537a2760a5cfbd86329a8894f2420bf32af60d84487290df82a87
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d611d0f1960e3ef907a63c3c0707d9048a8eff017408b2bf89a81e30658ba8ae
Content-Length:
- '41'
Accept:
@@ -8530,7 +14480,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:04 GMT
+ - Tue, 04 Sep 2018 14:58:44 GMT
Server:
- AmazonEC2
body:
@@ -8538,7 +14488,7 @@ http_interactions:
string: |-
- 9e43b47f-4b5f-46cd-a4d0-35bd5a8161fe
+ 21809202-49a2-4b3d-b812-dea02b597d50
-
subnet-16c70477
@@ -8546,7 +14496,7 @@ http_interactions:
vpc-ff49ff91
10.0.1.0/24
- 248
+ 243
us-east-1d
false
false
@@ -8564,19 +14514,37 @@ http_interactions:
vpc-aee2a6ca
172.30.3.0/24
- 251
+ 250
us-east-1d
false
true
false
+ -
+ subnet-5f5a9670
+ available
+ vpc-ff49ff91
+ 10.0.8.0/24
+
+ 246
+ us-east-1e
+ false
+ false
+
+
-
+ Name
+ LadasTest
+
+
+ false
+
-
subnet-2190b144
available
vpc-8cf117f5
10.2.0.0/24
- 248
+ 249
us-east-1c
false
false
@@ -8614,7 +14582,7 @@ http_interactions:
vpc-c3d2f1a5
10.0.0.0/24
- 248
+ 247
us-east-1c
false
false
@@ -8648,7 +14616,7 @@ http_interactions:
vpc-aee2a6ca
172.30.1.0/24
- 251
+ 250
us-east-1b
false
true
@@ -8666,31 +14634,13 @@ http_interactions:
true
false
- -
- subnet-ac904787
- available
- vpc-a06de3c5
- 10.0.1.0/24
-
- 240
- us-east-1e
- false
- false
-
-
-
- Name
- subnet2
-
-
- false
-
-
subnet-e88815d5
available
vpc-aee2a6ca
172.30.0.0/24
- 246
+ 247
us-east-1a
false
true
@@ -8702,7 +14652,7 @@ http_interactions:
vpc-ff49ff91
10.0.0.0/24
- 237
+ 241
us-east-1e
false
true
@@ -8714,28 +14664,10 @@ http_interactions:
false
- -
- subnet-1852bb33
- available
- vpc-a06de3c5
- 10.0.0.0/24
-
- 250
- us-east-1e
- false
- true
-
-
-
- Name
- Subnet1
-
-
- false
-
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:10 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:45 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -8748,14 +14680,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080810Z
+ - 20180904T145845Z
X-Amz-Content-Sha256:
- 398587829763af2624ad0faa257a51949217b85bb2957c3948946c38ab0fddac
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f3285118dddf84d8fbe98e70d201d004334232cf2f26f9a3d0bcc32a77cc4a17
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a8d46733f057f6fd80420670ded3502453a904da20f4fcd5cecbd5aa2c7e1832
Content-Length:
- '48'
Accept:
@@ -8772,7 +14704,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:05 GMT
+ - Tue, 04 Sep 2018 14:58:46 GMT
Server:
- AmazonEC2
body:
@@ -8780,7 +14712,7 @@ http_interactions:
string: |-
- 1686512b-53b1-431c-b657-8b0df5dc36ec
+ 548c5726-c667-441a-a67c-affd6167468a
-
200278856672
@@ -9884,28 +15816,54 @@ http_interactions:
-
200278856672
- sg-000ff571
- launch-wizard-46
- launch-wizard-46 created 2017-06-16T16:53:45.929-04:00
- vpc-a06de3c5
+ sg-1b8a728d
+ launch-wizard-13
+ launch-wizard-13 created 2017-10-09T15:03:56.991+01:00
-
tcp
- 80
- 80
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-15d81e83
+ Ubuntu Server 14-04 LTS-14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
-
- ::/0
+ 0.0.0.0/0
-
+
+
+
+
+
+ -
+ 200278856672
+ sg-fde6206b
+ Ubuntu Server 14-04 LTS -HVM--14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS (HVM) version 14.04 LTS 20170803 provided by Canonical Group Limited
+
-
tcp
22
@@ -9919,27 +15877,56 @@ http_interactions:
+
+
+
+ -
+ 200278856672
+ sg-f448eb62
+ launch-wizard-14
+ launch-wizard-14 created 2018-03-12T12:23:52.936+01:00
+
-
tcp
- 443
- 443
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
-
- ::/0
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
-
+
+
+
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -9949,25 +15936,60 @@ http_interactions:
-
+
+
-
- Name
- Ansible tower
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
-
200278856672
- sg-00e3537c
- launch-wizard-27
- launch-wizard-27 created 2017-01-26T13:23:15.837-05:00
- vpc-a06de3c5
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+ Enable SSH access and HTTP access on the inbound port
-
tcp
- 3389
- 3389
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
@@ -9978,9 +16000,59 @@ http_interactions:
-
+
+
-
- -1
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+
+
+ -
+ 200278856672
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
@@ -9990,7 +16062,34 @@ http_interactions:
-
+
+
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
-
200278856672
@@ -10028,10 +16127,10 @@ http_interactions:
-
200278856672
- sg-03ff5a67
- launch-wizard-5
- launch-wizard-5 created 2015-01-29T14:42:40.334-05:00
- vpc-a06de3c5
+ sg-041d424d
+ launch-wizard-36
+ launch-wizard-36 created 2018-04-26T11:02:24.267+01:00
+ vpc-ff49ff91
-
tcp
@@ -10061,6 +16160,93 @@ http_interactions:
+ -
+ 200278856672
+ sg-06ed824c
+ ladas_test_jul25_3
+ ladas_test_changed
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-08314440
+ launch-wizard-38
+ launch-wizard-38 created 2018-05-24T15:43:41.371+02:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+ -
+ icmp
+ -1
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
-
200278856672
sg-0d2cd677
@@ -10098,36 +16284,125 @@ http_interactions:
-
200278856672
- sg-10362275
- DemoSecurityGroup
- for AWS Demos
- vpc-a06de3c5
+ sg-14ca085e
+ ladas_test5
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
22
22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-1e2cf271
+ default
+ default VPC security group
+ vpc-ff49ff91
+
+
-
+ -1
-
200278856672
- sg-10362275
+ sg-1e2cf271
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-2899b45d
+ launch-wizard-16
+ launch-wizard-16 created 2017-12-13T10:04:20.108-05:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-42071e09
+ ladas_test_jul10
+ ladas_test_changed
+ vpc-ff49ff91
+
-
tcp
- 3306
- 3306
-
+ 22
+ 22
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
@@ -10145,19 +16420,69 @@ http_interactions:
-
+
+ -
+ 200278856672
+ sg-43cb9c27
+ launch-wizard-7
+ launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ vpc-ff49ff91
+
+
-
- Name
- DemoSecGroup-Disallowed
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
-
+
-
200278856672
- sg-1da7d07a
- launch-wizard-9
- launch-wizard-9 created 2015-08-24T14:02:53.560-04:00
- vpc-a06de3c5
+ sg-45ea7f37
+ launch-wizard-52
+ launch-wizard-52 created 2017-10-19T17:55:15.762-04:00
+ vpc-8cf117f5
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-47168f0d
+ ladas_test_jul24_3
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10189,44 +16514,10 @@ http_interactions:
-
200278856672
- sg-1e2cf271
- default
- default VPC security group
- vpc-ff49ff91
-
-
-
- -1
-
-
-
- 200278856672
- sg-1e2cf271
-
-
-
-
-
-
-
-
- -
- -1
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- 200278856672
- sg-1facdb78
- launch-wizard-11
- launch-wizard-11 created 2015-08-24T14:22:34.811-04:00
- vpc-a06de3c5
+ sg-4a6d4b38
+ launch-wizard-56
+ launch-wizard-56 created 2017-10-31T13:12:17.619-04:00
+ vpc-8cf117f5
-
tcp
@@ -10258,17 +16549,17 @@ http_interactions:
-
200278856672
- sg-24362241
+ sg-4cc30d32
default
default VPC security group
- vpc-a06de3c5
+ vpc-8cf117f5
-
-1
-
200278856672
- sg-24362241
+ sg-4cc30d32
@@ -10292,10 +16583,10 @@ http_interactions:
-
200278856672
- sg-2613e957
- launch-wizard-45
- launch-wizard-45 created 2017-06-16T16:44:29.050-04:00
- vpc-a06de3c5
+ sg-4d0ec507
+ ladas_test
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10310,23 +16601,6 @@ http_interactions:
- -
- tcp
- 443
- 443
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
@@ -10344,10 +16618,10 @@ http_interactions:
-
200278856672
- sg-38511448
- launch-wizard-47
- launch-wizard-47 created 2017-08-29T15:13:44.025-04:00
- vpc-a06de3c5
+ sg-5096f91a
+ ladas_test_jul25_2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10379,15 +16653,15 @@ http_interactions:
-
200278856672
- sg-398cb044
- launch-wizard-25
- launch-wizard-25 created 2016-12-20T17:45:43.702-05:00
- vpc-a06de3c5
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ Public ELB Security Group with HTTP access on port 80 from the internet
+ vpc-c3d2f1a5
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -10400,7 +16674,9 @@ http_interactions:
-
- -1
+ tcp
+ 80
+ 80
-
@@ -10411,13 +16687,27 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ aws:cloudformation:logical-id
+ PublicLoadBalancerSecurityGroup
+
+
-
200278856672
- sg-3ecff343
- launch-wizard-23
- launch-wizard-23 created 2016-12-20T16:19:45.863-05:00
- vpc-a06de3c5
+ sg-5b83ec11
+ ladas_test_jul25_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10449,10 +16739,10 @@ http_interactions:
-
200278856672
- sg-434f323f
- launch-wizard-36
- launch-wizard-36 created 2017-02-10T16:43:58.127-05:00
- vpc-a06de3c5
+ sg-5c49922a
+ launch-wizard-26
+ launch-wizard-26 created 2018-03-06T13:29:21.183-05:00
+ vpc-8cf117f5
-
tcp
@@ -10484,14 +16774,15 @@ http_interactions:
-
200278856672
- sg-43cb9c27
- launch-wizard-7
- launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+ ladas_ansible_test_1_sc_description
vpc-ff49ff91
-
-
+
-
- -1
+ tcp
+ 80
+ 80
-
@@ -10501,24 +16792,29 @@ http_interactions:
-
-
- -
- 200278856672
- sg-4cc30d32
- default
- default VPC security group
- vpc-8cf117f5
-
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-4cc30d32
+ 0.0.0.0/0
-
-
+
+
+
+
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
@@ -10539,15 +16835,15 @@ http_interactions:
-
200278856672
- sg-56a5d231
- launch-wizard-10
- launch-wizard-10 created 2015-08-24T14:06:10.925-04:00
- vpc-a06de3c5
+ sg-67541b15
+ smartstate
+ Security group for smartstate Agent
+ vpc-aee2a6ca
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -10557,10 +16853,10 @@ http_interactions:
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -10570,19 +16866,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- Public ELB Security Group with HTTP access on port 80 from the internet
- vpc-c3d2f1a5
-
-
tcp
- 80
- 80
+ 443
+ 443
-
@@ -10595,9 +16882,7 @@ http_interactions:
-
- tcp
- 80
- 80
+ -1
-
@@ -10608,27 +16893,13 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- aws:cloudformation:logical-id
- PublicLoadBalancerSecurityGroup
-
-
-
200278856672
- sg-6106b61c
- launch-wizard-16
- launch-wizard-16 created 2016-11-15T16:12:37.114+01:00
- vpc-a06de3c5
+ sg-68c28c1e
+ simaishi
+ launch-wizard-36 created 2018-03-21T17:44:48.938-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -10643,6 +16914,23 @@ http_interactions:
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
-
@@ -10660,10 +16948,10 @@ http_interactions:
-
200278856672
- sg-65d59519
- launch-wizard-37
- launch-wizard-37 created 2017-02-14T17:18:15.823+01:00
- vpc-a06de3c5
+ sg-6b62e412
+ launch-wizard-15
+ launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
+ vpc-ff49ff91
-
tcp
@@ -10695,15 +16983,15 @@ http_interactions:
-
200278856672
- sg-67af5d03
- launch-wizard-2
- launch-wizard-2 created 2014-12-16T11:24:47.439-05:00
- vpc-a06de3c5
+ sg-734efc0f
+ quick-create-2-lbtest3
+ quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
+ vpc-ff49ff91
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -10730,10 +17018,10 @@ http_interactions:
-
200278856672
- sg-6b62e412
- launch-wizard-15
- launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
- vpc-ff49ff91
+ sg-75614707
+ launch-wizard-57
+ launch-wizard-57 created 2017-10-31T13:14:14.391-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -10765,10 +17053,10 @@ http_interactions:
-
200278856672
- sg-734efc0f
- quick-create-2-lbtest3
- quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
- vpc-ff49ff91
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ Enable SSH access via port 22
+ vpc-8cf117f5
-
tcp
@@ -10783,6 +17071,19 @@ http_interactions:
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -10797,13 +17098,35 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+
-
200278856672
- sg-73f74d0e
- launch-wizard-17
- launch-wizard-17 created 2016-11-17T11:08:15.164-05:00
- vpc-a06de3c5
+ sg-79f9e633
+ ladas_test2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10835,24 +17158,11 @@ http_interactions:
-
200278856672
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- Enable SSH access via port 22
- vpc-8cf117f5
+ sg-7b534930
+ ladas_test_jul11
+ ladas_test_changed
+ vpc-ff49ff91
-
-
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
tcp
22
@@ -10880,28 +17190,6 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- aws:cloudformation:logical-id
- InstanceSecurityGroup
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
-
-
200278856672
@@ -10940,10 +17228,10 @@ http_interactions:
-
200278856672
- sg-7ec11602
- launch-wizard-26
- launch-wizard-26 created 2017-01-17T15:47:44.393-05:00
- vpc-a06de3c5
+ sg-7f892508
+ launch-wizard-18
+ launch-wizard-18 created 2018-02-01T14:12:05.486-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -11023,10 +17311,10 @@ http_interactions:
-
200278856672
- sg-82c99dfe
- launch-wizard-38
- launch-wizard-38 created 2017-02-16T11:27:56.384-05:00
- vpc-a06de3c5
+ sg-8280c0f5
+ launch-wizard-22
+ launch-wizard-22 created 2018-02-14T15:09:29.980+01:00
+ vpc-ff49ff91
-
tcp
@@ -11058,28 +17346,11 @@ http_interactions:
-
200278856672
- sg-86e19cf8
- launch-wizard-40
- launch-wizard-40 created 2017-05-16T14:13:09.595-04:00
- vpc-a06de3c5
+ sg-8b4c9dc2
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-1
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
-
- udp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
tcp
22
@@ -11090,28 +17361,7 @@ http_interactions:
0.0.0.0/0
-
- -
- ::/0
-
-
-
-
- -
- tcp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
+
@@ -11131,10 +17381,10 @@ http_interactions:
-
200278856672
- sg-87838bf9
- launch-wizard-42
- launch-wizard-42 created 2017-06-05T17:22:54.552-04:00
- vpc-a06de3c5
+ sg-8dff68ff
+ launch-wizard-53
+ launch-wizard-53 created 2017-10-19T23:07:38.280-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -11325,21 +17575,20 @@ http_interactions:
-
200278856672
- sg-999c6efd
- mk_test
- MK
- vpc-a06de3c5
+ sg-a493cddd
+ default
+ default VPC security group
+ vpc-aee2a6ca
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 173.3.23.48/32
+ 200278856672
+ sg-a493cddd
-
+
+
@@ -11360,10 +17609,10 @@ http_interactions:
-
200278856672
- sg-9e1be1ef
- launch-wizard-44
- launch-wizard-44 created 2017-06-16T16:29:17.135-04:00
- vpc-a06de3c5
+ sg-a5b994d0
+ launch-wizard-14
+ launch-wizard-14 created 2017-12-13T09:42:39.062-05:00
+ vpc-ff49ff91
-
tcp
@@ -11395,10 +17644,10 @@ http_interactions:
-
200278856672
- sg-9ed82afa
- launch-wizard-4
- launch-wizard-4 created 2014-12-16T16:49:57.781-05:00
- vpc-a06de3c5
+ sg-a66eedd0
+ launch-wizard-27
+ launch-wizard-27 created 2018-03-12T14:47:33.616+01:00
+ vpc-aee2a6ca
-
tcp
@@ -11407,7 +17656,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -11430,10 +17679,10 @@ http_interactions:
-
200278856672
- sg-9fe1a5e1
- launch-wizard-41
- launch-wizard-41 created 2017-05-18T11:06:38.403-04:00
- vpc-a06de3c5
+ sg-a84495e1
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
tcp
@@ -11465,11 +17714,30 @@ http_interactions:
-
200278856672
- sg-9ff8ace3
- launch-wizard-39
- launch-wizard-39 created 2017-02-16T11:40:34.781-05:00
- vpc-a06de3c5
+ sg-a86bf7de
+ stomsa
+ stomsa
+ vpc-aee2a6ca
+
-
+ tcp
+ 8000
+ 8000
+
+
+
-
+ 0.0.0.0/0
+ SimpleHTTPServer
+
+
+
+ -
+ ::/0
+ SimpleHTTPServer
+
+
+
+
-
tcp
22
@@ -11477,7 +17745,12 @@ http_interactions:
-
- 0.0.0.0/0
+ 213.175.37.10/32
+ SSH office
+
+ -
+ 93.153.77.219/32
+ SSH VPN
@@ -11497,23 +17770,30 @@ http_interactions:
+
+ -
+ Name
+ stomsa
+
+
-
200278856672
- sg-a493cddd
- default
- default VPC security group
- vpc-aee2a6ca
+ sg-ac6543de
+ launch-wizard-55
+ launch-wizard-55 created 2017-10-31T13:11:15.686-04:00
+ vpc-c3d2f1a5
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-a493cddd
+ 0.0.0.0/0
-
-
+
@@ -11534,10 +17814,10 @@ http_interactions:
-
200278856672
- sg-a6122edb
- launch-wizard-18
- launch-wizard-18 created 2016-12-20T14:51:03.563-05:00
- vpc-a06de3c5
+ sg-b00affc6
+ launch-wizard-23
+ launch-wizard-23 created 2018-02-28T16:08:13.133+00:00
+ vpc-ff49ff91
-
tcp
@@ -11569,10 +17849,10 @@ http_interactions:
-
200278856672
- sg-b5d624d1
- launch-wizard-3
- launch-wizard-3 created 2014-12-16T16:24:52.047-05:00
- vpc-a06de3c5
+ sg-b267fef8
+ ladas_test_jul24_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -11581,7 +17861,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -11604,15 +17884,15 @@ http_interactions:
-
200278856672
- sg-c00e19a5
- DemoSecGroup-Allowed
- 80 and 443
- vpc-a06de3c5
+ sg-b83144f0
+ launch-wizard-37
+ launch-wizard-37 created 2018-05-24T15:39:49.093+02:00
+ vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -11622,10 +17902,32 @@ http_interactions:
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+ quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ vpc-ff49ff91
+
-
tcp
- 443
- 443
+ 80
+ 80
-
@@ -11652,10 +17954,10 @@ http_interactions:
-
200278856672
- sg-cd64e2b4
- launch-wizard-14
- launch-wizard-14 created 2016-01-06T18:06:11.447-05:00
- vpc-a06de3c5
+ sg-dbed8291
+ ladas_test_jul25_4
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -11687,10 +17989,10 @@ http_interactions:
-
200278856672
- sg-cf2dd7be
- launch-wizard-43
- launch-wizard-43 created 2017-06-16T16:18:58.509-04:00
- vpc-a06de3c5
+ sg-dfe6c6a6
+ launch-wizard-13
+ launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
+ vpc-ff49ff91
-
tcp
@@ -11705,6 +18007,19 @@ http_interactions:
+ -
+ udp
+ 19132
+ 19132
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -11722,10 +18037,10 @@ http_interactions:
-
200278856672
- sg-d2fb5eb6
- launch-wizard-6
- launch-wizard-6 created 2015-01-29T14:59:03.773-05:00
- vpc-a06de3c5
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1801_01 provided by Centos.org
+ vpc-ff49ff91
-
tcp
@@ -11757,15 +18072,15 @@ http_interactions:
-
200278856672
- sg-da58eaa6
- quick-create-2-for-lb-2
- quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ sg-ee6ec399
+ launch-wizard-17
+ launch-wizard-17 created 2018-02-01T11:27:33.447-05:00
vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -11792,21 +18107,20 @@ http_interactions:
-
200278856672
- sg-dadae6a7
- launch-wizard-22
- launch-wizard-22 created 2016-12-20T16:03:30.798-05:00
- vpc-a06de3c5
+ sg-f318d184
+ default
+ default VPC security group
+ vpc-36cad24e
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-f318d184
-
+
+
@@ -11827,11 +18141,24 @@ http_interactions:
-
200278856672
- sg-dfe6c6a6
- launch-wizard-13
- launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
- vpc-ff49ff91
+ sg-f84e7d8d
+ simaishi
+ simaishi
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -11846,9 +18173,9 @@ http_interactions:
-
- udp
- 19132
- 19132
+ tcp
+ 443
+ 443
-
@@ -11875,10 +18202,10 @@ http_interactions:
-
200278856672
- sg-f0d92a94
- launch-wizard-1
- launch-wizard-1 created 2014-12-15T17:32:09.146-05:00
- vpc-a06de3c5
+ sg-ff845f89
+ launch-wizard-25
+ launch-wizard-25 created 2018-03-06T11:33:01.209-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -11911,7 +18238,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:12 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:50 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -11924,14 +18251,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080812Z
+ - 20180904T145850Z
X-Amz-Content-Sha256:
- 398587829763af2624ad0faa257a51949217b85bb2957c3948946c38ab0fddac
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=8a165baa53c598a4666ef2dbf1e47e6750a60302ed5a1799ef4e86c18952e6cc
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1f84e4ccc0820d8c7211c788d03bf19510a9212ed136ac1bcddf22ede0fe7028
Content-Length:
- '48'
Accept:
@@ -11948,7 +18275,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:07 GMT
+ - Tue, 04 Sep 2018 14:58:50 GMT
Server:
- AmazonEC2
body:
@@ -11956,7 +18283,7 @@ http_interactions:
string: |-
- 793bd55c-77b1-47a9-9287-711033ce8a09
+ 7cd4201a-edf3-41f5-9fc5-ded1fe0dbd81
-
200278856672
@@ -13019,28 +19346,362 @@ http_interactions:
-
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
+
+ -
+ EmsRefreshSpecResourceGroupTag
+ EmsRefreshSpecResourceGroupTagValue
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+
+
+ -
+ 200278856672
+ sg-28999abf
+ launch-wizard-12
+ launch-wizard-12 created 2017-05-05T16:04:17.074+02:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-1b8a728d
+ launch-wizard-13
+ launch-wizard-13 created 2017-10-09T15:03:56.991+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-15d81e83
+ Ubuntu Server 14-04 LTS-14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-fde6206b
+ Ubuntu Server 14-04 LTS -HVM--14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS (HVM) version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-f448eb62
+ launch-wizard-14
+ launch-wizard-14 created 2018-03-12T12:23:52.936+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+
+
+ -
+ 200278856672
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+
+
+ -
+ 200278856672
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
-
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
aws:cloudformation:logical-id
InstanceSecurityGroup
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
-
200278856672
- sg-28999abf
- launch-wizard-12
- launch-wizard-12 created 2017-05-05T16:04:17.074+02:00
+ sg-0142c27e
+ default
+ default VPC security group
+ vpc-c3d2f1a5
+
+
-
+ -1
+
+
-
+ 200278856672
+ sg-0142c27e
+
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-041d424d
+ launch-wizard-36
+ launch-wizard-36 created 2018-04-26T11:02:24.267+01:00
+ vpc-ff49ff91
-
tcp
@@ -13056,32 +19717,62 @@ http_interactions:
-
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
-
200278856672
- sg-000ff571
- launch-wizard-46
- launch-wizard-46 created 2017-06-16T16:53:45.929-04:00
- vpc-a06de3c5
+ sg-06ed824c
+ ladas_test_jul25_3
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+ -
+ -1
+
+
-
- ::/0
+ 0.0.0.0/0
-
+
+
+
+
+ -
+ 200278856672
+ sg-08314440
+ launch-wizard-38
+ launch-wizard-38 created 2018-05-24T15:43:41.371+02:00
+ vpc-ff49ff91
+
-
tcp
22
@@ -13096,9 +19787,9 @@ http_interactions:
-
- tcp
- 443
- 443
+ icmp
+ -1
+ -1
-
@@ -13126,24 +19817,18 @@ http_interactions:
-
- -
- Name
- Ansible tower
-
-
-
200278856672
- sg-00e3537c
- launch-wizard-27
- launch-wizard-27 created 2017-01-26T13:23:15.837-05:00
- vpc-a06de3c5
+ sg-0d2cd677
+ quick-create-1
+ quick-create-1 created on Wednesday, August 10, 2016 at 4:16:22 PM UTC+2
+ vpc-ff49ff91
-
tcp
- 3389
- 3389
+ 2222
+ 2222
-
@@ -13170,20 +19855,21 @@ http_interactions:
-
200278856672
- sg-0142c27e
- default
- default VPC security group
- vpc-c3d2f1a5
+ sg-14ca085e
+ ladas_test5
+ ladas_test_changed
+ vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-0142c27e
+ 0.0.0.0/0
-
-
+
@@ -13204,21 +19890,20 @@ http_interactions:
-
200278856672
- sg-03ff5a67
- launch-wizard-5
- launch-wizard-5 created 2015-01-29T14:42:40.334-05:00
- vpc-a06de3c5
+ sg-1e2cf271
+ default
+ default VPC security group
+ vpc-ff49ff91
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-1e2cf271
-
+
+
@@ -13239,15 +19924,15 @@ http_interactions:
-
200278856672
- sg-0d2cd677
- quick-create-1
- quick-create-1 created on Wednesday, August 10, 2016 at 4:16:22 PM UTC+2
+ sg-2899b45d
+ launch-wizard-16
+ launch-wizard-16 created 2017-12-13T10:04:20.108-05:00
vpc-ff49ff91
-
tcp
- 2222
- 2222
+ 22
+ 22
-
@@ -13274,40 +19959,46 @@ http_interactions:
-
200278856672
- sg-10362275
- DemoSecurityGroup
- for AWS Demos
- vpc-a06de3c5
+ sg-42071e09
+ ladas_test_jul10
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
22
22
-
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
+
+
-
- tcp
- 3306
- 3306
-
+ -1
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
-
+
+
+ -
+ 200278856672
+ sg-43cb9c27
+ launch-wizard-7
+ launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ vpc-ff49ff91
+
-
-1
@@ -13321,19 +20012,13 @@ http_interactions:
-
- -
- Name
- DemoSecGroup-Disallowed
-
-
-
200278856672
- sg-1da7d07a
- launch-wizard-9
- launch-wizard-9 created 2015-08-24T14:02:53.560-04:00
- vpc-a06de3c5
+ sg-45ea7f37
+ launch-wizard-52
+ launch-wizard-52 created 2017-10-19T17:55:15.762-04:00
+ vpc-8cf117f5
-
tcp
@@ -13365,20 +20050,21 @@ http_interactions:
-
200278856672
- sg-1e2cf271
- default
- default VPC security group
+ sg-47168f0d
+ ladas_test_jul24_3
+ ladas_test_changed
vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-1e2cf271
+ 0.0.0.0/0
-
-
+
@@ -13399,10 +20085,10 @@ http_interactions:
-
200278856672
- sg-1facdb78
- launch-wizard-11
- launch-wizard-11 created 2015-08-24T14:22:34.811-04:00
- vpc-a06de3c5
+ sg-4a6d4b38
+ launch-wizard-56
+ launch-wizard-56 created 2017-10-31T13:12:17.619-04:00
+ vpc-8cf117f5
-
tcp
@@ -13434,17 +20120,17 @@ http_interactions:
-
200278856672
- sg-24362241
+ sg-4cc30d32
default
default VPC security group
- vpc-a06de3c5
+ vpc-8cf117f5
-
-1
-
200278856672
- sg-24362241
+ sg-4cc30d32
@@ -13468,10 +20154,10 @@ http_interactions:
-
200278856672
- sg-2613e957
- launch-wizard-45
- launch-wizard-45 created 2017-06-16T16:44:29.050-04:00
- vpc-a06de3c5
+ sg-4d0ec507
+ ladas_test
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -13486,23 +20172,6 @@ http_interactions:
- -
- tcp
- 443
- 443
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
@@ -13520,10 +20189,10 @@ http_interactions:
-
200278856672
- sg-38511448
- launch-wizard-47
- launch-wizard-47 created 2017-08-29T15:13:44.025-04:00
- vpc-a06de3c5
+ sg-5096f91a
+ ladas_test_jul25_2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -13555,15 +20224,15 @@ http_interactions:
-
200278856672
- sg-398cb044
- launch-wizard-25
- launch-wizard-25 created 2016-12-20T17:45:43.702-05:00
- vpc-a06de3c5
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ Public ELB Security Group with HTTP access on port 80 from the internet
+ vpc-c3d2f1a5
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -13576,7 +20245,9 @@ http_interactions:
-
- -1
+ tcp
+ 80
+ 80
-
@@ -13587,13 +20258,27 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ aws:cloudformation:logical-id
+ PublicLoadBalancerSecurityGroup
+
+
-
200278856672
- sg-3ecff343
- launch-wizard-23
- launch-wizard-23 created 2016-12-20T16:19:45.863-05:00
- vpc-a06de3c5
+ sg-5b83ec11
+ ladas_test_jul25_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -13625,10 +20310,10 @@ http_interactions:
-
200278856672
- sg-434f323f
- launch-wizard-36
- launch-wizard-36 created 2017-02-10T16:43:58.127-05:00
- vpc-a06de3c5
+ sg-5c49922a
+ launch-wizard-26
+ launch-wizard-26 created 2018-03-06T13:29:21.183-05:00
+ vpc-8cf117f5
-
tcp
@@ -13660,14 +20345,15 @@ http_interactions:
-
200278856672
- sg-43cb9c27
- launch-wizard-7
- launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+ ladas_ansible_test_1_sc_description
vpc-ff49ff91
-
-
+
-
- -1
+ tcp
+ 80
+ 80
-
@@ -13677,24 +20363,29 @@ http_interactions:
-
-
- -
- 200278856672
- sg-4cc30d32
- default
- default VPC security group
- vpc-8cf117f5
-
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-4cc30d32
+ 0.0.0.0/0
-
-
+
+
+
+
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
@@ -13715,11 +20406,24 @@ http_interactions:
-
200278856672
- sg-56a5d231
- launch-wizard-10
- launch-wizard-10 created 2015-08-24T14:06:10.925-04:00
- vpc-a06de3c5
+ sg-67541b15
+ smartstate
+ Security group for smartstate Agent
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -13733,6 +20437,19 @@ http_interactions:
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -13750,15 +20467,15 @@ http_interactions:
-
200278856672
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- Public ELB Security Group with HTTP access on port 80 from the internet
+ sg-68c28c1e
+ simaishi
+ launch-wizard-36 created 2018-03-21T17:44:48.938-04:00
vpc-c3d2f1a5
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -13768,55 +20485,21 @@ http_interactions:
-
-
-
tcp
- 80
- 80
+ 443
+ 443
-
0.0.0.0/0
-
-
-
-
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- aws:cloudformation:logical-id
- PublicLoadBalancerSecurityGroup
-
-
-
- -
- 200278856672
- sg-6106b61c
- launch-wizard-16
- launch-wizard-16 created 2016-11-15T16:12:37.114+01:00
- vpc-a06de3c5
-
-
-
- tcp
- 22
- 22
-
-
+
-
- 0.0.0.0/0
+ ::/0
-
-
+
@@ -13836,10 +20519,10 @@ http_interactions:
-
200278856672
- sg-65d59519
- launch-wizard-37
- launch-wizard-37 created 2017-02-14T17:18:15.823+01:00
- vpc-a06de3c5
+ sg-6b62e412
+ launch-wizard-15
+ launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
+ vpc-ff49ff91
-
tcp
@@ -13871,15 +20554,15 @@ http_interactions:
-
200278856672
- sg-67af5d03
- launch-wizard-2
- launch-wizard-2 created 2014-12-16T11:24:47.439-05:00
- vpc-a06de3c5
+ sg-734efc0f
+ quick-create-2-lbtest3
+ quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
+ vpc-ff49ff91
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -13906,10 +20589,10 @@ http_interactions:
-
200278856672
- sg-6b62e412
- launch-wizard-15
- launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
- vpc-ff49ff91
+ sg-75614707
+ launch-wizard-57
+ launch-wizard-57 created 2017-10-31T13:14:14.391-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -13941,10 +20624,10 @@ http_interactions:
-
200278856672
- sg-734efc0f
- quick-create-2-lbtest3
- quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
- vpc-ff49ff91
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ Enable SSH access via port 22
+ vpc-8cf117f5
-
tcp
@@ -13959,6 +20642,19 @@ http_interactions:
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -13973,13 +20669,35 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+
-
200278856672
- sg-73f74d0e
- launch-wizard-17
- launch-wizard-17 created 2016-11-17T11:08:15.164-05:00
- vpc-a06de3c5
+ sg-79f9e633
+ ladas_test2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -14011,24 +20729,11 @@ http_interactions:
-
200278856672
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- Enable SSH access via port 22
- vpc-8cf117f5
+ sg-7b534930
+ ladas_test_jul11
+ ladas_test_changed
+ vpc-ff49ff91
-
-
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
tcp
22
@@ -14056,28 +20761,6 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- aws:cloudformation:logical-id
- InstanceSecurityGroup
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
-
-
200278856672
@@ -14116,10 +20799,10 @@ http_interactions:
-
200278856672
- sg-7ec11602
- launch-wizard-26
- launch-wizard-26 created 2017-01-17T15:47:44.393-05:00
- vpc-a06de3c5
+ sg-7f892508
+ launch-wizard-18
+ launch-wizard-18 created 2018-02-01T14:12:05.486-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -14199,10 +20882,10 @@ http_interactions:
-
200278856672
- sg-82c99dfe
- launch-wizard-38
- launch-wizard-38 created 2017-02-16T11:27:56.384-05:00
- vpc-a06de3c5
+ sg-8280c0f5
+ launch-wizard-22
+ launch-wizard-22 created 2018-02-14T15:09:29.980+01:00
+ vpc-ff49ff91
-
tcp
@@ -14234,28 +20917,11 @@ http_interactions:
-
200278856672
- sg-86e19cf8
- launch-wizard-40
- launch-wizard-40 created 2017-05-16T14:13:09.595-04:00
- vpc-a06de3c5
+ sg-8b4c9dc2
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-1
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
-
- udp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
tcp
22
@@ -14266,28 +20932,7 @@ http_interactions:
0.0.0.0/0
-
- -
- ::/0
-
-
-
-
- -
- tcp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
+
@@ -14307,10 +20952,10 @@ http_interactions:
-
200278856672
- sg-87838bf9
- launch-wizard-42
- launch-wizard-42 created 2017-06-05T17:22:54.552-04:00
- vpc-a06de3c5
+ sg-8dff68ff
+ launch-wizard-53
+ launch-wizard-53 created 2017-10-19T23:07:38.280-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -14501,21 +21146,20 @@ http_interactions:
-
200278856672
- sg-999c6efd
- mk_test
- MK
- vpc-a06de3c5
+ sg-a493cddd
+ default
+ default VPC security group
+ vpc-aee2a6ca
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 173.3.23.48/32
+ 200278856672
+ sg-a493cddd
-
+
+
@@ -14536,10 +21180,10 @@ http_interactions:
-
200278856672
- sg-9e1be1ef
- launch-wizard-44
- launch-wizard-44 created 2017-06-16T16:29:17.135-04:00
- vpc-a06de3c5
+ sg-a5b994d0
+ launch-wizard-14
+ launch-wizard-14 created 2017-12-13T09:42:39.062-05:00
+ vpc-ff49ff91
-
tcp
@@ -14571,10 +21215,10 @@ http_interactions:
-
200278856672
- sg-9ed82afa
- launch-wizard-4
- launch-wizard-4 created 2014-12-16T16:49:57.781-05:00
- vpc-a06de3c5
+ sg-a66eedd0
+ launch-wizard-27
+ launch-wizard-27 created 2018-03-12T14:47:33.616+01:00
+ vpc-aee2a6ca
-
tcp
@@ -14583,7 +21227,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -14606,10 +21250,10 @@ http_interactions:
-
200278856672
- sg-9fe1a5e1
- launch-wizard-41
- launch-wizard-41 created 2017-05-18T11:06:38.403-04:00
- vpc-a06de3c5
+ sg-a84495e1
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
tcp
@@ -14641,11 +21285,30 @@ http_interactions:
-
200278856672
- sg-9ff8ace3
- launch-wizard-39
- launch-wizard-39 created 2017-02-16T11:40:34.781-05:00
- vpc-a06de3c5
+ sg-a86bf7de
+ stomsa
+ stomsa
+ vpc-aee2a6ca
+
-
+ tcp
+ 8000
+ 8000
+
+
+
-
+ 0.0.0.0/0
+ SimpleHTTPServer
+
+
+
+ -
+ ::/0
+ SimpleHTTPServer
+
+
+
+
-
tcp
22
@@ -14653,7 +21316,12 @@ http_interactions:
-
- 0.0.0.0/0
+ 213.175.37.10/32
+ SSH office
+
+ -
+ 93.153.77.219/32
+ SSH VPN
@@ -14673,23 +21341,30 @@ http_interactions:
+
+ -
+ Name
+ stomsa
+
+
-
200278856672
- sg-a493cddd
- default
- default VPC security group
- vpc-aee2a6ca
+ sg-ac6543de
+ launch-wizard-55
+ launch-wizard-55 created 2017-10-31T13:11:15.686-04:00
+ vpc-c3d2f1a5
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-a493cddd
+ 0.0.0.0/0
-
-
+
@@ -14710,10 +21385,10 @@ http_interactions:
-
200278856672
- sg-a6122edb
- launch-wizard-18
- launch-wizard-18 created 2016-12-20T14:51:03.563-05:00
- vpc-a06de3c5
+ sg-b00affc6
+ launch-wizard-23
+ launch-wizard-23 created 2018-02-28T16:08:13.133+00:00
+ vpc-ff49ff91
-
tcp
@@ -14745,10 +21420,10 @@ http_interactions:
-
200278856672
- sg-b5d624d1
- launch-wizard-3
- launch-wizard-3 created 2014-12-16T16:24:52.047-05:00
- vpc-a06de3c5
+ sg-b267fef8
+ ladas_test_jul24_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -14757,7 +21432,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -14780,15 +21455,28 @@ http_interactions:
-
200278856672
- sg-c00e19a5
- DemoSecGroup-Allowed
- 80 and 443
- vpc-a06de3c5
+ sg-b83144f0
+ launch-wizard-37
+ launch-wizard-37 created 2018-05-24T15:39:49.093+02:00
+ vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
-
@@ -14798,10 +21486,19 @@ http_interactions:
+
+
+ -
+ 200278856672
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+ quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ vpc-ff49ff91
+
-
tcp
- 443
- 443
+ 80
+ 80
-
@@ -14828,10 +21525,10 @@ http_interactions:
-
200278856672
- sg-cd64e2b4
- launch-wizard-14
- launch-wizard-14 created 2016-01-06T18:06:11.447-05:00
- vpc-a06de3c5
+ sg-dbed8291
+ ladas_test_jul25_4
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -14863,10 +21560,10 @@ http_interactions:
-
200278856672
- sg-cf2dd7be
- launch-wizard-43
- launch-wizard-43 created 2017-06-16T16:18:58.509-04:00
- vpc-a06de3c5
+ sg-dfe6c6a6
+ launch-wizard-13
+ launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
+ vpc-ff49ff91
-
tcp
@@ -14881,6 +21578,19 @@ http_interactions:
+ -
+ udp
+ 19132
+ 19132
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -14898,10 +21608,10 @@ http_interactions:
-
200278856672
- sg-d2fb5eb6
- launch-wizard-6
- launch-wizard-6 created 2015-01-29T14:59:03.773-05:00
- vpc-a06de3c5
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1801_01 provided by Centos.org
+ vpc-ff49ff91
-
tcp
@@ -14933,15 +21643,15 @@ http_interactions:
-
200278856672
- sg-da58eaa6
- quick-create-2-for-lb-2
- quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ sg-ee6ec399
+ launch-wizard-17
+ launch-wizard-17 created 2018-02-01T11:27:33.447-05:00
vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -14968,21 +21678,20 @@ http_interactions:
-
200278856672
- sg-dadae6a7
- launch-wizard-22
- launch-wizard-22 created 2016-12-20T16:03:30.798-05:00
- vpc-a06de3c5
+ sg-f318d184
+ default
+ default VPC security group
+ vpc-36cad24e
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-f318d184
-
+
+
@@ -15003,11 +21712,24 @@ http_interactions:
-
200278856672
- sg-dfe6c6a6
- launch-wizard-13
- launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
- vpc-ff49ff91
+ sg-f84e7d8d
+ simaishi
+ simaishi
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -15022,9 +21744,9 @@ http_interactions:
-
- udp
- 19132
- 19132
+ tcp
+ 443
+ 443
-
@@ -15051,10 +21773,10 @@ http_interactions:
-
200278856672
- sg-f0d92a94
- launch-wizard-1
- launch-wizard-1 created 2014-12-15T17:32:09.146-05:00
- vpc-a06de3c5
+ sg-ff845f89
+ launch-wizard-25
+ launch-wizard-25 created 2018-03-06T11:33:01.209-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -15087,7 +21809,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:14 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:54 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -15100,14 +21822,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080814Z
+ - 20180904T145854Z
X-Amz-Content-Sha256:
- 19ba5dc918b1e927d0c1a179e1bed2a393fa8987b6fbc66e756823d414115566
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=107888c62c2117d7cf99939bc5907d4526849cb424396211e6d4e6d261fefa84
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a6dddd8ffb1b38d22c96d8533723a10071746523824dda490f35ee82a1db6e3
Content-Length:
- '51'
Accept:
@@ -15124,7 +21846,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:09 GMT
+ - Tue, 04 Sep 2018 14:58:54 GMT
Server:
- AmazonEC2
body:
@@ -15132,68 +21854,39 @@ http_interactions:
string: |-
- 6d0b8d32-5c49-44a2-aa2d-b934de30e5c5
+ dad768d8-a75f-4b62-997f-a8f809da598e
-
- eni-1eec3adb
- subnet-16c70477
+ eni-e704c271
+ subnet-5f5a9670
vpc-ff49ff91
- us-east-1d
- test-network-port
- 200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 0e:49:87:ef:7f:c2
- 10.0.1.129
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
-
- -
- 10.0.1.129
- true
-
-
-
- interface
-
- -
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-82c99dfe
- launch-wizard-38
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-56d3827c
- i-0a922b9826b3dfd0d
+ eni-attach-828d7a27
+ i-002ca40492fff0e67
200278856672
0
attached
- 2017-02-16T16:28:15.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.86
+ 10.0.8.133
true
@@ -15201,86 +21894,47 @@ http_interactions:
interface
-
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
+ eni-17e6c4d8
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
200278856672
false
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-cd97a82d
- i-06c2e2feb85b5c8b2
+ eni-attach-5225809d
+ i-0639022117944a668
200278856672
0
attached
- 2017-07-17T19:21:45.000Z
+ 2018-03-15T13:28:47.000Z
true
-
-
- -
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
- interface
-
- -
- eni-239477d1
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB2
- 200278856672
- 210368014644
- true
- in-use
- 12:d8:ca:93:45:92
- 10.0.0.211
- true
-
-
-
- sg-0d2cd677
- quick-create-1
-
-
-
- eni-attach-85db02af
- amazon-elb
- 1
- attached
- 2017-02-08T01:57:57.000Z
- false
-
- 52.206.189.251
+ 54.172.168.193
- amazon-elb
+ amazon
true
-
- 10.0.0.211
+ 10.0.0.98
true
- 52.206.189.251
+ 54.172.168.193
- amazon-elb
+ amazon
true
@@ -15289,36 +21943,36 @@ http_interactions:
interface
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-4cc30d32
- default
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-63ae77fb
- i-013f45a83fd938928
+ eni-attach-87883f81
+ i-0a67c549558c9c392
200278856672
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.2.0.15
+ 10.0.1.165
true
@@ -15326,51 +21980,47 @@ http_interactions:
interface
-
- eni-b9cc7f19
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
-
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
+ Primary network interface
200278856672
false
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-0b3482fe
- i-0b72e0b70e7fae3c9
+ eni-attach-3be67cff
+ i-0125949f65c1e5528
200278856672
0
attached
- 2017-09-07T12:23:45.000Z
+ 2018-03-06T18:29:43.000Z
true
- 52.70.78.137
+ 52.3.221.140
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
+ amazon
true
-
- 10.0.0.236
+ 10.2.0.152
true
- 52.70.78.137
+ 52.3.221.140
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
+ amazon
true
@@ -15379,47 +22029,47 @@ http_interactions:
interface
-
- eni-2b986f38
- subnet-f849ff96
+ eni-6751aeb6
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- Primary network interface
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB2
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
+ 0e:c9:ea:e2:9b:42
+ 10.0.1.195
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-0d2cd677
+ quick-create-1
- eni-attach-455ec9ed
- i-c72af2f6
- 200278856672
- 0
+ eni-attach-04dda1050e8b01bc7
+ amazon-elb
+ 1
attached
- 2016-08-30T07:17:58.000Z
- true
+ 2018-03-05T13:00:40.000Z
+ false
- 54.208.71.4
+ 52.44.158.113
- amazon
+ amazon-elb
true
-
- 10.0.0.122
+ 10.0.1.195
true
- 54.208.71.4
+ 52.44.158.113
- amazon
+ amazon-elb
true
@@ -15428,102 +22078,64 @@ http_interactions:
interface
-
- eni-6933e6c9
+ eni-e0bb2c77
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- test
+ ELB lb-test3
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 12:85:fe:b2:a6:c2
+ 10.0.0.222
true
-
- sg-1e2cf271
- default
+ sg-734efc0f
+ quick-create-2-lbtest3
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-0d2cd677
+ quick-create-1
-
- sg-7c69ed05
- launch-wizard-12
+ sg-da58eaa6
+ quick-create-2-for-lb-2
- eni-attach-de56932b
- i-099e794cfa830e9be
- 200278856672
- 0
+ eni-attach-08dff347f2450c37e
+ amazon-elb
+ 1
attached
- 2017-09-04T13:26:00.000Z
- true
+ 2018-05-27T06:39:12.000Z
+ false
- 54.208.121.144
+ 52.207.60.40
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
-
- 10.0.0.4
+ 10.0.0.222
true
- 54.208.121.144
+ 52.207.60.40
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
- -
- 10.0.0.199
-
- false
-
-
-
- interface
-
- -
- eni-83fc5323
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ladastest2
- 200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 12:b7:bb:c9:a9:a8
- 10.0.0.249
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
-
- -
- 10.0.0.249
- true
-
interface
-
- eni-29e88329
+ eni-8449cf3e
subnet-e88815d5
vpc-aee2a6ca
us-east-1a
@@ -15531,98 +22143,80 @@ http_interactions:
200278856672
false
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-67541b15
+ smartstate
- eni-attach-f902c21c
- i-02975d4eb8e53bafd
+ eni-attach-22e6878f
+ i-0015ec0007f4d13a7
200278856672
0
attached
- 2017-08-10T19:10:05.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
interface
-
- eni-2132bad2
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB lb-test3
+ eni-6f153153
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
+ RDSNetworkInterface
200278856672
- 210368014644
+ AIDAJ6DRABHUIWCUBKTGK
true
in-use
- 12:65:97:2b:af:ce
- 10.0.0.51
+ 06:de:59:b9:f4:ed
+ 172.30.0.162
+ ip-172-30-0-162.ec2.internal
true
-
- sg-734efc0f
- quick-create-2-lbtest3
-
- -
- sg-0d2cd677
- quick-create-1
-
- -
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-9593cdec
+ rds-launch-wizard
- eni-attach-c593d9ee
- amazon-elb
+ eni-attach-41b0deed
+ 920715386331
1
attached
- 2017-01-28T12:33:16.000Z
+ 2018-05-20T00:41:43.000Z
false
- 54.88.156.69
-
- amazon-elb
+ 52.71.88.121
+ ec2-52-71-88-121.compute-1.amazonaws.com
+ 920715386331
true
-
- 10.0.0.51
+ 172.30.0.162
+ ip-172-30-0-162.ec2.internal
true
- 54.88.156.69
-
- amazon-elb
+ 52.71.88.121
+ ec2-52-71-88-121.compute-1.amazonaws.com
+ 920715386331
true
@@ -15631,36 +22225,38 @@ http_interactions:
interface
-
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- us-east-1e
- Primary network interface
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
+
200278856672
false
in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-62fceb4d
- i-091fe7ccd76ddac3b
+ eni-attach-fbede525
+ i-0fb9010fdcfe4d050
200278856672
- 1
+ 0
attached
- 2017-05-16T18:56:22.000Z
- false
+ 2018-02-26T18:31:27.000Z
+ true
-
- 10.0.0.129
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
@@ -15668,36 +22264,28 @@ http_interactions:
interface
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
+ eni-83fc5323
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+ ladastest2
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ available
+ 12:b7:bb:c9:a9:a8
+ 10.0.0.249
true
-
- sg-38511448
- launch-wizard-47
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-075e6227
- i-0c1eee2b86c7aa4a1
- 200278856672
- 0
- attached
- 2017-08-29T19:14:36.000Z
- true
-
-
- 10.0.1.85
+ 10.0.0.249
true
@@ -15758,258 +22346,164 @@ http_interactions:
interface
-
- eni-fd35bd0e
+ eni-ad25f7cc
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- ELB lb-test3
+ Primary network interface
200278856672
- 210368014644
- true
+ false
in-use
- 12:6b:f1:dd:d8:38
- 10.0.0.63
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-734efc0f
- quick-create-2-lbtest3
-
- -
- sg-0d2cd677
- quick-create-1
-
- -
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-6793d94c
- amazon-elb
- 1
+ eni-attach-05fac66f
+ i-8b5739f2
+ 200278856672
+ 0
attached
- 2017-01-28T12:33:04.000Z
- false
+ 2013-09-23T20:11:52.000Z
+ true
- 52.206.247.243
+ 54.208.119.197
- amazon-elb
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
true
-
- 10.0.0.63
+ 10.0.0.254
true
- 52.206.247.243
+ 54.208.119.197
- amazon-elb
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
true
-
-
- interface
-
- -
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
- 200278856672
- false
- in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
- true
-
-
-
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-ff35f0d1
- i-0bad1e8ff60a6f29a
- 200278856672
- 0
- attached
- 2017-05-22T20:35:56.000Z
- true
-
-
-
- -
- 10.0.1.87
- true
-
-
-
- interface
-
- -
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
- 200278856672
- false
- in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-aa928893
- i-0b1ec6330e0180f75
- 200278856672
- 0
- attached
- 2017-09-23T18:24:21.000Z
- true
-
-
-
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
+ 10.0.0.208
+
+ false
interface
-
- eni-a3902b84
- subnet-f849ff96
+ eni-4adc5ec2
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-12a4c3e2
- i-fb694e66
+ eni-attach-e6616b3e
+ i-02007c8f386e74470
200278856672
0
attached
- 2016-05-10T20:56:37.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 54.163.162.32
-
- amazon
- true
-
-
- 10.0.0.109
+ 10.0.1.179
true
-
- 54.163.162.32
-
- amazon
- true
-
interface
-
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- Primary network interface
+ eni-b20dbfd5
+ subnet-56f55f20
+ vpc-aee2a6ca
+ us-east-1b
+
200278856672
false
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-a493cddd
+ default
- eni-attach-05fac66f
- i-8b5739f2
+ eni-attach-d57a046c
+ i-0b2631823a0fdfc76
200278856672
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-07-25T10:56:16.000Z
true
- 54.208.119.197
-
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
true
-
- 10.0.0.254
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- 54.208.119.197
-
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
true
- -
- 10.0.0.208
-
- false
-
interface
-
- eni-5dcd5d49
+ eni-5c2a35df
subnet-de2363bb
vpc-c3d2f1a5
us-east-1c
ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 02:0f:73:10:12:3e
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 02:1e:4f:13:23:60
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
-
@@ -16018,28 +22512,28 @@ http_interactions:
- eni-attach-57495ece
+ eni-attach-02e23f87add8aad1b
amazon-elb
1
attached
- 2017-03-28T13:37:12.000Z
+ 2018-05-25T12:03:25.000Z
false
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
@@ -16049,73 +22543,87 @@ http_interactions:
interface
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
- Primary network interface
+ eni-85c03154
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:fb:8d:c6:e6:10
+ 10.0.1.253
true
-
- sg-65d59519
- launch-wizard-37
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-2d92e207
- i-08c033357b433ea2c
- 200278856672
- 0
+ eni-attach-04ccde3ecf22b7a4a
+ amazon-elb
+ 1
attached
- 2017-02-14T16:18:28.000Z
- true
+ 2018-03-05T02:06:29.000Z
+ false
+
+ 52.203.95.138
+
+ amazon-elb
+ true
+
-
- 10.0.1.155
+ 10.0.1.253
true
+
+ 52.203.95.138
+
+ amazon-elb
+ true
+
interface
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ Primary network interface
200278856672
false
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-24362241
- default
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-9413e1b8
- i-035fa3affa815d81d
+ eni-attach-5fcc62c4
+ i-0274ada368eb4da36
200278856672
0
attached
- 2017-03-21T19:39:52.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 10.0.1.230
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
@@ -16123,36 +22631,36 @@ http_interactions:
interface
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-08314440
+ launch-wizard-38
- eni-attach-45f9a86f
- i-0999c6f9b18ead5fc
+ eni-attach-b64f3e14
+ i-066465f361331dfa6
200278856672
0
attached
- 2017-02-16T16:40:47.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.78
+ 10.0.8.108
true
@@ -16160,17 +22668,17 @@ http_interactions:
interface
-
- eni-70385dde
+ eni-188b9e8c
subnet-f849ff96
vpc-ff49ff91
us-east-1e
ELB EmSRefreshSpecVPCELB
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:cc:9f:fa:40:6a
- 10.0.0.245
+ 12:20:9c:e5:0e:9a
+ 10.0.0.119
true
-
@@ -16179,15 +22687,15 @@ http_interactions:
- eni-attach-0c6f467f93b126af7
+ eni-attach-0893ce6442dcc61e5
amazon-elb
1
attached
- 2017-08-01T07:18:57.000Z
+ 2018-05-19T14:05:36.000Z
false
- 52.44.144.54
+ 52.86.136.121
amazon-elb
true
@@ -16195,10 +22703,10 @@ http_interactions:
-
- 10.0.0.245
+ 10.0.0.119
true
- 52.44.144.54
+ 52.86.136.121
amazon-elb
true
@@ -16209,102 +22717,134 @@ http_interactions:
interface
-
- eni-bf97324c
+ eni-3af276f7
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- ladas-tst1
+ ELB EmSRefreshSpecVPCELB2
200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 12:fa:36:7f:7f:c2
- 10.0.0.87
+ amazon-elb
+ true
+ in-use
+ 12:3b:28:53:d5:b2
+ 10.0.0.219
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-0d2cd677
+ quick-create-1
+
+ eni-attach-037d7ab06aa17cf3a
+ amazon-elb
+ 1
+ attached
+ 2018-02-04T01:58:12.000Z
+ false
+
+
+ 52.86.128.239
+
+ amazon-elb
+ true
+
-
- 10.0.0.87
+ 10.0.0.219
true
+
+ 52.86.128.239
+
+ amazon-elb
+ true
+
interface
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
+ eni-2b986f38
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
true
-
- sg-000ff571
- launch-wizard-46
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-4735d966
- i-03d706b95aa8b12ce
+ eni-attach-455ec9ed
+ i-c72af2f6
200278856672
0
attached
- 2017-06-16T20:54:01.000Z
+ 2016-08-30T07:17:58.000Z
true
+
+ 54.208.71.4
+
+ amazon
+ true
+
-
- 10.0.1.229
+ 10.0.0.122
true
+
+ 54.208.71.4
+
+ amazon
+ true
+
interface
-
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
-
+ Primary network interface
200278856672
false
in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
- eni-attach-2217e50e
- i-0c1542ba946875280
+ eni-attach-494c3deb
+ i-0c37a7d012922752e
200278856672
0
attached
- 2017-03-21T19:41:22.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.90
+ 10.0.8.189
true
@@ -16312,138 +22852,106 @@ http_interactions:
interface
-
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
-
+ eni-1eec3adb
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ test-network-port
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ available
+ 0e:49:87:ef:7f:c2
+ 10.0.1.129
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-3a6592a2
- i-0150ac66c83e0eae8
- 200278856672
- 0
- attached
- 2017-05-02T19:39:36.000Z
- true
-
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.1.129
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
interface
-
- eni-6f153153
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
- RDSNetworkInterface
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
+ us-east-1e
+
200278856672
- AIDAJ6DRABHUIWCUBKTGK
- true
+ false
in-use
- 06:de:59:b9:f4:ed
- 172.30.0.162
- ip-172-30-0-162.ec2.internal
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-9593cdec
- rds-launch-wizard
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-958ef9e4
- 920715386331
- 1
+ eni-attach-838d7a26
+ i-0622ab75f5f2ba752
+ 200278856672
+ 0
attached
- 2016-01-26T15:26:07.000Z
- false
+ 2018-06-06T18:52:17.000Z
+ true
-
- 52.71.88.121
- ec2-52-71-88-121.compute-1.amazonaws.com
- 920715386331
- true
-
-
- 172.30.0.162
- ip-172-30-0-162.ec2.internal
+ 10.0.8.55
true
-
- 52.71.88.121
- ec2-52-71-88-121.compute-1.amazonaws.com
- 920715386331
- true
-
interface
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
+ eni-88c5a245
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
200278856672
false
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
-
- sg-24362241
+ sg-1e2cf271
default
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
- eni-attach-59c6f675
- i-0659dcbc66cb830e5
+ eni-attach-d82c7915
+ i-004f3bd30726946d1
200278856672
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 10.0.1.70
+ 10.0.8.25
true
@@ -16451,36 +22959,38 @@ http_interactions:
interface
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
- i-0347d4075310c21e6
+ eni-attach-39fcca94
+ i-02cc7ad4129cefe1b
200278856672
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.167
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
@@ -16488,46 +22998,48 @@ http_interactions:
interface
-
- eni-f2397458
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB2
+ eni-2e2639ad
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 0e:41:ba:7f:58:a6
- 10.0.1.146
+ 02:4a:7f:ba:fe:d6
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
-
- sg-0d2cd677
- quick-create-1
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-05098d3c56e0d49a6
+ eni-attach-0d27a2d0bd0ecc36e
amazon-elb
1
attached
- 2017-09-06T21:09:17.000Z
+ 2018-05-25T12:03:48.000Z
false
- 52.207.128.155
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.1.146
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
- 52.207.128.155
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
@@ -16537,104 +23049,115 @@ http_interactions:
interface
-
- eni-fe24b408
- subnet-f849ff96
+ eni-2665f5bf
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
-
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-041d424d
+ launch-wizard-36
- eni-attach-0e5ec721
- i-0fca61ededa522f1a
+ eni-attach-7e503066
+ i-05d2313e6b9a42b16
200278856672
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 54.145.134.133
-
- amazon
- true
-
-
- 10.0.0.36
+ 10.0.1.192
true
-
- 54.145.134.133
-
- amazon
- true
-
interface
-
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
+ eni-bf97324c
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+ ladas-tst1
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
+ available
+ 12:fa:36:7f:7f:c2
+ 10.0.0.87
true
-
- sg-86e19cf8
- launch-wizard-40
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
+ -
+ 10.0.0.87
+ true
+
+
+ interface
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+
+ 200278856672
+ false
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
- eni-attach-88392ea7
- i-091fe7ccd76ddac3b
+ eni-attach-f41e8d30
+ i-0828f09c91ab89a97
200278856672
0
attached
- 2017-05-16T18:19:21.000Z
+ 2018-03-01T21:31:41.000Z
true
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
-
- 10.0.1.239
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
@@ -16643,36 +23166,38 @@ http_interactions:
interface
-
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- sg-4cc30d32
- default
+ sg-a86bf7de
+ stomsa
- eni-attach-877ba01f
- i-0d794150f7fd264c4
+ eni-attach-2bb4992d
+ i-0d0cbf4c0a5e4f8fc
200278856672
0
attached
- 2017-06-09T15:00:46.000Z
+ 2018-03-12T13:48:51.000Z
true
-
- 10.2.0.191
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
@@ -16680,38 +23205,36 @@ http_interactions:
interface
-
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-4451b1a7
- i-0951b95d6db76519d
+ eni-attach-0dbdb6d5
+ i-0510954911e45949b
200278856672
0
attached
- 2017-07-26T15:15:29.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 10.0.1.66
true
@@ -16719,34 +23242,42 @@ http_interactions:
interface
-
- eni-5d3479f7
- subnet-16c70477
+ eni-179d9880
+ subnet-f849ff96
vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB
+ us-east-1e
+ ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 0e:ad:8f:b5:e7:56
- 10.0.1.191
+ 12:7e:c1:7a:94:48
+ 10.0.0.129
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-734efc0f
+ quick-create-2-lbtest3
+
+ -
+ sg-0d2cd677
+ quick-create-1
+
+ -
+ sg-da58eaa6
+ quick-create-2-for-lb-2
- eni-attach-00664517cacff8d75
+ eni-attach-03212c56c09ef849f
amazon-elb
1
attached
- 2017-09-06T21:09:18.000Z
+ 2018-06-02T21:08:55.000Z
false
- 52.20.26.89
+ 52.6.7.19
amazon-elb
true
@@ -16754,10 +23285,10 @@ http_interactions:
-
- 10.0.1.191
+ 10.0.0.129
true
- 52.20.26.89
+ 52.6.7.19
amazon-elb
true
@@ -16768,51 +23299,37 @@ http_interactions:
interface
-
- eni-b6f161a2
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
- 210368014644
- true
+ false
in-use
- 02:18:bf:52:9a:3e
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-29495eb0
- amazon-elb
- 1
+ eni-attach-3a325e3c
+ i-0a7aebaf459f1f9e7
+ 200278856672
+ 0
attached
- 2017-03-28T13:37:48.000Z
- false
+ 2018-03-06T05:28:40.000Z
+ true
-
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
- amazon-elb
- true
-
-
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 10.0.1.19
true
-
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
- amazon-elb
- true
-
@@ -16821,7 +23338,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:15 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:58 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -16834,14 +23351,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080815Z
+ - 20180904T145858Z
X-Amz-Content-Sha256:
- 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=174090e594d1d342f252b4d17000b6740c408b1d61afdba36e447eaa3e6f6bc2
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=44346dfa7fa6c350dc647520eb9efb794e0c0b9e94dd17cc6313c58dc6f11a23
Content-Length:
- '47'
Accept:
@@ -16852,15 +23369,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - d6b40952-a291-11e7-9f1d-ad31c9941fb5
+ - 0d44b1dd-b053-11e8-8a99-8f3f45d6e573
Content-Type:
- text/xml
Content-Length:
- - '12763'
+ - '17957'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:11 GMT
+ - Tue, 04 Sep 2018 14:58:58 GMT
body:
encoding: UTF-8
string: |
@@ -16890,7 +23407,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefreshSpec-LoadBalancer
@@ -16902,6 +23418,7 @@ http_interactions:
+ EmsRefreshSpec-LoadBalancer
2
30
@@ -16910,21 +23427,18 @@ http_interactions:
TCP:22
2013-08-09T14:53:25.760Z
-
+
EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com
- Z35SXDOTRQ7X7K
vpc-ff49ff91
+ Z35SXDOTRQ7X7K
internet-facing
i-8b5739f2
-
- i-fb694e66
-
@@ -16941,7 +23455,6 @@ http_interactions:
200278856672
EmsRefreshSpec-SecurityGroup-VPC
- EmSRefreshSpecVPCELB
@@ -16962,6 +23475,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB
2
30
@@ -16970,25 +23484,189 @@ http_interactions:
HTTP:80/index.html
2016-08-09T08:16:14.340Z
+
+ sg-80f755ef
+
+
+ subnet-16c70477
+ subnet-f849ff96
+
+ EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
+
+
+ vpc-ff49ff91
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-8b5739f2
+
+
+
+
+
+
+
+
+ us-east-1d
+ us-east-1e
+
+ EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
+
+
+ 200278856672
+ quick-create-1
+
+
+
+
+ 22
+ TCP
+ TCP
+ 2222
+
+
+
+
+ EmSRefreshSpecVPCELB2
+
+ 2
+ 30
+ 10
+ 5
+ TCP:22
+
+ 2016-08-10T14:17:09.810Z
+
+ sg-0d2cd677
+
subnet-16c70477
subnet-f849ff96
+ EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
+
+
+ vpc-ff49ff91
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+
+
+
+
+
+ us-east-1e
+
+ lb-test3-322096868.us-east-1.elb.amazonaws.com
+
+
+ 200278856672
+ quick-create-2-for-lb-2
+
+
+
+
+ 22
+ TCP
+ TCP
+ 22
+
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+
+ 80
+ TCP
+ TCP
+ 88
+
+
+
+
+ lb-test3
+
+ 2
+ 30
+ 10
+ 5
+ HTTP:1600/index.html
+
+ 2017-01-27T10:18:32.770Z
- sg-80f755ef
+ sg-734efc0f
+ sg-0d2cd677
+ sg-da58eaa6
- EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
+
+ subnet-f849ff96
+
+ lb-test3-322096868.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-0aa433595b855eeeb
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ EmsRefres-ElasticL-UPI0RRUFR3HI
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2017-03-27T11:33:40.770Z
+
+
+ EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+ vpc-c3d2f1a5
Z35SXDOTRQ7X7K
- vpc-ff49ff91
internet-facing
- i-fb694e66
-
-
- i-8b5739f2
+ i-0828f09c91ab89a97
@@ -16997,74 +23675,66 @@ http_interactions:
- us-east-1d
- us-east-1e
+ us-east-1c
- EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
+ EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
200278856672
- quick-create-1
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- EmSRefreshSpecVPCELB2
- 22
- TCP
- TCP
- 2222
+ 80
+ HTTP
+ HTTP
+ 80
+ EmsRefres-PublicEl-15YIQXDK2TNOF
- 2
- 30
- 10
- 5
- TCP:22
+ 5
+ 90
+ 3
+ 60
+ HTTP:80/
- 2016-08-10T14:17:09.810Z
-
- subnet-16c70477
- subnet-f849ff96
-
+ 2017-03-27T12:21:17.830Z
- sg-0d2cd677
+ sg-5946c626
- EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
+
+ subnet-de2363bb
+
+ EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
Z35SXDOTRQ7X7K
- vpc-ff49ff91
internet-facing
-
+
+
+ i-0e48bff566d8742b3
+
+
- us-east-1e
+ us-east-1c
+ us-east-1d
- lb-test3-322096868.us-east-1.elb.amazonaws.com
+ SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
- 200278856672
- quick-create-2-for-lb-2
+ amazon-elb
+ amazon-elb-sg
- lb-test3
-
-
- 22
- TCP
- TCP
- 22
-
-
-
80
@@ -17074,40 +23744,26 @@ http_interactions:
-
-
- 80
- TCP
- TCP
- 88
-
-
-
+ SC-200278-ElasticL-1EUDCD7AKWGXB
- 2
+ 5
30
- 10
+ 3
5
- HTTP:1600/index.html
+ HTTP:80/
- 2017-01-27T10:18:32.770Z
-
- subnet-f849ff96
-
-
- sg-734efc0f
- sg-0d2cd677
- sg-da58eaa6
-
- lb-test3-322096868.us-east-1.elb.amazonaws.com
+ 2018-09-04T12:11:38.930Z
+
+
+ SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
Z35SXDOTRQ7X7K
internet-facing
- i-025623c4c4e4f84a0
+ i-08be28f4282ed4ad4
@@ -17119,13 +23775,12 @@ http_interactions:
us-east-1c
us-east-1d
- EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+ SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
amazon-elb
amazon-elb-sg
- EmsRefres-ElasticL-UPI0RRUFR3HI
@@ -17137,6 +23792,7 @@ http_interactions:
+ SC-200278-ElasticL-1FZE3MOB69WMC
5
30
@@ -17144,18 +23800,17 @@ http_interactions:
5
HTTP:80/
- 2017-03-27T11:33:40.770Z
-
+ 2018-09-04T12:12:08.120Z
- EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+
+ SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
Z35SXDOTRQ7X7K
- vpc-c3d2f1a5
internet-facing
- i-0150ac66c83e0eae8
+ i-03769bc6ccaba947a
@@ -17165,14 +23820,14 @@ http_interactions:
us-east-1c
+ us-east-1d
- EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
- 200278856672
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ amazon-elb
+ amazon-elb-sg
- EmsRefres-PublicEl-15YIQXDK2TNOF
@@ -17184,30 +23839,27 @@ http_interactions:
+ SC-200278-ElasticL-FDREQLBTVJ1Z
5
- 90
+ 30
3
- 60
+ 5
HTTP:80/
- 2017-03-27T12:21:17.830Z
-
- subnet-de2363bb
-
-
- sg-5946c626
-
- EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+ 2018-09-04T13:38:44.050Z
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
- d6b40952-a291-11e7-9f1d-ad31c9941fb5
+ 0d44b1dd-b053-11e8-8a99-8f3f45d6e573
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:17 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:59 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -17220,14 +23872,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080817Z
+ - 20180904T145859Z
X-Amz-Content-Sha256:
- 3af90022526a6f5460a9813c88cc0b96b9ad472999bfeedaccd286147e93047b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b84c8b121cc37e1eb7104cb302ff92af036399b104c445f3010abba4111be8d6
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5125b9c13dcd4099ec14316cff88850b92f50ba4ecb8d3303b866149c583f718
Content-Length:
- '93'
Accept:
@@ -17238,13 +23890,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - d78f26e3-a291-11e7-8626-0f04df6e0302
+ - 0e003978-b053-11e8-9594-ad9be6948e4b
Content-Type:
- text/xml
Content-Length:
- '629'
Date:
- - Tue, 26 Sep 2017 08:08:12 GMT
+ - Tue, 04 Sep 2018 14:58:59 GMT
body:
encoding: UTF-8
string: |
@@ -17260,11 +23912,11 @@ http_interactions:
- d78f26e3-a291-11e7-8626-0f04df6e0302
+ 0e003978-b053-11e8-9594-ad9be6948e4b
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:18 GMT
+ recorded_at: Tue, 04 Sep 2018 14:58:59 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -17277,14 +23929,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080818Z
+ - 20180904T145859Z
X-Amz-Content-Sha256:
- e3ca7eaa1d39176b50c00e34e89f3aaf68b84ce556b8e5b1d9242affcccfd5d4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a161bc97c6cad665e052273029d479adc63d679f2e63045035dec81bee158774
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d894197ff509084caa72706206249bc5bcd560657e2c8ef4aeaaa8e6a4cc7d9f
Content-Length:
- '86'
Accept:
@@ -17295,13 +23947,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - d814aaf6-a291-11e7-a860-153caedaf155
+ - 0e502e68-b053-11e8-8b4b-93a397b16a6e
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '629'
Date:
- - Tue, 26 Sep 2017 08:08:12 GMT
+ - Tue, 04 Sep 2018 14:59:00 GMT
body:
encoding: UTF-8
string: |
@@ -17314,20 +23966,14 @@ http_interactions:
OutOfService
Instance
-
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-fb694e66
- OutOfService
- Instance
-
- d814aaf6-a291-11e7-a860-153caedaf155
+ 0e502e68-b053-11e8-8b4b-93a397b16a6e
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:19 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:00 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -17340,14 +23986,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080819Z
+ - 20180904T145900Z
X-Amz-Content-Sha256:
- 906dd8e8fc282f77d697b9b88544cfc4963e06d223e5d72254f984144f015d1f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=47de78455e0ba19514795d353ff9a620ed3a51d0ea8fdac2d5c23415b2b34060
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3fdf210953c512f9a5b907caf90dad4439981e9add17507462259e1b1de33da3
Content-Length:
- '87'
Accept:
@@ -17358,13 +24004,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - d892b3e1-a291-11e7-9b63-81aa2f95405c
+ - 0e9db293-b053-11e8-a3f8-cb62625e8ce5
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '629'
Date:
- - Tue, 26 Sep 2017 08:08:13 GMT
+ - Tue, 04 Sep 2018 14:59:00 GMT
body:
encoding: UTF-8
string: |
@@ -17373,46 +24019,3715 @@ http_interactions:
Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-fb694e66
+ i-8b5739f2
OutOfService
Instance
+
+
+
+ 0e9db293-b053-11e8-a3f8-cb62625e8ce5
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:00 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=lb-test3&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145900Z
+ X-Amz-Content-Sha256:
+ - 9144f43e765264b7f9114214122e0e09f0a9bcd98921a1171dc71fef0ed7b152
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9f310cb8953d771f5444f1bc1123a8e8d4a3a7adaeff836352042bc9472235b2
+ Content-Length:
+ - '74'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 0eea253c-b053-11e8-983d-abc183f65efd
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '329'
+ Date:
+ - Tue, 04 Sep 2018 14:59:01 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+ 0eea253c-b053-11e8-983d-abc183f65efd
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:01 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-ElasticL-UPI0RRUFR3HI&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145901Z
+ X-Amz-Content-Sha256:
+ - 248667537d6bbfc04b0fa73fa9f33377cbe117e97d89da18d184861389227dbc
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ae00a471c81b80c59b147b04b71a884f11fe65837a700a55ff500e56ada959a2
+ Content-Length:
+ - '97'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 0f355f0d-b053-11e8-8bb8-eb267a1e0ee5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Tue, 04 Sep 2018 14:59:01 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-8b5739f2
- OutOfService
- Instance
+ N/A
+ i-0aa433595b855eeeb
+ InService
+ N/A
+
+
+
+
+ 0f355f0d-b053-11e8-8bb8-eb267a1e0ee5
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:01 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-PublicEl-15YIQXDK2TNOF&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145901Z
+ X-Amz-Content-Sha256:
+ - '088599de17d32def6eb7122147a610a3586edf12376e0646844232b01a1e9058'
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=074c97a377aca97b6fc63585aaa16cbe7c6857124aeb1df20af1e885eced644f
+ Content-Length:
+ - '98'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 0f81f792-b053-11e8-9d06-710d5c3302c5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Tue, 04 Sep 2018 14:59:02 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ N/A
+ i-0828f09c91ab89a97
+ InService
+ N/A
+
+
+
+
+ 0f81f792-b053-11e8-9d06-710d5c3302c5
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:02 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-1EUDCD7AKWGXB&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145902Z
+ X-Amz-Content-Sha256:
+ - fe3a466af36e1cebc15a290661479fa0d52bceb7c02f5f946adca9967caae818
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=646f17af0703be1d7dfd493288ca33636b924e5ab2de5c54ee47d71445c67c0a
+ Content-Length:
+ - '98'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 0fce1bf4-b053-11e8-9d06-710d5c3302c5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Tue, 04 Sep 2018 14:59:02 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ N/A
+ i-0e48bff566d8742b3
+ InService
+ N/A
+
+
+
+
+ 0fce1bf4-b053-11e8-9d06-710d5c3302c5
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:02 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-1FZE3MOB69WMC&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145902Z
+ X-Amz-Content-Sha256:
+ - 9dde193ff6a46f28a9e091e671189b2611f5c58b6b136881e1c53859da979451
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=64589f8d7a7e681fe720daaa7ee66329e58199345fac7d367eccea0e1abdc7cd
+ Content-Length:
+ - '98'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 10175a56-b053-11e8-983d-abc183f65efd
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Tue, 04 Sep 2018 14:59:02 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ N/A
+ i-08be28f4282ed4ad4
+ InService
+ N/A
+
+
+
+
+ 10175a56-b053-11e8-983d-abc183f65efd
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:03 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-FDREQLBTVJ1Z&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145903Z
+ X-Amz-Content-Sha256:
+ - c7b49541c27540ff8ef64689392c6a0019006ca7a38a4df2c3572ff13e90b4a7
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=86e595f52ce2fd86cf390155a856aea8574813392b48caa1e7f391aa749f2d38
+ Content-Length:
+ - '97'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 106097d0-b053-11e8-8451-0307695d6bda
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Tue, 04 Sep 2018 14:59:03 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ N/A
+ i-03769bc6ccaba947a
+ InService
+ N/A
- d892b3e1-a291-11e7-9b63-81aa2f95405c
+ 106097d0-b053-11e8-8451-0307695d6bda
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:20 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:03 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstances&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145903Z
+ X-Amz-Content-Sha256:
+ - 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2c027393cd2de56c4b050ffea0fe615f0ba8f9424bd913d879f69a9aad6a94ca
+ Content-Length:
+ - '43'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:03 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ cda9b395-7c12-419d-8294-f826e98fd247
+
+ -
+ r-0dece58a7cd92b3d1
+ 200278856672
+
+
+
-
+ i-0828f09c91ab89a97
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2018-03-01T21:31:41.000Z
+
+ us-east-1c
+
+ default
+
+
+ enabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
+ true
+
+ -
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-080996fdeaee13caf
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+
+ hvm
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+ xen
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
+ 200278856672
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+
-
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+
+ eni-attach-f41e8d30
+ 0
+ attached
+ 2018-03-01T21:31:41.000Z
+ true
+
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0d9d5788168db3796
+ 200278856672
+
+
+
-
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-32.ec2.internal
+
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 0
+
+ t2.micro
+ 2018-04-05T18:29:09.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0390b378515bffd1c
+ attached
+ 2018-04-05T18:29:10.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-39fcca94
+ 0
+ attached
+ 2018-04-05T18:29:09.000Z
+ true
+
+
+ -
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-016047928b31890f5
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0297a2b1075b3a2c6
+ ami-5769193e
+
+
80
+ stopped
+
+
+
+ User initiated
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-04-05T10:08:22.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ enabled
+
+
+ -
+ sg-347f9b5d
+ default
+
+
+
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0e7609b478fe9ca91
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ Name
+ mslemr
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-228-8-132.ec2.internal
+ ec2-54-237-152-215.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.228.8.132
+ 54.237.152.215
+
+ -
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-01fea15450fb7ba14
+ attached
+ 2018-09-04T12:12:32.000Z
+ true
+
+
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0bc3ae5e3f08c8a44
+ 200278856672
+
+
+
-
+ i-0125949f65c1e5528
+ ami-70e8fd66
+
+
16
+ running
+
+ ip-10-2-0-152.ec2.internal
+
+
+ hsong_centos_atomic
+ 0
+
+ t2.micro
+ 2018-03-06T18:29:43.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.152
+ 52.3.221.140
+ true
+
+ -
+ sg-5c49922a
+ launch-wizard-26
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-006fabcff33ae5272
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ hsong-centos
+
+
+ xen
+
+ -
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ Primary network interface
+ 200278856672
+ in-use
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
+ true
+
+
-
+ sg-5c49922a
+ launch-wizard-26
+
+
+
+ eni-attach-3be67cff
+ 0
+ attached
+ 2018-03-06T18:29:43.000Z
+ true
+
+
+ 52.3.221.140
+
+ amazon
+
+
+ -
+ 10.2.0.152
+ true
+
+ 52.3.221.140
+
+ amazon
+
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-072fcf51c1deca398
+ 200278856672
+
+
+
-
+ i-0510954911e45949b
+ ami-c998b6b2
+
+
16
+ running
+
+ ip-10-0-1-66.ec2.internal
+
+
+ bronaghkeypair
+ 0
+
+ t2.micro
+ 2017-12-13T14:43:34.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
+ true
+
+ -
+ sg-a5b994d0
+ launch-wizard-14
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d3587406018a8205
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ bronagh
+
+
+ xen
+
+ -
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
+ true
+
+
-
+ sg-a5b994d0
+ launch-wizard-14
+
+
+
+ eni-attach-0dbdb6d5
+ 0
+ attached
+ 2017-12-13T14:43:34.000Z
+ true
+
+
+ -
+ 10.0.1.66
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-066d4d1b049774f63
+ 200278856672
+
+
+
-
+ i-0274ada368eb4da36
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
+ 0
+
+ t2.micro
+ 2017-10-30T21:20:33.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.91
+ true
+
+ -
+ sg-8dff68ff
+ launch-wizard-53
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d76e68ae71222b49
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+
+ hvm
+ sbRkK1508468877905
+
+ -
+ Name
+ ssa-docker
+
+
+ xen
+
+ -
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ Primary network interface
+ 200278856672
+ in-use
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
-
+ sg-8dff68ff
+ launch-wizard-53
+
+
+
+ eni-attach-5fcc62c4
+ 0
+ attached
+ 2017-10-20T03:07:58.000Z
+ true
+
+
+ -
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/MIQ_SSA
+ AIPAJB66KPP4NYH7OLI2I
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-1842f370
+ 200278856672
+
+
+
-
+ i-8b5739f2
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-0-0-254.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2017-09-13T16:07:19.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-67606d2d
+ attached
+ 2013-09-23T20:11:57.000Z
+ true
+
+
+ -
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+
+ paravirtual
+ aPCzL1379967112359
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC
+
+ -
+ owner
+ UNKNOWN
+
+
+ xen
+
+ -
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-05fac66f
+ 0
+ attached
+ 2013-09-23T20:11:52.000Z
+ true
+
+
+ 54.208.119.197
+
+ 200278856672
+
+
+ -
+ 10.0.0.254
+ true
+
+ 54.208.119.197
+
+ 200278856672
+
+
+ -
+ 10.0.0.208
+
+ false
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c0e56163429b9a46
+ 200278856672
+
+
+
-
+ i-0bca58e6e540ddc39
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-2-0-239.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2017-05-03T10:47:06.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
+ true
+
+ -
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-0628a6ce987d4cb6e
+ attached
+ 2017-05-03T10:47:07.000Z
+ true
+
+
+
+ hvm
+ EmsRe-WebSe-1229KQXQO3HUK
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ Name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
+
+
+ xen
+
+ -
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
+ 200278856672
+ in-use
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
+ true
+
+
-
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+ eni-attach-cbd22453
+ 0
+ attached
+ 2017-05-03T10:47:06.000Z
+ true
+
+
+ 34.202.178.10
+
+ 200278856672
+
+
+ -
+ 10.2.0.239
+ true
+
+ 34.202.178.10
+
+ 200278856672
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-076deaba20c4af747
+ 200278856672
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ -
+ i-0e1752ff841801f65
+ ami-5769193e
+
+
80
+ stopped
+
+
+
+ User initiated (2018-09-03 12:12:01 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-03T12:10:36.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+
+ -
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-076672a9b80ac2e25
+ attached
+ 2018-09-03T12:10:36.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOff
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-05e4ba632b214dc1e
+ 200278856672
+
+
+
-
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-55.ec2.internal
+
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
+ 0
+
+ t2.nano
+ 2018-06-11T07:26:10.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.55
+ true
+
+ -
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-06e9ef72a99dcc223
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2__1
+
+ -
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
+
+
+ xen
+
+ -
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
+ true
+
+
-
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ eni-attach-838d7a26
+ 0
+ attached
+ 2018-06-06T18:52:17.000Z
+ true
+
+
+ -
+ 10.0.8.55
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+ -
+ i-002ca40492fff0e67
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-133.ec2.internal
+
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
+
+ t2.nano
+ 2018-06-15T13:08:32.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
+ true
+
+ -
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-096db62af3cb45d75
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ TestTag
+ test2__0
+
+ -
+ Name
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
+
+
+ xen
+
+ -
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:d5:74:0d:84:56
+ 10.0.8.133
+ true
+
+
-
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ eni-attach-828d7a27
+ 0
+ attached
+ 2018-06-06T18:52:17.000Z
+ true
+
+
+ -
+ 10.0.8.133
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-00a2f9d88c2068981
+ 200278856672
+
+
+
-
+ i-05d2313e6b9a42b16
+ ami-6871a115
+
+
16
+ running
+
+ ip-10-0-1-192.ec2.internal
+
+
+ julian cheal
+ 0
+
+ t2.micro
+ 2018-04-26T10:02:38.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
+ true
+
+ -
+ sg-041d424d
+ launch-wizard-36
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0eb5ddcf735f22184
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
+
+
+
+ hvm
+
+ xen
+
+ -
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
+ true
+
+
-
+ sg-041d424d
+ launch-wizard-36
+
+
+
+ eni-attach-7e503066
+ 0
+ attached
+ 2018-04-26T10:02:38.000Z
+ true
+
+
+ -
+ 10.0.1.192
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-09188ea8e40a2b4d8
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-09b65a1400b9538ff
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
+
+ 0
+
+ t1.micro
+ 2018-07-25T11:01:38.000Z
+
+ us-east-1c
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.149.203.110
+ 75.101.229.189
+
+ -
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-04d23aa0121812de9
+ attached
+ 2018-07-25T11:01:38.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ Name
+ mslemr-test4
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0a1dcdbc4e3f20db0
+ 200278856672
+
+
+
-
+ i-004f3bd30726946d1
+ ami-2051294a
+
+
16
+ running
+
+ ip-10-0-8-25.ec2.internal
+
+
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 0
+
+ t1.micro
+ 2018-02-06T09:49:36.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.25
+ true
+
+ -
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-00198c2e466b380ac
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas-test-foreman.ec2.internal
+
+
+ xen
+
+ -
+ eni-88c5a245
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
+ true
+
+
-
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-d82c7915
+ 0
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+ -
+ 10.0.8.25
+ true
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-18ca6cb0
+ 200278856672
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ -
+ i-680071e9
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2017-09-07T14:42:55.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.91.143.248
+ 54.221.202.53
+
+ -
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-b6fa656a
+ attached
+ 2016-01-07T19:58:39.000Z
+ true
+
+
+
+ paravirtual
+ JwNdr1452196715903
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-052a327ea7fccec89
+ 200278856672
+
+
+
-
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-44.ec2.internal
+
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ 0
+
+ t2.micro
+ 2018-03-15T13:27:36.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0a184b5b739d382d8
+ attached
+ 2018-03-15T13:27:37.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-22e6878f
+ 0
+ attached
+ 2018-03-15T13:27:36.000Z
+ true
+
+
+ -
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0cca17241eb40667c
+ 200278856672
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
+
+ -
+ i-03769bc6ccaba947a
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T13:39:05.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.231.214.59
+ 54.196.64.159
+
+ -
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0eb026a02c6666ea0
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-09dd2a3970815aaee
+ 200278856672
+
+
+
-
+ i-066465f361331dfa6
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-108.ec2.internal
+
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
+
+ t2.micro
+ 2018-05-25T15:39:08.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.108
+ true
+
+ -
+ sg-08314440
+ launch-wizard-38
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0875db6c16a8e9335
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ xen
+
+ -
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
+ true
+
+
-
+ sg-08314440
+ launch-wizard-38
+
+
+
+ eni-attach-b64f3e14
+ 0
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+ -
+ 10.0.8.108
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+ -
+ i-0c37a7d012922752e
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-189.ec2.internal
+
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
+ 0
+
+ t2.micro
+ 2018-05-25T15:39:09.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.189
+ true
+
+ -
+ sg-08314440
+ launch-wizard-38
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-06bc83fa0e7bd77c4
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ xen
+
+ -
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:34:2d:df:09:f4
+ 10.0.8.189
+ true
+
+
-
+ sg-08314440
+ launch-wizard-38
+
+
+
+ eni-attach-494c3deb
+ 0
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+ -
+ 10.0.8.189
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0b0ebf36d34acdaa6
+ 200278856672
+
+
+
-
+ i-0a67c549558c9c392
+ ami-26ebbc5c
+
+
80
+ stopped
+
+ ip-10-0-1-165.ec2.internal
+
+ User initiated (2018-07-09 19:41:17 GMT)
+ 0
+
+ t2.micro
+ 2018-04-24T18:47:14.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
+ true
+
+ -
+ sg-b00affc6
+ launch-wizard-23
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0b80eb1a867cd27f8
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
+
+
+ xen
+
+ -
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
+ true
+
+
-
+ sg-b00affc6
+ launch-wizard-23
+
+
+
+ eni-attach-87883f81
+ 0
+ attached
+ 2018-02-28T16:08:24.000Z
+ true
+
+
+ -
+ 10.0.1.165
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0b5184e8fed7c403a
+ 200278856672
+
+
+
-
+ i-02007c8f386e74470
+ ami-55ef662f
+
+
16
+ running
+
+ ip-10-0-1-179.ec2.internal
+
+
+ bronaghkeypair1213
+ 0
+
+ t2.micro
+ 2017-12-13T15:04:34.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
+ true
+
+ -
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-07be95279f27e791f
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ bronagh1213
+
+ -
+ AWS_Tier
+ Gold
+
+
+ xen
+
+ -
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
+ true
+
+
-
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+ eni-attach-e6616b3e
+ 0
+ attached
+ 2017-12-13T15:04:34.000Z
+ true
+
+
+ -
+ 10.0.1.179
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0dee19ffc1a9d96c4
+ 200278856672
+
+
+
-
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-213.ec2.internal
+
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0
+
+ t2.micro
+ 2018-04-17T08:15:14.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.213
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-070d695244916edf4
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-fbede525
+ 0
+ attached
+ 2018-02-26T18:31:27.000Z
+ true
+
+
+ -
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-08722bad9d42340ba
+ 200278856672
+
+
+
-
+ i-0639022117944a668
+ ami-63ac180a
+
+
16
+ running
+
+ ip-10-0-0-98.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-03-15T13:28:47.000Z
+
+ us-east-1e
+
+ default
+
+ aki-36ed075f
+
+ enabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.98
+ 54.172.168.193
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ i386
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0b2d1d3b42eb03555
+ attached
+ 2018-03-15T13:28:48.000Z
+ true
+
+
+
+ paravirtual
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
+
+ -
+ aws:autoscaling:groupName
+ default-scaling-group
+
+
+ xen
+
+ -
+ eni-17e6c4d8
+ subnet-f849ff96
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-5225809d
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+
+
+ -
+ 10.0.0.98
+ true
+
+ 54.172.168.193
+
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0098192b5619646aa
+ 200278856672
+
+
+
-
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
+
+
80
+ stopped
+
+ ip-172-30-3-177.ec2.internal
+
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
+ 0
+
+ t2.micro
+ 2018-03-15T07:09:23.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ 172.30.3.177
+ true
+
+ -
+ sg-a86bf7de
+ stomsa
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-00991e8e4231720cb
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ stomsa
+
+
+ xen
+
+ -
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
-
+ sg-a86bf7de
+ stomsa
+
+
+
+ eni-attach-2bb4992d
+ 0
+ attached
+ 2018-03-12T13:48:51.000Z
+ true
+
+
+ -
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-094143b846043daef
+ 200278856672
+
+
+
-
+ i-0b2631823a0fdfc76
+ ami-5769193e
+
+
16
+ running
+
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
+
+ 0
+
+ t1.micro
+ 2018-07-25T10:56:16.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ subnet-56f55f20
+ vpc-aee2a6ca
+ 172.30.1.91
+ 18.209.8.70
+ true
+
+ -
+ sg-a493cddd
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d62d6706c88af498
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+
+
+ paravirtual
+
+ xen
+
+ -
+ eni-b20dbfd5
+ subnet-56f55f20
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
+ true
+
+
-
+ sg-a493cddd
+ default
+
+
+
+ eni-attach-d57a046c
+ 0
+ attached
+ 2018-07-25T10:56:16.000Z
+ true
+
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
+ true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-e08e325e
+ 200278856672
+
+
+
-
+ i-c72af2f6
+ ami-2051294a
+
+
16
+ running
+
+ ip-10-0-0-122.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.micro
+ 2017-09-26T07:43:04.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.122
+ 54.208.71.4
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-da190f08
+ attached
+ 2016-08-30T07:17:59.000Z
+ true
+
+
+ -
+ /dev/sdf
+
+ vol-0acad09812d803c09
+ attached
+ 2017-03-17T07:25:12.000Z
+ false
+
+
+
+ hvm
+ BWJjo1472541478233
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC1
+
+ -
+ owner
+ UNKNOWN
+
+
+ xen
+
+ -
+ eni-2b986f38
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-455ec9ed
+ 0
+ attached
+ 2016-08-30T07:17:58.000Z
+ true
+
+
+ 54.208.71.4
+
+ amazon
+
+
+ -
+ 10.0.0.122
+ true
+
+ 54.208.71.4
+
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0afdcc8251cc93fd7
+ 200278856672
+
+
-
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
+
+ -
+ i-0aa433595b855eeeb
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-03-01T21:31:04.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.185.167.107
+ 54.161.0.45
+
+ -
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-007e8c0663020ed1c
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+
+
+ paravirtual
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
+
+ -
+ EmsRefreshSpecResourceGroupTag
+ EmsRefreshSpecResourceGroupTagValue
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0bd40467050d37fd3
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0235e2c2b4fcabeab
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
+ 0
+
+ m3.medium
+ 2018-03-14T21:43:12.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.180.71.172
+ 54.87.20.125
+
+ -
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-07667df1666e2060a
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+
+ paravirtual
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d025657762e468f5
+ 200278856672
+
+
+
-
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
+
+
80
+ stopped
+
+ ip-10-0-1-19.ec2.internal
+
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
+ 0
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ t2.micro
+ 2018-03-06T05:28:40.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
+ true
+
+ -
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-09a10c5f98f2dd67c
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
+
+
+
+ hvm
+ 152031409666653601
+
+ -
+ Name
+ james
+
+
+ xen
+
+ -
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
+ true
+
+
-
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+
+
+
+ eni-attach-3a325e3c
+ 0
+ attached
+ 2018-03-06T05:28:40.000Z
+ true
+
+
+ -
+ 10.0.1.19
+ true
+
+
+
+
+
+ false
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d3845bde588bc6ff
+ 200278856672
+
+
-
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+
+ -
+ i-0e48bff566d8742b3
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-41-232-222.ec2.internal
+ ec2-54-225-48-100.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:02.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.41.232.222
+ 54.225.48.100
+
+ -
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-044ae2b3615b12913
+ attached
+ 2018-09-04T12:12:03.000Z
+ true
+
+
+
+ paravirtual
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:09 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=lb-test3&Version=2012-06-01
+ string: Action=DescribeAddresses&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080820Z
+ - 20180904T145909Z
X-Amz-Content-Sha256:
- - 9144f43e765264b7f9114214122e0e09f0a9bcd98921a1171dc71fef0ed7b152
+ - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1ad4fb5bac2bc3d8e85a558c29eed6cc2c20d7ea1b3f67ef9eab42c242788e65
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4375268ae64424f15b09aa0905fc2482fffb6bb22726f3fbf29553a24cb5319b
Content-Length:
- - '74'
+ - '43'
Accept:
- "*/*"
response:
@@ -17420,49 +27735,109 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - d91551c8-a291-11e7-82bb-d138a34b6c68
Content-Type:
- - text/xml
- Content-Length:
- - '329'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:14 GMT
+ - Tue, 04 Sep 2018 14:59:09 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
-
- d91551c8-a291-11e7-82bb-d138a34b6c68
-
-
+ string: |-
+
+
+ fc46c9ae-8890-445b-83b4-cfb99618b9b8
+
+ -
+ 23.23.198.134
+ standard
+
+
+ -
+ 23.23.209.146
+ standard
+
+
+ -
+ 54.221.202.53
+ standard
+ i-680071e9
+
+ -
+ 54.221.202.64
+ standard
+
+
+ -
+ 54.235.113.32
+ standard
+
+
+ -
+ 34.202.178.10
+ eipalloc-9a4472ab
+ vpc
+ i-0bca58e6e540ddc39
+ eipassoc-13766e23
+ eni-8fefae9b
+ 200278856672
+ 10.2.0.239
+
+ -
+ 34.228.91.176
+ eipalloc-135bd126
+ vpc
+
+ -
+ 52.70.78.137
+ eipalloc-3d8a720f
+ vpc
+
+ -
+ 54.208.119.197
+ eipalloc-ce53d7a0
+ vpc
+ i-8b5739f2
+ eipassoc-cc6e58f1
+ eni-ad25f7cc
+ 200278856672
+ 10.0.0.254
+
+ -
+ 54.208.121.144
+ eipalloc-8d53d7e3
+ vpc
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:21 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:09 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-ElasticL-UPI0RRUFR3HI&Version=2012-06-01
+ string: Action=DescribeVolumes&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080821Z
+ - 20180904T145912Z
X-Amz-Content-Sha256:
- - 248667537d6bbfc04b0fa73fa9f33377cbe117e97d89da18d184861389227dbc
+ - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=338d4d57754b5a705190f29cad8a4bcf2e825b10d13fa980de0d96be25dfc653
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3428dfd4c38916859689d05159dc27fd35aed8ecabc331f8fd2b32034c0b898b
Content-Length:
- - '97'
+ - '41'
Accept:
- "*/*"
response:
@@ -17470,56 +27845,2446 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - d98ca4b0-a291-11e7-b7e7-47af35eb53a7
Content-Type:
- - text/xml
- Content-Length:
- - '543'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:15 GMT
+ - Tue, 04 Sep 2018 14:59:13 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
- N/A
- i-025623c4c4e4f84a0
- InService
- N/A
-
-
-
-
- d98ca4b0-a291-11e7-b7e7-47af35eb53a7
-
-
+ string: |-
+
+
+ 08b07d45-7877-4780-8ffc-44d70c585baf
+
+ -
+ vol-834804c4
+ 50
+
+ us-east-1d
+ available
+ 2015-04-21T13:54:22.140Z
+
+
+
-
+ Name
+ cfme-raw-vmdb
+
+
+ gp2
+ 150
+ false
+
+ -
+ vol-d40b2c93
+ 30
+
+ us-east-1d
+ available
+ 2015-04-28T12:21:59.090Z
+
+
+
-
+ Name
+ cfme2-raw-vmdb
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-68af0c92
+ 40
+
+ us-east-1d
+ available
+ 2015-09-29T21:36:13.514Z
+
+
+
-
+ Name
+ cfme55
+
+
+ standard
+ false
+
+ -
+ vol-ee3a9614
+ 50
+
+ us-east-1d
+ available
+ 2015-09-30T15:57:16.028Z
+
+
+
-
+ Name
+ cfme55vmdb
+
+
+ gp2
+ 150
+ false
+
+ -
+ vol-0d3587406018a8205
+ 10
+ snap-0822784885cd20aff
+ us-east-1d
+ in-use
+ 2017-12-13T14:43:34.969Z
+
+
-
+ vol-0d3587406018a8205
+ i-0510954911e45949b
+ /dev/sda1
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
+
+
+
+ -
+ name
+ bronagh
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07be95279f27e791f
+ 8
+ snap-055cf1cfc1dda99fe
+ us-east-1d
+ in-use
+ 2017-12-13T15:04:35.520Z
+
+
-
+ vol-07be95279f27e791f
+ i-02007c8f386e74470
+ /dev/xvda
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
+
+ -
+ Name
+ bronagh1213
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0b80eb1a867cd27f8
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-02-28T16:08:25.573Z
+
+
-
+ vol-0b80eb1a867cd27f8
+ i-0a67c549558c9c392
+ /dev/sda1
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-007e8c0663020ed1c
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-03-01T21:31:05.573Z
+
+
-
+ vol-007e8c0663020ed1c
+ i-0aa433595b855eeeb
+ /dev/sda1
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-09a10c5f98f2dd67c
+ 8
+ snap-0061a4a372352a41e
+ us-east-1d
+ in-use
+ 2018-03-06T05:28:40.473Z
+
+
-
+ vol-09a10c5f98f2dd67c
+ i-0a7aebaf459f1f9e7
+ /dev/sda1
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-00991e8e4231720cb
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-03-12T13:48:52.246Z
+
+
-
+ vol-00991e8e4231720cb
+ i-0d0cbf4c0a5e4f8fc
+ /dev/sda1
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0eb5ddcf735f22184
+ 10
+ snap-02196f4f8507c9598
+ us-east-1d
+ in-use
+ 2018-04-26T10:03:06.847Z
+
+
-
+ vol-0eb5ddcf735f22184
+ i-05d2313e6b9a42b16
+ /dev/sda1
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-044ae2b3615b12913
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T12:12:03.127Z
+
+
-
+ vol-044ae2b3615b12913
+ i-0e48bff566d8742b3
+ /dev/sda1
+ attached
+ 2018-09-04T12:12:03.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0eb026a02c6666ea0
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T13:39:05.557Z
+
+
-
+ vol-0eb026a02c6666ea0
+ i-03769bc6ccaba947a
+ /dev/sda1
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0ba19a687115bc9bc
+ 1
+
+ us-east-1f
+ available
+ 2017-12-01T14:23:28.862Z
+
+
+
-
+ Name
+
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07667df1666e2060a
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-03-14T21:43:12.985Z
+
+
-
+ vol-07667df1666e2060a
+ i-0235e2c2b4fcabeab
+ /dev/sda1
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0e7609b478fe9ca91
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-04-05T10:08:23.032Z
+
+
-
+ vol-0e7609b478fe9ca91
+ i-0297a2b1075b3a2c6
+ /dev/sda1
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0d62d6706c88af498
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-07-25T10:56:16.973Z
+
+
-
+ vol-0d62d6706c88af498
+ i-0b2631823a0fdfc76
+ /dev/sda1
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0d8fcf26bf27ab650
+ 1
+
+ us-east-1a
+ available
+ 2017-01-27T15:36:00.023Z
+
+
+
-
+ Name
+ ladas_volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e6f4b53711466c8b
+ 1
+
+ us-east-1a
+ available
+ 2017-05-22T13:13:04.847Z
+
+
+
-
+ Name
+ test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0395fe9f0370fabdf
+ 3
+
+ us-east-1a
+ available
+ 2017-06-22T20:36:16.182Z
+
+
+
-
+ Name
+ dberger-test
+
+ -
+ Owner
+ Dan
+
+ -
+ Joe
+ Smith
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0a53d5f020485f470
+ 2
+
+ us-east-1a
+ available
+ 2017-06-30T16:27:26.909Z
+
+
+
-
+ Name
+ bronagh-volume-test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0acc4b093d87d2ecd
+ 1
+
+ us-east-1a
+ available
+ 2017-06-30T17:19:21.552Z
+
+
+
-
+ foo
+ bar
+
+ -
+ Name
+ dberger-test2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06c6dccf34b2a6c72
+ 1
+
+ us-east-1a
+ available
+ 2017-07-27T13:06:30.936Z
+
+
+
-
+ Name
+ ladas_delete_me_soon
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0c30961b3fd9686ba
+ 30
+ snap-ee7facf8
+ us-east-1a
+ available
+ 2017-10-10T20:35:12.867Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0ada13b443b5956c9
+ 7
+ snap-5ab0eb13
+ us-east-1a
+ available
+ 2017-10-26T19:36:58.511Z
+
+ standard
+ false
+
+ -
+ vol-0825f4636ce0d50c6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-26T20:33:13.973Z
+
+ standard
+ false
+
+ -
+ vol-0a4b814e71aa2f08f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T03:36:43.041Z
+
+ standard
+ false
+
+ -
+ vol-02806f4d20f3fc589
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T15:42:06.392Z
+
+ standard
+ false
+
+ -
+ vol-0541f73328859481d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:25:36.629Z
+
+ standard
+ false
+
+ -
+ vol-0492602d2209b004c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:47:46.434Z
+
+ standard
+ false
+
+ -
+ vol-0383713f5f8e9be6c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:17:39.566Z
+
+ standard
+ false
+
+ -
+ vol-0d09b14c9691b6132
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:45:58.188Z
+
+ standard
+ false
+
+ -
+ vol-073e00661f83e778e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T02:18:33.300Z
+
+ standard
+ false
+
+ -
+ vol-0fa0bf31000e6af8e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T21:00:39.451Z
+
+ standard
+ false
+
+ -
+ vol-00b35c4bcdacdf50e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-08T21:08:54.275Z
+
+ standard
+ false
+
+ -
+ vol-0635c4be77a59e8c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-27T19:14:59.505Z
+
+ standard
+ false
+
+ -
+ vol-08048f081712cdc55
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T19:53:15.507Z
+
+
+
-
+ Name
+ hsong-test_volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d923fe770ed2486c
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T21:24:26.112Z
+
+
+
-
+ Name
+ hsong-test-again
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-09fb101747e4d82e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:54:56.366Z
+
+ standard
+ false
+
+ -
+ vol-090b6b64757ee0ab5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:57:09.931Z
+
+ standard
+ false
+
+ -
+ vol-043b675604bfd5b9d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:58:47.700Z
+
+ standard
+ false
+
+ -
+ vol-039bb19d656241cf6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:01:36.106Z
+
+ standard
+ false
+
+ -
+ vol-0121b629c98897491
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:03:15.107Z
+
+ standard
+ false
+
+ -
+ vol-0e33a13f6eb3c1b36
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:10:28.797Z
+
+ standard
+ false
+
+ -
+ vol-05d1be7deaae362cf
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:12:02.490Z
+
+ standard
+ false
+
+ -
+ vol-0a816acb234f64a78
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:13:39.472Z
+
+ standard
+ false
+
+ -
+ vol-0c37e69f9d3fac3c5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:15:20.103Z
+
+ standard
+ false
+
+ -
+ vol-029b208a26b33dd91
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:17:22.608Z
+
+ standard
+ false
+
+ -
+ vol-0a37c9cc3de01630b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:18:59.845Z
+
+ standard
+ false
+
+ -
+ vol-0f3df9946b6fb0a68
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:20:42.067Z
+
+ standard
+ false
+
+ -
+ vol-0d3f5d40fd2cf1e21
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:22:52.734Z
+
+ standard
+ false
+
+ -
+ vol-09b9c89c88ba4e3f7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:25:02.249Z
+
+ standard
+ false
+
+ -
+ vol-091ef233d144e3a17
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:26:41.836Z
+
+ standard
+ false
+
+ -
+ vol-0efcc35ea44fcecaa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:28:23.988Z
+
+ standard
+ false
+
+ -
+ vol-06b692e14c3c37f3a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:30:01.994Z
+
+ standard
+ false
+
+ -
+ vol-0b88365a642da2f29
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:32:22.859Z
+
+ standard
+ false
+
+ -
+ vol-0d5426adc427d73c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:34:27.210Z
+
+ standard
+ false
+
+ -
+ vol-0e24a7be2ffb508e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:36:09.046Z
+
+ standard
+ false
+
+ -
+ vol-098a1ea9cad67dbda
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:37:48.770Z
+
+ standard
+ false
+
+ -
+ vol-0d359e258ee956241
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:39:23.622Z
+
+ standard
+ false
+
+ -
+ vol-00d6116a2ff86c5c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:41:02.339Z
+
+ standard
+ false
+
+ -
+ vol-03d8805971f766c18
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:42:40.583Z
+
+ standard
+ false
+
+ -
+ vol-0b2e399696e2c0695
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:44:20.845Z
+
+ standard
+ false
+
+ -
+ vol-0418d857c44096bc4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:46:02.577Z
+
+ standard
+ false
+
+ -
+ vol-0840c53c9077e23e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T16:45:07.967Z
+
+ standard
+ false
+
+ -
+ vol-01cf4586194fa1d7a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T18:21:57.922Z
+
+ standard
+ false
+
+ -
+ vol-0dbdd7e27a94c2ddc
+ 4
+
+ us-east-1a
+ available
+ 2018-01-05T16:01:52.727Z
+
+
+
-
+ Name
+ hsong-0105
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0cc8d9f54237b1fb5
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:00:30.795Z
+
+
+
-
+ Name
+ hsong-1010
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-02b314874ffa07e3f
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:04:41.425Z
+
+
+
-
+ Name
+ hsong-1010-1
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-09e31fed84773d1e1
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:18:25.321Z
+
+
+
-
+ Name
+ hsong-1010-2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0212b7567bd16ab47
+ 4
+
+ us-east-1a
+ available
+ 2018-01-19T15:45:33.725Z
+
+
+
-
+ Name
+ xxl01
+
+
+ io1
+ 100
+ false
+
+ -
+ vol-03433068816328de4
+ 8
+
+ us-east-1a
+ available
+ 2018-01-22T15:04:31.163Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0566cd9481a29ca23
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-25T22:19:12.182Z
+
+ standard
+ false
+
+ -
+ vol-0c37b1a65e4f12968
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T20:46:09.789Z
+
+ standard
+ false
+
+ -
+ vol-025a3a234eeb31bc1
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:20:14.285Z
+
+ standard
+ false
+
+ -
+ vol-08afd3e598e5ba143
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:45:52.228Z
+
+ standard
+ false
+
+ -
+ vol-0653d1716dc49592b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:55:04.729Z
+
+ standard
+ false
+
+ -
+ vol-0917151960a77d439
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:13:45.861Z
+
+ standard
+ false
+
+ -
+ vol-0c68b01f4f260ee9c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:36:01.529Z
+
+ standard
+ false
+
+ -
+ vol-09801be5b750adc80
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:54:00.132Z
+
+ standard
+ false
+
+ -
+ vol-06806fc2f7d8b9119
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:34:00.998Z
+
+ standard
+ false
+
+ -
+ vol-072d8c0b33be81fe3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:50:53.129Z
+
+ standard
+ false
+
+ -
+ vol-02bf1f30ac38448e5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T14:07:08.909Z
+
+ standard
+ false
+
+ -
+ vol-0c84050c0e1b8b490
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:31:26.026Z
+
+ standard
+ false
+
+ -
+ vol-0dc4f98dac26b2378
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:49:57.483Z
+
+ standard
+ false
+
+ -
+ vol-0013e5ea3ee8d3beb
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:52:47.247Z
+
+ standard
+ false
+
+ -
+ vol-0358d9f4d3df869e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:06:15.454Z
+
+ standard
+ false
+
+ -
+ vol-03af96a7737e48aa3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:54:50.517Z
+
+ standard
+ false
+
+ -
+ vol-0e7878f03823f5399
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:36:16.140Z
+
+ standard
+ false
+
+ -
+ vol-011d0be8098d309ba
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:57:30.964Z
+
+ standard
+ false
+
+ -
+ vol-0ea9010df702fb698
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T18:24:22.381Z
+
+ standard
+ false
+
+ -
+ vol-0f7e01cd0c93de24d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T22:22:10.028Z
+
+ standard
+ false
+
+ -
+ vol-08efe048b975d586b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-31T01:26:41.851Z
+
+ standard
+ false
+
+ -
+ vol-0458322629d9caf55
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:20.477Z
+
+ standard
+ false
+
+ -
+ vol-0c4e2a7cbcfc11ee9
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:30.452Z
+
+ standard
+ false
+
+ -
+ vol-09f96563900ec5161
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:54:30.147Z
+
+ standard
+ false
+
+ -
+ vol-0c7dd7b270ca0edc5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T21:33:58.993Z
+
+ standard
+ false
+
+ -
+ vol-0a134a3a8b8cd294b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T14:23:56.709Z
+
+ standard
+ false
+
+ -
+ vol-03b363474b53b1556
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:36:31.229Z
+
+ standard
+ false
+
+ -
+ vol-0d700b01f53ba3984
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:44:08.614Z
+
+ standard
+ false
+
+ -
+ vol-02866b764ae673fb0
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T16:02:00.790Z
+
+ standard
+ false
+
+ -
+ vol-07b90d0adcf084f73
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-14T19:02:54.953Z
+
+ standard
+ false
+
+ -
+ vol-00eb40a0c3afd9957
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:08:31.757Z
+
+ standard
+ false
+
+ -
+ vol-076ea0e9b295eb129
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:25:47.490Z
+
+ standard
+ false
+
+ -
+ vol-097a11c8d6afcff70
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:32:27.518Z
+
+ standard
+ false
+
+ -
+ vol-0f4f9aa0a9e6f85af
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:58:39.950Z
+
+ standard
+ false
+
+ -
+ vol-0027ef821d9ae2173
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:17:46.361Z
+
+ standard
+ false
+
+ -
+ vol-030b95ecd4161a88c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:55:30.265Z
+
+ standard
+ false
+
+ -
+ vol-00a2c2b4b6931ed1f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T16:17:11.903Z
+
+ standard
+ false
+
+ -
+ vol-01eabd56e84c13a48
+ 4
+
+ us-east-1a
+ available
+ 2018-02-26T16:49:48.790Z
+
+
+
-
+ Name
+ hui_5_9_us_east
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04428bffbab60ac8f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T16:53:28.906Z
+
+ standard
+ false
+
+ -
+ vol-070d695244916edf4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-02-26T18:31:28.646Z
+
+
-
+ vol-070d695244916edf4
+ i-0fb9010fdcfe4d050
+ /dev/sda1
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-00df6ef3f504dcd0b
+ 4
+
+ us-east-1a
+ available
+ 2018-02-26T19:56:09.856Z
+
+
+
-
+ Name
+ hui_5_9_us_east_2nd
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0472d9ed07f9b1a50
+ 4
+
+ us-east-1a
+ available
+ 2018-02-28T21:06:30.166Z
+
+
+
-
+ Name
+ hui-console-test-us
+
+
+ standard
+ false
+
+ -
+ vol-0a184b5b739d382d8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-03-15T13:27:37.446Z
+
+
-
+ vol-0a184b5b739d382d8
+ i-0015ec0007f4d13a7
+ /dev/sda1
+ attached
+ 2018-03-15T13:27:37.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-0390b378515bffd1c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-04-05T18:29:10.338Z
+
+
-
+ vol-0390b378515bffd1c
+ i-02cc7ad4129cefe1b
+ /dev/sda1
+ attached
+ 2018-04-05T18:29:10.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-0f7377bb13a8c843a
+ 8
+ snap-0b9a379373a50ff29
+ us-east-1a
+ available
+ 2018-04-17T08:17:04.654Z
+
+
+
-
+ Description
+ Smartstate extract volume for image: i-0a7aebaf459f1f9e7
+
+ -
+ Name
+ Smartstate extract volume
+
+
+ standard
+ false
+
+ -
+ vol-0e6fca3077833d8ac
+ 1
+
+ us-east-1a
+ available
+ 2018-04-19T14:57:17.344Z
+
+
+
-
+ Name
+ dberger-test3
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-67606d2d
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2013-09-23T20:11:57.000Z
+
+
-
+ vol-67606d2d
+ i-8b5739f2
+ /dev/sda1
+ attached
+ 2013-09-23T20:11:57.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC-root
+
+
+ standard
+ false
+
+ -
+ vol-b6fa656a
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2016-01-07T19:58:39.495Z
+
+
-
+ vol-b6fa656a
+ i-680071e9
+ /dev/sda1
+ attached
+ 2016-01-07T19:58:39.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3-root
+
+
+ standard
+ false
+
+ -
+ vol-da190f08
+ 10
+ snap-ba40cac8
+ us-east-1e
+ in-use
+ 2016-08-30T07:17:59.338Z
+
+
-
+ vol-da190f08
+ i-c72af2f6
+ /dev/sda1
+ attached
+ 2016-08-30T07:17:59.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC1-root
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0dda5ecf4b2b3dc57
+ 1
+
+ us-east-1e
+ available
+ 2017-01-27T15:58:07.337Z
+
+
+
-
+ Name
+ ladas-volume-3
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d780233c22848be7
+ 1
+ snap-0fb2163b24646b146
+ us-east-1e
+ available
+ 2017-01-27T15:59:20.784Z
+
+
+
-
+ Name
+ ladas-volume-from-snap2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e1613cacf4688009
+ 1
+
+ us-east-1e
+ available
+ 2017-03-17T07:20:08.273Z
+
+
+
-
+ Name
+ EmsRefreshSpecForSnapshot
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e4c86c12b28cead8
+ 1
+ snap-055095f47fab5e749
+ us-east-1e
+ in-use
+ 2017-03-17T07:21:35.798Z
+
+
-
+ vol-0e4c86c12b28cead8
+ i-8b5739f2
+ /dev/sdf
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+
+ -
+ Name
+ EmsRefreshSpecForVpcVm
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0acad09812d803c09
+ 1
+
+ us-east-1e
+ in-use
+ 2017-03-17T07:23:54.211Z
+
+
-
+ vol-0acad09812d803c09
+ i-c72af2f6
+ /dev/sdf
+ attached
+ 2017-03-17T07:25:12.000Z
+ false
+
+
+
+ -
+ Name
+ EmsRefreshSpecForVpc1
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-0f5da4a455ff03c28
+ 2
+
+ us-east-1e
+ available
+ 2017-04-24T16:16:47.488Z
+
+
+
-
+ Name
+ bronaghs-test-volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-01e50a745302d3299
+ 2
+
+ us-east-1e
+ available
+ 2017-06-22T20:38:28.321Z
+
+
+
-
+ name
+ dberger-test2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0f1d1fbc7a35cdbab
+ 2
+
+ us-east-1e
+ available
+ 2017-07-03T14:45:12.273Z
+
+
+
-
+ Name
+ bronagh-ebs-test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-01ff7e549707b8e54
+ 1
+
+ us-east-1e
+ available
+ 2017-09-04T14:45:47.319Z
+
+
+
-
+ Name
+ ladas_test_111_encrypted
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-01f455f7af32c1206
+ 10
+ snap-04b8acc66d50b9a7b
+ us-east-1e
+ available
+ 2017-09-04T15:18:12.952Z
+
+
+
-
+ Name
+ ladas_tesT_111_volume_from_snapshot_that_has_image
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-01d53264cef7468b5
+ 1
+
+ us-east-1e
+ available
+ 2017-09-08T20:44:15.915Z
+
+
+
-
+ name
+ bronagh_sept
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-00198c2e466b380ac
+ 10
+ snap-ba40cac8
+ us-east-1e
+ in-use
+ 2018-02-06T09:49:36.942Z
+
+
-
+ vol-00198c2e466b380ac
+ i-004f3bd30726946d1
+ /dev/sda1
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0b2d1d3b42eb03555
+ 7
+ snap-d23a95a1
+ us-east-1e
+ in-use
+ 2018-03-15T13:28:48.475Z
+
+
-
+ vol-0b2d1d3b42eb03555
+ i-0639022117944a668
+ /dev/sda1
+ attached
+ 2018-03-15T13:28:48.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-06bc83fa0e7bd77c4
+ 16
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-05-24T13:44:27.687Z
+
+
-
+ vol-06bc83fa0e7bd77c4
+ i-0c37a7d012922752e
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0875db6c16a8e9335
+ 16
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-05-24T13:44:27.698Z
+
+
-
+ vol-0875db6c16a8e9335
+ i-066465f361331dfa6
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06e9ef72a99dcc223
+ 8
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-06-06T18:52:17.961Z
+
+
-
+ vol-06e9ef72a99dcc223
+ i-0622ab75f5f2ba752
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-096db62af3cb45d75
+ 8
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-06-06T18:52:17.961Z
+
+
-
+ vol-096db62af3cb45d75
+ i-002ca40492fff0e67
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-076672a9b80ac2e25
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2018-09-03T12:10:36.744Z
+
+
-
+ vol-076672a9b80ac2e25
+ i-0e1752ff841801f65
+ /dev/sda1
+ attached
+ 2018-09-03T12:10:36.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0628a6ce987d4cb6e
+ 8
+ snap-25dd2ac1
+ us-east-1c
+ in-use
+ 2017-05-03T10:47:07.722Z
+
+
-
+ vol-0628a6ce987d4cb6e
+ i-0bca58e6e540ddc39
+ /dev/xvda
+ attached
+ 2017-05-03T10:47:07.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d76e68ae71222b49
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2017-10-20T03:07:59.609Z
+
+
-
+ vol-0d76e68ae71222b49
+ i-0274ada368eb4da36
+ /dev/sda1
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d0c07b33b7dd990
+ 10
+ snap-015df5abbf8e2bd82
+ us-east-1c
+ available
+ 2018-02-01T19:13:07.286Z
+
+
+
-
+ docker 1801_01
+ docker 1801_01
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-080996fdeaee13caf
+ 8
+ snap-25dd2ac1
+ us-east-1c
+ in-use
+ 2018-03-01T21:31:42.122Z
+
+
-
+ vol-080996fdeaee13caf
+ i-0828f09c91ab89a97
+ /dev/xvda
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04030aeb76075632f
+ 40
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-06T16:33:40.840Z
+
+
+
-
+ centos-atomic
+ hsong-centos-atomic
+
+
+ gp2
+ 120
+ false
+
+ -
+ vol-006fabcff33ae5272
+ 40
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2018-03-06T18:29:43.923Z
+
+
-
+ vol-006fabcff33ae5272
+ i-0125949f65c1e5528
+ /dev/sda1
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ -
+ Name
+ hsong-centos
+
+
+ gp2
+ 120
+ false
+
+ -
+ vol-08af70e95c9e06b9b
+ 40
+ snap-1d177976
+ us-east-1c
+ available
+ 2018-03-15T18:57:13.409Z
+
+ standard
+ false
+
+ -
+ vol-0d9e5539117b1d84e
+ 50
+ snap-9dd602d7
+ us-east-1c
+ available
+ 2018-03-15T18:57:13.508Z
+
+ gp2
+ 150
+ false
+
+ -
+ vol-0534ca90d5ec7c1fa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T12:57:15.476Z
+
+ standard
+ false
+
+ -
+ vol-05380a49009bd2bab
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T14:50:05.626Z
+
+ standard
+ false
+
+ -
+ vol-02a2daeffe573eb40
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:57:52.883Z
+
+ standard
+ false
+
+ -
+ vol-00a2450a0d4a75026
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:59:17.653Z
+
+ standard
+ false
+
+ -
+ vol-023585bdecf8787a8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:51:17.945Z
+
+ standard
+ false
+
+ -
+ vol-01501c252c6c17f64
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:14.035Z
+
+ standard
+ false
+
+ -
+ vol-0caa1d7281b4bce32
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:57.679Z
+
+ standard
+ false
+
+ -
+ vol-0780f89f8347bae57
+ 30
+
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.183Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-014a050c648da66fd
+ 40
+ snap-249e4c6c
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.104Z
+
+ gp2
+ 120
+ false
+
+ -
+ vol-0d3b1bfb00463ea5d
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:40:30.740Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0bd04af3b534fdde6
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:46:40.680Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d23aa0121812de9
+ 7
+ snap-5f38cd0e
+ us-east-1c
+ in-use
+ 2018-07-25T11:01:38.351Z
+
+
-
+ vol-04d23aa0121812de9
+ i-09b65a1400b9538ff
+ /dev/sda1
+ attached
+ 2018-07-25T11:01:38.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-01fea15450fb7ba14
+ 8
+ snap-4177dea1
+ us-east-1c
+ in-use
+ 2018-09-04T12:12:32.440Z
+
+
-
+ vol-01fea15450fb7ba14
+ i-08be28f4282ed4ad4
+ /dev/sda1
+ attached
+ 2018-09-04T12:12:32.000Z
+ true
+
+
+ standard
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:22 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:25 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-PublicEl-15YIQXDK2TNOF&Version=2012-06-01
+ string: Action=DescribeSnapshots&Owner.1=self&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080822Z
+ - 20180904T145925Z
X-Amz-Content-Sha256:
- - 088599de17d32def6eb7122147a610a3586edf12376e0646844232b01a1e9058
+ - 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=47189a8d79243d94b155e408420fe577bb0b10624b6c4e449ad3601768229d6e
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2a05b1c0f7d638b6b1b3bcc01716b4e2954ff85e9615217503235960a7606f79
Content-Length:
- - '98'
+ - '56'
Accept:
- "*/*"
response:
@@ -17527,34 +30292,637 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - da13af37-a291-11e7-b7e7-47af35eb53a7
Content-Type:
- - text/xml
- Content-Length:
- - '543'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:16 GMT
+ - Tue, 04 Sep 2018 14:59:26 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
- N/A
- i-0150ac66c83e0eae8
- InService
- N/A
-
-
-
-
- da13af37-a291-11e7-b7e7-47af35eb53a7
-
-
+ string: |-
+
+
+ 335a18f5-b9dc-4a64-b919-78baaf5ccd5e
+
+ -
+ snap-1d177976
+ vol-68af0c92
+ completed
+ 2015-09-30T16:31:07.000Z
+
+ 200278856672
+ 40
+ Created by CreateImage(i-91154731) for ami-3f0e495a from vol-68af0c92
+ false
+
+ -
+ snap-2187b94f
+ vol-68af0c92
+ completed
+ 2015-09-30T15:47:18.000Z
+
+ 200278856672
+ 40
+ cfme55dnd
+ false
+
+
-
+ Name
+ cfme55dnd
+
+
+
+ -
+ snap-8b289bec
+ vol-8c4f69cb
+ completed
+ 2015-04-28T17:26:04.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-85b8b979) for ami-320c005a from vol-8c4f69cb
+ false
+
+ -
+ snap-08810574
+ vol-06700f1376f73abee
+ completed
+ 2017-05-25T18:23:28.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-00ebdb6f40ba522b2) for ami-22470534 from vol-06700f1376f73abee
+ false
+
+ -
+ snap-5210bc21
+ vol-3e52bf45
+ completed
+ 2012-08-21T21:31:58.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-0553707e) for ami-bda014d4 from vol-3e52bf45
+ false
+
+
-
+ Name
+ redhat-6.3-64-AMI-base
+
+
+
+ -
+ snap-d23a95a1
+ vol-22846b59
+ completed
+ 2012-08-21T23:30:35.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-99a183e2) for ami-63ac180a from vol-22846b59
+ false
+
+ -
+ snap-8ec06efd
+ vol-24f51a5f
+ completed
+ 2012-08-22T00:07:26.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-f1634e8a) for ami-edad1984 from vol-24f51a5f
+ false
+
+ -
+ snap-90bc12e3
+ vol-26de315d
+ completed
+ 2012-08-22T00:20:43.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-eb5d7090) for ami-95ad19fc from vol-26de315d
+ false
+
+ -
+ snap-968927e5
+ vol-32d13e49
+ completed
+ 2012-08-22T00:31:58.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-7b2f0200) for ami-3bae1a52 from vol-32d13e49
+ false
+
+ -
+ snap-6eee471d
+ vol-1421ce6f
+ completed
+ 2012-08-22T01:43:11.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-b13a17ca) for ami-25a81c4c from vol-1421ce6f
+ false
+
+ -
+ snap-baf35ac9
+ vol-84719eff
+ completed
+ 2012-08-22T01:57:13.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0bbe9370) for ami-f3a81c9a from vol-84719eff
+ false
+
+ -
+ snap-d03941a3
+ vol-eb25f490
+ completed
+ 2012-08-27T19:14:40.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-888366f2) for ami-67bc0b0e from vol-eb25f490
+ false
+
+ -
+ snap-5ab0eb13
+ vol-06e3f7fe
+ completed
+ 2015-08-24T15:37:26.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-90fdc16f) for ami-57318e3c from vol-06e3f7fe
+ false
+
+ -
+ snap-249e4c6c
+ vol-68af0c92
+ completed
+ 2015-10-01T15:35:55.000Z
+
+ 200278856672
+ 40
+ Created by CreateImage(i-91154731) for ami-a7185ec2 from vol-68af0c92
+ false
+
+ -
+ snap-9dd602d7
+ vol-ee3a9614
+ completed
+ 2015-09-30T16:31:08.000Z
+
+ 200278856672
+ 50
+ Created by CreateImage(i-91154731) for ami-3f0e495a from vol-ee3a9614
+ false
+
+ -
+ snap-5f38cd0e
+ vol-ad4fa2f7
+ completed
+ 2013-06-22T02:29:08.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-1c237c77) for ami-5769193e from vol-ad4fa2f7
+ false
+
+ -
+ snap-6054c98a
+ vol-ffffffff
+ completed
+ 2017-01-13T11:31:33.000Z
+
+ 200278856672
+ 7
+ Copied for DestinationAmi ami-7c4aa86a from SourceAmi ami-bda014d4 for SourceSnapshot snap-5210bc21. Task created on 1,484,307,087,854.
+ false
+
+ -
+ snap-eafde662
+ vol-0fdc4b8ad070c46e5
+ completed
+ 2017-02-16T15:24:10.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-065dac88ae4c48202) for ami-204c8436 from vol-0fdc4b8ad070c46e5
+ false
+
+ -
+ snap-0fb2163b24646b146
+ vol-0d8fcf26bf27ab650
+ completed
+ 2017-01-27T15:51:33.000Z
+
+ 200278856672
+ 1
+
+ false
+
+
-
+ Name
+ ladas_volume_snap_show
+
+
+
+ -
+ snap-0dff7febfe74867d0
+ vol-0b517fa1
+ completed
+ 2017-02-08T22:21:55.000Z
+
+ 200278856672
+ 40
+ Testing Snapshot Locations
+ false
+
+
-
+ Name
+ test-snap-01
+
+
+
+ -
+ snap-09505262c29651f47
+ vol-00306cda05dec2db5
+ completed
+ 2017-09-06T15:25:23.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-099e794cfa830e9be) for ami-bbc9dac0 from vol-00306cda05dec2db5
+ false
+
+ -
+ snap-04b8acc66d50b9a7b
+ vol-01ff7e549707b8e54
+ completed
+ 2017-09-04T15:01:01.000Z
+
+ 200278856672
+ 1
+
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+
-
+ Name
+ ladas_test_111_snapshot
+
+
+
+ -
+ snap-03d5e23022317b3a5
+ vol-0bae2310332a3a1b5
+ completed
+ 2017-09-04T14:41:23.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ ladas_test_111_1
+
+
+
+ -
+ snap-03e398e6e95827703
+ vol-ffffffff
+ completed
+ 2018-08-31T14:29:15.000Z
+
+ 200278856672
+ 67
+ Created by AWS-VMImport service for import-ami-09bf69373591f57dc
+ false
+
+ -
+ snap-07e530b95d909f36d
+ vol-07be95279f27e791f
+ completed
+ 2018-08-27T21:46:31.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-02007c8f386e74470) for ami-0908219546812fe3e from vol-07be95279f27e791f
+ false
+
+ -
+ snap-0b9a379373a50ff29
+ vol-09a10c5f98f2dd67c
+ completed
+ 2018-04-17T08:16:19.000Z
+
+ 200278856672
+ 8
+ Smartstate extract snapshot for instance: i-0a7aebaf459f1f9e7
+ false
+
+
-
+ Name
+ Smartstate extract snapshot
+
+
+
+ -
+ snap-02094089d5ab75ded
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T20:40:13.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-05a7d88d5b5dec9e7
+ vol-0825f4636ce0d50c6
+ completed
+ 2018-03-29T20:15:18.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ test
+
+
+
+ -
+ snap-075f99be2814607c5
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T14:20:53.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-854a3bff from vol-00bda21753cf68784
+ false
+
+ -
+ snap-090b10966b3b3d0bf
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T01:48:39.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-db582ea1 from vol-00bda21753cf68784
+ false
+
+ -
+ snap-07ef84850550046dd
+ vol-08048f081712cdc55
+ completed
+ 2017-12-13T20:01:22.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-snapshot-test
+
+
+
+ -
+ snap-0b1bfdb21caec2dcd
+ vol-ffffffff
+ completed
+ 2017-11-16T12:22:01.000Z
+
+ 200278856672
+ 10
+ [Copied snap-03d5e23022317b3a5 from us-east-1]
+ false
+
+ -
+ snap-02349dbbbf755f6af
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c58ddded84a9e8ba
+ vol-67606d2d
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-67606d2d
+ false
+
+ -
+ snap-034acb0cf077bc06c
+ vol-0a53d5f020485f470
+ completed
+ 2017-07-03T15:39:49.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ snapshot-bronagh-volume-test
+
+
+
+ -
+ snap-0cbf55eb6acc05486
+ vol-0395fe9f0370fabdf
+ completed
+ 2017-06-30T16:01:21.000Z
+
+ 200278856672
+ 3
+ Testing snapshot event
+ false
+
+
-
+ Name
+ dberger-test-snapshot
+
+
+
+ -
+ snap-0a5070b29f3ddcd92
+ vol-ffffffff
+ completed
+ 2017-05-18T14:44:04.000Z
+
+ 200278856672
+ 10
+ Copied for DestinationAmi ami-5e86fe48 from SourceAmi ami-464a2c26 for SourceSnapshot snap-0d6ff47e657599428. Task created on 1,495,118,641,744.
+ false
+
+ -
+ snap-05ef19f30ffe6ceaa
+ vol-ffffffff
+ completed
+ 2017-05-18T14:22:14.000Z
+
+ 200278856672
+ 10
+ Copied for DestinationAmi ami-7d85fd6b from SourceAmi ami-224c2a42 for SourceSnapshot snap-087bd8461c5cd52a0. Task created on 1,495,117,314,923.
+ false
+
+ -
+ snap-0001b68fed820fb79
+ vol-67606d2d
+ completed
+ 2017-04-26T15:30:37.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-67606d2d
+ false
+
+ -
+ snap-0f1eb18bc955eb28a
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-04-26T15:30:37.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c78ca2afaa671102
+ vol-0acad09812d803c09
+ completed
+ 2017-03-17T07:24:40.000Z
+
+ 200278856672
+ 1
+ EmsRefreshSpecSnapshotOfVpc1Desc
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+
-
+ Name
+ EmsRefreshSpecSnapshotOfVpc1
+
+
+
+ -
+ snap-055095f47fab5e749
+ vol-0e1613cacf4688009
+ completed
+ 2017-03-17T07:21:12.000Z
+
+ 200278856672
+ 1
+ EmsRefreshSpecSnapshotDesc
+ false
+
+
-
+ Name
+ EmsRefreshSpecSnapshot
+
+
+
+ -
+ snap-0400b13c0acfdffa9
+ vol-0b80eb1a867cd27f8
+ completed
+ 2018-07-17T15:29:53.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0a67c549558c9c392) for ami-cf96afb0 from vol-0b80eb1a867cd27f8
+ false
+
+ -
+ snap-08babfa12e1a6b948
+ vol-ffffffff
+ completed
+ 2018-05-02T22:50:21.000Z
+
+ 200278856672
+ 41
+ Created by AWS-VMImport service for import-ami-ffhlve05
+ false
+
+
-
+ Name
+ simaishi
+
+
+
+ -
+ snap-064b688768dd7a1a2
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T23:53:43.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-0c14d3a2d3706ffc4
+ vol-0d923fe770ed2486c
+ completed
+ 2017-12-13T21:26:35.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-test-again-snap
+
+
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:22 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:27 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -17567,14 +30935,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080822Z
+ - 20180904T145928Z
X-Amz-Content-Sha256:
- 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9c70da0ca41b00fd4484c1c9e198ffaafb2ad7d45e7e282283bdd9cab695daa2
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d5ad512951e311c4f6a5ec1fe9e8e0cb4fc6d0ef56e0a62c68f0db03067078b7
Content-Length:
- '43'
Accept:
@@ -17591,7 +30959,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:17 GMT
+ - Tue, 04 Sep 2018 14:59:27 GMT
Server:
- AmazonEC2
body:
@@ -17599,142 +30967,177 @@ http_interactions:
string: |-
- f5ac49a5-b070-4dd7-900f-33b04e70f037
+ 87c24d3a-7b36-4526-9294-3e5f3b4f3362
-
- r-06329810cfd223fe6
+ r-0dece58a7cd92b3d1
200278856672
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
+ i-0828f09c91ab89a97
+ ami-6869aa05
16
running
- ip-10-0-1-85.ec2.internal
-
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
- MIQ_SSA
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-08-29T19:14:36.000Z
+ t2.nano
+ 2018-03-01T21:31:41.000Z
- us-east-1e
+ us-east-1c
default
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
true
-
- sg-38511448
- launch-wizard-47
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-000f77902b1a16428
+ vol-080996fdeaee13caf
attached
- 2017-08-29T19:14:36.000Z
+ 2018-03-01T21:31:42.000Z
true
hvm
- ptDPo1504034075390
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
-
- hsong-ssa
-
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
xen
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
200278856672
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
-
- sg-38511448
- launch-wizard-47
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
- eni-attach-075e6227
+ eni-attach-f41e8d30
0
attached
- 2017-08-29T19:14:36.000Z
+ 2018-03-01T21:31:41.000Z
true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
-
- 10.0.1.85
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
false
+ true
+
+ 1
+ 1
+
+ 226008221399
-
- r-003249dcbdd91448e
+ r-0d9d5788168db3796
200278856672
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
80
stopped
- ip-10-0-1-87.ec2.internal
+ ip-172-30-0-32.ec2.internal
- User initiated (2017-06-07 16:32:25 GMT)
- EmsRefreshSpec-KeyPair
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
0
- t2.nano
- 2017-05-22T20:35:56.000Z
+ t2.micro
+ 2018-04-05T18:29:09.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-67541b15
+ smartstate
@@ -17748,18 +31151,9 @@ http_interactions:
-
/dev/sda1
- vol-0385dfce3061ff5a9
- attached
- 2017-05-22T20:35:57.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0ed526ebed417656f
+ vol-0390b378515bffd1c
attached
- 2017-05-22T20:35:57.000Z
+ 2018-04-05T18:29:10.000Z
false
@@ -17769,87 +31163,100 @@ http_interactions:
-
Name
- test_billy_20170522_v2
+ smartstate
xen
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
200278856672
in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-67541b15
+ smartstate
- eni-attach-ff35f0d1
+ eni-attach-39fcca94
0
attached
- 2017-05-22T20:35:56.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.87
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-0e65ce29775f6d8fc
+ r-016047928b31890f5
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0d794150f7fd264c4
- ami-3f0e495a
+ i-0297a2b1075b3a2c6
+ ami-5769193e
80
stopped
- ip-10-2-0-191.ec2.internal
+
- User initiated (2017-06-26 19:23:18 GMT)
+ User initiated
+ EmsRefreshSpec-KeyPair
0
- t2.small
- 2017-06-09T15:00:46.000Z
+ t1.micro
+ 2018-04-05T10:08:22.000Z
- us-east-1c
+ us-east-1b
default
+ aki-1eceaf77
- disabled
+ enabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.191
- true
-
- sg-4cc30d32
+ sg-347f9b5d
default
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
x86_64
ebs
@@ -17858,18 +31265,179 @@ http_interactions:
-
/dev/sda1
- vol-0290849f78dccf167
+ vol-0e7609b478fe9ca91
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2018-04-05T10:08:23.000Z
+ true
+
+ paravirtual
+
+
-
- /dev/sdf
+ Name
+ mslemr
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-228-8-132.ec2.internal
+ ec2-54-237-152-215.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.228.8.132
+ 54.237.152.215
+
+ -
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-01fea15450fb7ba14
+ attached
+ 2018-09-04T12:12:32.000Z
+ true
+
+
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0bc3ae5e3f08c8a44
+ 200278856672
+
+
+
-
+ i-0125949f65c1e5528
+ ami-70e8fd66
+
+
16
+ running
+
+ ip-10-2-0-152.ec2.internal
+
+
+ hsong_centos_atomic
+ 0
+
+ t2.micro
+ 2018-03-06T18:29:43.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.152
+ 52.3.221.140
+ true
+
+ -
+ sg-5c49922a
+ launch-wizard-26
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
- vol-083b1f1e71831ba7e
+ vol-006fabcff33ae5272
attached
- 2017-06-09T15:00:47.000Z
+ 2018-03-06T18:29:43.000Z
false
@@ -17879,84 +31447,101 @@ http_interactions:
-
Name
- test_billy0002
+ hsong-centos
xen
-
- eni-45fef051
+ eni-a50a3f25
subnet-2190b144
vpc-8cf117f5
-
+ Primary network interface
200278856672
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-4cc30d32
- default
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-877ba01f
+ eni-attach-3be67cff
0
attached
- 2017-06-09T15:00:46.000Z
+ 2018-03-06T18:29:43.000Z
true
+
+ 52.3.221.140
+
+ amazon
+
-
- 10.2.0.191
+ 10.2.0.152
true
+
+ 52.3.221.140
+
+ amazon
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
false
+
+ 1
+ 1
+
-
- r-057ea81c4767b9a2a
+ r-072fcf51c1deca398
200278856672
-
- i-02975d4eb8e53bafd
- ami-b63769a1
+ i-0510954911e45949b
+ ami-c998b6b2
16
running
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
+ ip-10-0-1-66.ec2.internal
+
- MIQ_SSA
+ bronaghkeypair
0
t2.micro
- 2017-09-25T18:21:15.000Z
+ 2017-12-13T14:43:34.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a5b994d0
+ launch-wizard-14
x86_64
@@ -17966,9 +31551,9 @@ http_interactions:
-
/dev/sda1
- vol-0f151bad0c041c2db
+ vol-0d3587406018a8205
attached
- 2017-08-10T19:10:06.000Z
+ 2017-12-13T14:43:35.000Z
true
@@ -17978,339 +31563,490 @@ http_interactions:
-
Name
- MIQ_SSA
+ bronagh
xen
-
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-f902c21c
+ eni-attach-0dbdb6d5
0
attached
- 2017-08-10T19:10:05.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 10.0.1.66
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-02b7af2df00a8de50
+ r-066d4d1b049774f63
200278856672
-
- i-0150ac66c83e0eae8
- ami-6869aa05
+ i-0274ada368eb4da36
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
0
- t2.nano
- 2017-05-02T19:39:36.000Z
+ t2.micro
+ 2017-10-30T21:20:33.000Z
us-east-1c
default
- enabled
+ disabled
subnet-de2363bb
vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
+ 10.0.0.91
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-8dff68ff
+ launch-wizard-53
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-02e5c41d12060ab3b
+ vol-0d76e68ae71222b49
attached
- 2017-05-02T19:39:37.000Z
- true
+ 2017-10-20T03:07:59.000Z
+ false
hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
+ sbRkK1508468877905
-
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+ Name
+ ssa-docker
+
+ xen
+
-
- aws:cloudformation:logical-id
- WebServerFleet
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ Primary network interface
+ 200278856672
+ in-use
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
-
+ sg-8dff68ff
+ launch-wizard-53
+
+
+
+ eni-attach-5fcc62c4
+ 0
+ attached
+ 2017-10-20T03:07:58.000Z
+ true
+
+
+ -
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/MIQ_SSA
+ AIPAJB66KPP4NYH7OLI2I
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-1842f370
+ 200278856672
+
+
+
-
+ i-8b5739f2
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-0-0-254.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2017-09-13T16:07:19.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
+ true
+
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+ x86_64
+ ebs
+ /dev/sda1
+
-
- Network
- Public
+ /dev/sda1
+
+ vol-67606d2d
+ attached
+ 2013-09-23T20:11:57.000Z
+ true
+
-
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+
+ paravirtual
+ aPCzL1379967112359
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC
+
+ -
+ owner
+ UNKNOWN
xen
-
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
-
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-3a6592a2
+ eni-attach-05fac66f
0
attached
- 2017-05-02T19:39:36.000Z
+ 2013-09-23T20:11:52.000Z
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.254
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
+ -
+ 10.0.0.208
+
+ false
+
false
- true
+
+ 1
+ 1
+
- 226008221399
-
- r-083cc6d943a6cc2e8
+ r-0c0e56163429b9a46
200278856672
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
+ i-0bca58e6e540ddc39
+ ami-6869aa05
16
running
- ip-10-0-1-78.ec2.internal
+ ip-10-2-0-239.ec2.internal
- bsorota
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-13T14:58:47.000Z
+ t2.nano
+ 2017-05-03T10:47:06.000Z
- us-east-1e
+ us-east-1c
default
- enabled
+ disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-06c7662068fe81b92
+ vol-0628a6ce987d4cb6e
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:07.000Z
true
hvm
- IIQTn1487263246120
+ EmsRe-WebSe-1229KQXQO3HUK
-
- foo
- bar
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
Name
- bronagh-events-test
+ EmsRefreshSpecStack
-
- owner
- bronaghs
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
xen
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
200278856672
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-45f9a86f
+ eni-attach-cbd22453
0
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:06.000Z
true
+
+ 34.202.178.10
+
+ 200278856672
+
-
- 10.0.1.78
+ 10.2.0.239
true
+
+ 34.202.178.10
+
+ 200278856672
+
false
+ true
+
+ 1
+ 1
+
-
- r-063763c7bd0616325
+ r-076deaba20c4af747
200278856672
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
+ i-0e1752ff841801f65
+ ami-5769193e
-
16
- running
+ 80
+ stopped
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
-
- ladas_test
+
+
+ User initiated (2018-09-03 12:12:01 GMT)
+ EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-05T14:04:30.000Z
+ 2018-09-03T12:10:36.000Z
- us-east-1d
+ us-east-1e
default
+ aki-1eceaf77
disabled
- 10.233.77.119
- 54.81.241.87
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -18318,61 +32054,77 @@ http_interactions:
-
/dev/sda1
- vol-02a26016b0b7a9450
+ vol-076672a9b80ac2e25
attached
- 2017-05-05T14:04:33.000Z
+ 2018-09-03T12:10:36.000Z
true
paravirtual
- qWVKg1493993070283
+
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOff
+
+
xen
false
+
+ 1
+ 1
+
-
- r-38bafd9b
+ r-05e4ba632b214dc1e
200278856672
-
- i-fb694e66
- ami-5769193e
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-109.ec2.internal
+ ip-10-0-8-55.ec2.internal
-
- EmsRefreshSpec-KeyPair
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
0
- t1.micro
- 2017-09-06T21:07:48.000Z
+ t2.nano
+ 2018-06-11T07:26:10.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -18380,93 +32132,85 @@ http_interactions:
-
/dev/sda1
- vol-3bc4d1ea
+ vol-06e9ef72a99dcc223
attached
- 2016-05-10T20:56:38.000Z
+ 2018-06-06T18:52:18.000Z
true
- paravirtual
- uBCLe1462913797292
+ hvm
+
-
Name
- VMstate-8
+ ladas_ansible_test_2__1
-
- owner
- UNKNOWN
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
xen
-
- eni-a3902b84
- subnet-f849ff96
+ eni-e404c272
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-12a4c3e2
+ eni-attach-838d7a26
0
attached
- 2016-05-10T20:56:37.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 54.163.162.32
-
- amazon
-
-
- 10.0.0.109
+ 10.0.8.55
true
-
- 54.163.162.32
-
- amazon
-
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-0ce8dea404618f3a5
- 200278856672
-
-
-
- i-03d706b95aa8b12ce
- ami-271e7c31
+ i-002ca40492fff0e67
+ ami-a4dc46db
80
stopped
- ip-10-0-1-229.ec2.internal
+ ip-10-0-8-133.ec2.internal
- User initiated (2017-06-20 17:19:50 GMT)
- james
- 0
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
- t2.medium
- 2017-06-16T20:54:01.000Z
+ t2.nano
+ 2018-06-15T13:08:32.000Z
us-east-1e
@@ -18475,14 +32219,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
@@ -18496,49 +32240,57 @@ http_interactions:
-
/dev/sda1
- vol-096d40746df01e27b
+ vol-096db62af3cb45d75
attached
- 2017-06-16T20:54:01.000Z
- false
+ 2018-06-06T18:52:18.000Z
+ true
hvm
- DpMDq1497646440165
+
+ -
+ TestTag
+ test2__0
+
-
Name
- Ansible Tower Trial Instance
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
xen
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
+
200278856672
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-4735d966
+ eni-attach-828d7a27
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.229
+ 10.0.8.133
true
@@ -18546,50 +32298,55 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-02d2f89dd4a54f2de
+ r-00a2f9d88c2068981
200278856672
-
- i-013f45a83fd938928
- ami-3f0e495a
+ i-05d2313e6b9a42b16
+ ami-6871a115
-
80
- stopped
+ 16
+ running
- ip-10-2-0-15.ec2.internal
+ ip-10-0-1-192.ec2.internal
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
+
+ julian cheal
0
t2.micro
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
- us-east-1c
+ us-east-1d
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
@@ -18598,58 +32355,43 @@ http_interactions:
-
/dev/sda1
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
+ vol-0eb5ddcf735f22184
attached
- 2017-06-07T15:59:48.000Z
- false
+ 2018-04-26T10:03:06.000Z
+ true
hvm
-
- -
- Name
- test_billy0001
-
-
xen
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
-
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- eni-attach-63ae77fb
+ eni-attach-7e503066
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.2.0.15
+ 10.0.1.192
true
@@ -18657,50 +32399,53 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-04c0352eb6024667f
+ r-09188ea8e40a2b4d8
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-091fe7ccd76ddac3b
- ami-0092b117
+ i-09b65a1400b9538ff
+ ami-5769193e
16
running
- ip-10-0-1-239.ec2.internal
-
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
- bmclaugh
0
- t2.micro
- 2017-08-24T15:40:38.000Z
+ t1.micro
+ 2018-07-25T11:01:38.000Z
- us-east-1e
+ us-east-1c
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
- true
+ 10.149.203.110
+ 75.101.229.189
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
x86_64
@@ -18710,139 +32455,68 @@ http_interactions:
-
/dev/sda1
- vol-04fc5431c4edd9bb6
+ vol-04d23aa0121812de9
attached
- 2017-05-16T18:19:22.000Z
+ 2018-07-25T11:01:38.000Z
true
- hvm
- HqLiY1494958760362
+ paravirtual
+
-
Name
- bmclaugh_console_test
+ mslemr-test4
xen
-
- -
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
-
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-88392ea7
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- -
- 10.0.0.129
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-1842f370
+ r-0a1dcdbc4e3f20db0
200278856672
-
- i-8b5739f2
- ami-5769193e
+ i-004f3bd30726946d1
+ ami-2051294a
16
running
- ip-10-0-0-254.ec2.internal
+ ip-10-0-8-25.ec2.internal
- EmsRefreshSpec-KeyPair
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
0
t1.micro
- 2017-09-13T16:07:19.000Z
+ 2018-02-06T09:49:36.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
+ 10.0.8.25
true
+ -
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
@@ -18855,253 +32529,189 @@ http_interactions:
-
/dev/sda1
- vol-67606d2d
+ vol-00198c2e466b380ac
attached
- 2013-09-23T20:11:57.000Z
+ 2018-02-06T09:49:36.000Z
true
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
- paravirtual
- aPCzL1379967112359
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
+ ladas-test-foreman.ec2.internal
xen
-
- eni-ad25f7cc
- subnet-f849ff96
+ eni-88c5a245
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
+
-
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-05fac66f
+ eni-attach-d82c7915
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 54.208.119.197
-
- 200278856672
-
-
- 10.0.0.254
+ 10.0.8.25
true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
false
+
+ 1
+ 1
+
-
- r-0c0e56163429b9a46
+ r-18ca6cb0
200278856672
-
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
-
- i-0bca58e6e540ddc39
- ami-6869aa05
+ i-680071e9
+ ami-5769193e
16
running
- ip-10-2-0-239.ec2.internal
-
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-03T10:47:06.000Z
+ t1.micro
+ 2017-09-07T14:42:55.000Z
- us-east-1c
+ us-east-1e
default
+ aki-1eceaf77
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
- true
+ 10.91.143.248
+ 54.221.202.53
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-0628a6ce987d4cb6e
+ vol-b6fa656a
attached
- 2017-05-03T10:47:07.000Z
+ 2016-01-07T19:58:39.000Z
true
- hvm
- EmsRe-WebSe-1229KQXQO3HUK
+ paravirtual
+ JwNdr1452196715903
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
+ owner
+ UNKNOWN
-
- aws:cloudformation:logical-id
- WebServerInstance
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3
xen
-
- -
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
- true
-
-
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
-
- eni-attach-cbd22453
- 0
- attached
- 2017-05-03T10:47:06.000Z
- true
-
-
- 34.202.178.10
-
- 200278856672
-
-
- -
- 10.2.0.239
- true
-
- 34.202.178.10
-
- 200278856672
-
-
-
-
-
-
+
false
- true
+
+ 1
+ 1
+
-
- r-051854d34993ed969
+ r-052a327ea7fccec89
200278856672
-
- i-0347d4075310c21e6
- ami-3f0e495a
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
80
stopped
- ip-10-0-1-167.ec2.internal
+ ip-172-30-0-44.ec2.internal
- User initiated (2017-03-22 18:08:49 GMT)
- db
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
0
- t2.small
- 2017-03-21T19:39:50.000Z
+ t2.micro
+ 2018-03-15T13:27:36.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
@@ -19115,18 +32725,9 @@ http_interactions:
-
/dev/sda1
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
+ vol-0a184b5b739d382d8
attached
- 2017-03-21T19:39:51.000Z
+ 2018-03-15T13:27:37.000Z
false
@@ -19136,94 +32737,198 @@ http_interactions:
-
Name
- tina_test_march21001
+ smartstate
xen
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
200278856672
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
+ eni-attach-22e6878f
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 10.0.1.167
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-052a9ecb9d478b8d6
+ r-0cca17241eb40667c
200278856672
-
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
-
- i-099e794cfa830e9be
- ami-2051294a
+ i-03769bc6ccaba947a
+ ami-2a69aa47
16
running
- ip-10-0-0-4.ec2.internal
-
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
- ladas
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-04T13:26:00.000Z
+ t1.micro
+ 2018-09-04T13:39:05.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
enabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
- true
+ 10.231.214.59
+ 54.196.64.159
-
- sg-1e2cf271
- default
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0eb026a02c6666ea0
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-09dd2a3970815aaee
+ 200278856672
+
+
+
-
+ i-066465f361331dfa6
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-108.ec2.internal
+
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
+
+ t2.micro
+ 2018-05-25T15:39:08.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.108
+ true
+
-
- sg-7c69ed05
- launch-wizard-12
+ sg-08314440
+ launch-wizard-38
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -19231,9 +32936,9 @@ http_interactions:
-
/dev/sda1
- vol-00306cda05dec2db5
+ vol-0875db6c16a8e9335
attached
- 2017-09-04T13:26:01.000Z
+ 2018-05-24T13:44:27.000Z
true
@@ -19243,90 +32948,65 @@ http_interactions:
-
Name
- ladas_test112
+ ladas_ansible_test_2
xen
-
- eni-6933e6c9
- subnet-f849ff96
+ eni-47cd6fd0
+ subnet-5f5a9670
vpc-ff49ff91
- test
+ Primary network interface
200278856672
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-08314440
+ launch-wizard-38
- eni-attach-de56932b
+ eni-attach-b64f3e14
0
attached
- 2017-09-04T13:26:00.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 54.208.121.144
-
- 200278856672
-
-
- 10.0.0.4
+ 10.0.8.108
true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-0330333bbdf03e149
- 200278856672
-
-
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
+ i-0c37a7d012922752e
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-236.ec2.internal
+ ip-10-0-8-189.ec2.internal
-
- ladas
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
0
t2.micro
- 2017-09-07T12:23:45.000Z
+ 2018-05-25T15:39:09.000Z
us-east-1e
@@ -19335,17 +33015,20 @@ http_interactions:
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
+ 10.0.8.189
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -19353,9 +33036,9 @@ http_interactions:
-
/dev/sda1
- vol-0ac7a66512bf0d20c
+ vol-06bc83fa0e7bd77c4
attached
- 2017-09-07T12:23:46.000Z
+ 2018-05-24T13:44:27.000Z
true
@@ -19365,92 +33048,87 @@ http_interactions:
-
Name
- ladas_test_40
+ ladas_ansible_test_2
xen
-
- eni-b9cc7f19
- subnet-f849ff96
+ eni-58cd6fcf
+ subnet-5f5a9670
vpc-ff49ff91
-
+ Primary network interface
200278856672
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
- eni-attach-0b3482fe
+ eni-attach-494c3deb
0
attached
- 2017-09-07T12:23:45.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 52.70.78.137
-
- 200278856672
-
-
- 10.0.0.236
+ 10.0.8.189
true
-
- 52.70.78.137
-
- 200278856672
-
false
+ true
+
+ 1
+ 1
+
-
- r-03174ab388e42d485
+ r-0b0ebf36d34acdaa6
200278856672
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
+ i-0a67c549558c9c392
+ ami-26ebbc5c
80
stopped
- ip-10-0-1-70.ec2.internal
+ ip-10-0-1-165.ec2.internal
- User initiated (2017-05-02 13:12:28 GMT)
+ User initiated (2018-07-09 19:41:17 GMT)
0
- t2.medium
- 2017-04-12T18:17:01.000Z
+ t2.micro
+ 2018-04-24T18:47:14.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
true
-
- sg-24362241
- default
+ sg-b00affc6
+ launch-wizard-23
@@ -19464,19 +33142,10 @@ http_interactions:
-
/dev/sda1
- vol-0816f373502e8db24
+ vol-0b80eb1a867cd27f8
attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
- attached
- 2017-04-12T18:17:03.000Z
- false
+ 2018-02-28T16:08:25.000Z
+ true
@@ -19485,37 +33154,41 @@ http_interactions:
-
Name
- tina_take_two002
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
xen
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-24362241
- default
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-59c6f675
+ eni-attach-87883f81
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.0.1.70
+ 10.0.1.165
true
@@ -19523,47 +33196,56 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-01228013207b85dad
+ r-0b5184e8fed7c403a
200278856672
-
- i-08c033357b433ea2c
- ami-0b33d91d
+ i-02007c8f386e74470
+ ami-55ef662f
16
running
- ip-10-0-1-155.ec2.internal
+ ip-10-0-1-179.ec2.internal
- bd
+ bronaghkeypair1213
0
- t2.nano
- 2017-09-05T13:28:00.000Z
+ t2.micro
+ 2017-12-13T15:04:34.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
true
-
- sg-65d59519
- launch-wizard-37
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+
x86_64
ebs
/dev/xvda
@@ -19571,49 +33253,53 @@ http_interactions:
-
/dev/xvda
- vol-01aca96e22103f767
+ vol-07be95279f27e791f
attached
- 2017-02-14T16:18:29.000Z
+ 2017-12-13T15:04:35.000Z
true
hvm
- hPmBd1487089108162
+
-
Name
- mhild
+ bronagh1213
+
+ -
+ AWS_Tier
+ Gold
xen
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-65d59519
- launch-wizard-37
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-2d92e207
+ eni-attach-e6616b3e
0
attached
- 2017-02-14T16:18:28.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 10.0.1.155
+ 10.0.1.179
true
@@ -19622,29 +33308,33 @@ http_interactions:
false
true
+
+ 1
+ 1
+
-
- r-0e0f81bfeea774100
+ r-0dee19ffc1a9d96c4
200278856672
-
- i-0951b95d6db76519d
- ami-b63769a1
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
80
stopped
- ip-172-30-0-105.ec2.internal
+ ip-172-30-0-213.ec2.internal
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
0
t2.micro
- 2017-08-29T15:52:11.000Z
+ 2018-04-17T08:15:14.000Z
us-east-1a
@@ -19655,12 +33345,12 @@ http_interactions:
subnet-e88815d5
vpc-aee2a6ca
- 172.30.0.105
+ 172.30.0.213
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-67541b15
+ smartstate
@@ -19674,10 +33364,10 @@ http_interactions:
-
/dev/sda1
- vol-0ea3efc6f99654381
+ vol-070d695244916edf4
attached
- 2017-07-26T15:15:30.000Z
- true
+ 2018-02-26T18:31:28.000Z
+ false
@@ -19686,39 +33376,39 @@ http_interactions:
-
Name
- MIQ_SSA
+ smartstate
xen
-
- eni-6e7aa46e
+ eni-8fbc5335
subnet-e88815d5
vpc-aee2a6ca
200278856672
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-67541b15
+ smartstate
- eni-attach-4451b1a7
+ eni-attach-fbede525
0
attached
- 2017-07-26T15:15:29.000Z
+ 2018-02-26T18:31:27.000Z
true
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
@@ -19726,141 +33416,168 @@ http_interactions:
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
false
+
+ 1
+ 1
+
-
- r-18ca6cb0
+ r-08722bad9d42340ba
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-680071e9
- ami-5769193e
+ i-0639022117944a668
+ ami-63ac180a
16
running
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
+ ip-10-0-0-98.ec2.internal
+
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-09-07T14:42:55.000Z
+ 2018-03-15T13:28:47.000Z
us-east-1e
default
- aki-1eceaf77
+ aki-36ed075f
- disabled
+ enabled
- 10.91.143.248
- 54.221.202.53
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.98
+ 54.172.168.193
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- x86_64
+ i386
ebs
/dev/sda1
-
/dev/sda1
- vol-b6fa656a
+ vol-0b2d1d3b42eb03555
attached
- 2016-01-07T19:58:39.000Z
+ 2018-03-15T13:28:48.000Z
true
paravirtual
- JwNdr1452196715903
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
-
- owner
- UNKNOWN
-
- -
- Name
- EmsRefreshSpec-PoweredOn-Basic3
+ aws:autoscaling:groupName
+ default-scaling-group
xen
-
+
+ -
+ eni-17e6c4d8
+ subnet-f849ff96
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-5225809d
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+
+
+ -
+ 10.0.0.98
+ true
+
+ 54.172.168.193
+
+ amazon
+
+
+
+
+
+
false
+
+ 1
+ 1
+
+ 226008221399
-
- r-06a48602fb689eb1b
+ r-0098192b5619646aa
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-047886b9fd2397967
- ami-5769193e
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
80
stopped
-
+ ip-172-30-3-177.ec2.internal
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
0
- t1.micro
- 2017-09-26T07:48:52.000Z
+ t2.micro
+ 2018-03-15T07:09:23.000Z
- us-east-1e
+ us-east-1d
default
- aki-1eceaf77
disabled
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ 172.30.3.177
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-a86bf7de
+ stomsa
@@ -19874,130 +33591,160 @@ http_interactions:
-
/dev/sda1
- vol-0c2aaf810c8925376
+ vol-00991e8e4231720cb
attached
- 2017-09-26T07:48:52.000Z
+ 2018-03-12T13:48:52.000Z
true
- paravirtual
- lGtNQ1506412131645
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
+ stomsa
xen
-
+
+ -
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
-
+ sg-a86bf7de
+ stomsa
+
+
+
+ eni-attach-2bb4992d
+ 0
+ attached
+ 2018-03-12T13:48:51.000Z
+ true
+
+
+ -
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
+
+
+
false
+ true
+
+ 1
+ 1
+
-
- r-0cac97e7f6d09c34a
+ r-094143b846043daef
200278856672
-
- i-0fca61ededa522f1a
- ami-63ac180a
+ i-0b2631823a0fdfc76
+ ami-5769193e
16
running
- ip-10-0-0-36.ec2.internal
-
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
- EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-02T19:39:49.000Z
+ 2018-07-25T10:56:16.000Z
- us-east-1e
+ us-east-1b
default
- aki-36ed075f
+ aki-1eceaf77
- enabled
+ disabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
+ subnet-56f55f20
+ vpc-aee2a6ca
+ 172.30.1.91
+ 18.209.8.70
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-a493cddd
+ default
- i386
+ x86_64
ebs
/dev/sda1
-
/dev/sda1
- vol-097f300050f495d06
+ vol-0d62d6706c88af498
attached
- 2017-05-02T19:39:50.000Z
+ 2018-07-25T10:56:17.000Z
true
paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
-
- -
- aws:autoscaling:groupName
- default-scaling-group
-
-
+
xen
-
- eni-fe24b408
- subnet-f849ff96
- vpc-ff49ff91
+ eni-b20dbfd5
+ subnet-56f55f20
+ vpc-aee2a6ca
200278856672
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-a493cddd
+ default
- eni-attach-0e5ec721
+ eni-attach-d57a046c
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-07-25T10:56:16.000Z
true
- 54.145.134.133
-
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
amazon
-
- 10.0.0.36
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
- 54.145.134.133
-
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
amazon
@@ -20006,51 +33753,55 @@ http_interactions:
false
+
+ 1
+ 1
+
- 226008221399
-
- r-045f6da0fe48accc5
+ r-e08e325e
200278856672
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
+ i-c72af2f6
+ ami-2051294a
-
80
- stopped
+ 16
+ running
- ip-172-30-0-113.ec2.internal
+ ip-10-0-0-122.ec2.internal
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
+
+ EmsRefreshSpec-KeyPair
0
t2.micro
- 2017-07-17T21:02:54.000Z
+ 2017-09-26T07:43:04.000Z
- us-east-1a
+ us-east-1e
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.113
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.122
+ 54.208.71.4
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
@@ -20059,67 +33810,88 @@ http_interactions:
-
/dev/sda1
- vol-0657f371b97c0f147
+ vol-da190f08
attached
- 2017-07-17T19:21:46.000Z
+ 2016-08-30T07:17:59.000Z
true
+ -
+ /dev/sdf
+
+ vol-0acad09812d803c09
+ attached
+ 2017-03-17T07:25:12.000Z
+ false
+
+
hvm
-
+ BWJjo1472541478233
-
Name
- MIQ_SSA
+ EmsRefreshSpec-PoweredOn-VPC1
+
+ -
+ owner
+ UNKNOWN
xen
-
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-2b986f38
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-cd97a82d
+ eni-attach-455ec9ed
0
attached
- 2017-07-17T19:21:45.000Z
+ 2016-08-30T07:17:58.000Z
true
+
+ 54.208.71.4
+
+ amazon
+
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 10.0.0.122
true
+
+ 54.208.71.4
+
+ amazon
+
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+
+ 1
+ 1
+
-
- r-001ade0887ad9089f
+ r-0afdcc8251cc93fd7
200278856672
-
@@ -20129,20 +33901,20 @@ http_interactions:
-
- i-025623c4c4e4f84a0
+ i-0aa433595b855eeeb
ami-2a69aa47
16
running
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-08-31T00:02:52.000Z
+ 2018-03-01T21:31:04.000Z
us-east-1d
@@ -20152,8 +33924,8 @@ http_interactions:
enabled
- 10.51.177.218
- 54.224.115.150
+ 10.185.167.107
+ 54.161.0.45
-
sg-ea9605fc
@@ -20167,23 +33939,23 @@ http_interactions:
-
/dev/sda1
- vol-04eb2f294c5f9f7eb
+ vol-007e8c0663020ed1c
attached
- 2017-08-31T00:02:52.000Z
+ 2018-03-01T21:31:05.000Z
true
paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
-
EmsRefreshSpecResourceGroupTag
EmsRefreshSpecResourceGroupTagValue
-
- aws:cloudformation:logical-id
- WebServerGroup
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
-
aws:autoscaling:groupName
@@ -20194,53 +33966,129 @@ http_interactions:
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
+ aws:cloudformation:logical-id
+ WebServerGroup
xen
false
+
+ 1
+ 1
+
226008221399
-
- r-06c8896ff6d4d039d
+ r-0bd40467050d37fd3
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0235e2c2b4fcabeab
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
+ 0
+
+ m3.medium
+ 2018-03-14T21:43:12.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.180.71.172
+ 54.87.20.125
+
+ -
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-07667df1666e2060a
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+
+ paravirtual
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d025657762e468f5
200278856672
-
- i-0b1ec6330e0180f75
- ami-b63769a1
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
80
stopped
- ip-172-30-0-103.ec2.internal
+ ip-10-0-1-19.ec2.internal
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
0
-
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
t2.micro
- 2017-09-23T18:24:21.000Z
+ 2018-03-06T05:28:40.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.103
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
@@ -20254,6005 +34102,4779 @@ http_interactions:
-
/dev/sda1
- vol-0d805ae0a434871aa
+ vol-09a10c5f98f2dd67c
attached
- 2017-09-23T18:24:22.000Z
- true
+ 2018-03-06T05:28:40.000Z
+ false
hvm
-
+ 152031409666653601
-
Name
- MIQ_SSA
+ james
xen
-
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-aa928893
+ eni-attach-3a325e3c
0
attached
- 2017-09-23T18:24:21.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 10.0.1.19
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d3845bde588bc6ff
+ 200278856672
+
+
-
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+
+ -
+ i-0e48bff566d8742b3
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-41-232-222.ec2.internal
+ ec2-54-225-48-100.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:02.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.41.232.222
+ 54.225.48.100
+
+ -
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-044ae2b3615b12913
+ attached
+ 2018-09-04T12:12:03.000Z
+ true
+
+
+
+ paravirtual
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:33 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=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145933Z
+ X-Amz-Content-Sha256:
+ - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6b2e9a20cbefd64cde5289f98cec641231f74b7614232e2918890458c8dcf249
+ 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:
+ - Tue, 04 Sep 2018 14:59:33 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ e5623f24-13d0-4d9b-9703-8657334ce067
+
+ -
+ ami-0908219546812fe3e
+ 200278856672/dberger-clone
+ available
+ 200278856672
+ 2018-08-27T21:46:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ dberger-clone
+ Clone of bronagh1213
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-07e530b95d909f36d
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-098d7f1f
+ 200278856672/lads_image_from_volume
+ available
+ 200278856672
+ 2017-01-27T15:52:29.000Z
+ false
+ x86_64
+ machine
+ lads_image_from_volume
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fb2163b24646b146
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-0b8474d3c25191349
+ 200278856672/import-ami-09bf69373591f57dc
+ available
+ 200278856672
+ 2018-08-31T14:30:06.000Z
+ false
+ x86_64
+ machine
+ import-ami-09bf69373591f57dc
+ AWS-VMImport service: Linux - CentOS Linux release 7.5.1804 (Core) - 3.10.0-862.11.6.el7.x86_64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03e398e6e95827703
+ 67
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ simaishi-g5
+
+
+ xen
+ true
+
+ -
+ ami-1b3cc30d
+ jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ available
+ 200278856672
+ 2017-01-30T22:12:24.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ jerryk_instance_store_ami01
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-204c8436
+ 200278856672/Ladas_test_5_image
+ available
+ 200278856672
+ 2017-02-16T15:23:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ Ladas_test_5_image
+ testing snapshot events
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-eafde662
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-20e90e49
+ jf-test-copy/jf-test-copy.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+
+
+
+ xen
+
+ -
+ ami-22470534
+ 200278856672/ssa-agent-0525
+ available
+ 200278856672
+ 2017-05-25T18:23:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-0525
+ working version 1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-08810574
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-25a81c4c
+ 200278856672/suse-11-server-64
+ available
+ 200278856672
+ 2012-08-22T01:42:54.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ suse-11-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6eee471d
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-64
+
+
+ xen
+
+ -
+ ami-320c005a
+ 200278856672/t2 rhel 7.1
+ available
+ 200278856672
+ 2015-04-28T17:25:53.000Z
+ false
+ x86_64
+ machine
+ t2 rhel 7.1
+ rhel
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8b289bec
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ mkanoor_t2_rhel
-
+
+ xen
-
- r-e08e325e
- 200278856672
-
-
+ ami-3bae1a52
+ 200278856672/ubuntu-11.10-server-32
+ available
+ 200278856672
+ 2012-08-22T00:31:49.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-11.10-server-32
+
+ ebs
+ /dev/sda1
+
-
- i-c72af2f6
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-122.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.micro
- 2017-09-26T07:43:04.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.122
- 54.208.71.4
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-da190f08
- attached
- 2016-08-30T07:17:59.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0acad09812d803c09
- attached
- 2017-03-17T07:25:12.000Z
- false
-
-
-
- hvm
- BWJjo1472541478233
-
- -
- Name
- EmsRefreshSpec-PoweredOn-VPC1
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- -
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-455ec9ed
- 0
- attached
- 2016-08-30T07:17:58.000Z
- true
-
-
- 54.208.71.4
-
- amazon
-
-
- -
- 10.0.0.122
- true
-
- 54.208.71.4
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-968927e5
+ 8
+ false
+ standard
+ false
+
-
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-32
+
+
+ xen
-
- r-00811be44fc3b2c8f
- 200278856672
-
-
+ ami-3f0e495a
+ 200278856672/CFME5.5.0
+ available
+ 200278856672
+ 2015-09-30T16:31:07.000Z
+ false
+ x86_64
+ machine
+ CFME5.5.0
+ Red Hat CloudForms 5.5 AMI
+ ebs
+ /dev/sda1
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
-
-
80
- stopped
-
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
- 0
-
- t2.micro
- 2017-03-13T12:10:54.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
-
- -
- sg-82c99dfe
- launch-wizard-38
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0e251f8b387b2d87d
- attached
- 2017-02-16T16:28:16.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
-
- hvm
- Wewzf1487262494337
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- owner
- Ladas
-
- -
- Name
- ladas_test_5
-
-
- xen
-
- -
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
- attached
- 2017-02-16T16:28:15.000Z
- true
-
-
- -
- 10.0.1.86
- true
-
-
-
-
-
- false
+ /dev/sdf
+
+ snap-9dd602d7
+ 50
+ false
+ gp2
+ false
+
-
+ -
+ /dev/sda1
+
+ snap-1d177976
+ 40
+ false
+ standard
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ cfme-5.5
+
+
+ xen
-
- r-08595d55d4aa901a4
- 200278856672
-
-
+ ami-45c9df3e
+ 200278856672/ladas_test_111_snapshot_image_sdd
+ available
+ 200278856672
+ 2017-09-04T15:05:02.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image_sdd
+
+ ebs
+ /dev/sdd
+
-
- i-0c1542ba946875280
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-90.ec2.internal
-
- User initiated (2017-03-23 19:13:13 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:41:22.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-035c47f5f5190ddc8
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21003
-
-
- xen
-
- -
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
- -
- 10.0.1.90
- true
-
-
-
-
-
- false
+ /dev/sdd
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
-
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- r-01136b3a8909eb8ef
- 200278856672
-
-
+ ami-57318e3c
+ 200278856672/mkanoor_testing_vpc
+ available
+ 200278856672
+ 2015-08-24T15:36:54.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ mkanoor_testing_vpc
+ mkanoor_testing_vpc
+ ebs
+ /dev/sda1
+
-
- i-035fa3affa815d81d
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-230.ec2.internal
-
- User initiated (2017-03-22 19:02:26 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:39:52.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-059f5f4b2a5663e65
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21002
-
-
- xen
-
- -
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-9413e1b8
- 0
- attached
- 2017-03-21T19:39:52.000Z
- true
-
-
- -
- 10.0.1.230
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-5ab0eb13
+ 7
+ true
+ standard
+ false
+
-
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- r-05ad2451777d582ec
- 200278856672
-
+ ami-5769193e
+ 200278856672/EmsRefreshSpec-Image
+ available
+ 200278856672
+ 2013-06-22T02:28:44.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-Image
+ EmsRefreshSpec-Image
+ ebs
+ /dev/sda1
+
-
- sg-347f9b5d
- default
+ /dev/sda1
+
+ snap-5f38cd0e
+ 7
+ true
+ standard
+ false
+
-
-
+
+ paravirtual
+
-
- i-02c925747e07a8118
- ami-5769193e
-
-
16
- running
-
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
-
- 0
-
- m3.medium
- 2017-07-24T19:18:26.000Z
-
- us-east-1d
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.102.130.251
- 54.162.181.195
-
- -
- sg-347f9b5d
- default
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-05eb880e2e337b3f1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
-
- paravirtual
-
-
- -
- Name
- testtina123456
-
-
- xen
-
- false
+ Name
+
-
-
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:27 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeAddresses&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080827Z
- X-Amz-Content-Sha256:
- - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b2abfd74ab4f0239d40a07cb19ce7a59b0a8a92a73f23d5b59d882ec8c5f0032
- Content-Length:
- - '43'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:22 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 3fed2f8c-fc86-4c78-9c35-9c4a33cd9198
-
- -
- 23.23.198.134
- standard
-
-
- -
- 23.23.209.146
- standard
-
+
+ xen
-
- 54.221.193.142
- standard
-
+ ami-5e86fe48
+ 200278856672/ssa-agent-hsong
+ available
+ 200278856672
+ 2017-05-18T14:44:02.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-hsong
+ [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a5070b29f3ddcd92
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- 54.221.202.53
- standard
- i-680071e9
+ ami-63026775
+ 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ available
+ 200278856672
+ 2017-04-26T15:30:36.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-PoweredOn-VPC_snapshot
+ EmsRefreshSpec-PoweredOn-VPC_description
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0001b68fed820fb79
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+
+ snap-0f1eb18bc955eb28a
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- 54.221.202.64
- standard
-
+ ami-63ac180a
+ 200278856672/redhat-6.3-32
+ available
+ 200278856672
+ 2012-08-21T23:30:21.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ redhat-6.3-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-d23a95a1
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-32
+
+
+ xen
-
- 54.208.119.197
- eipalloc-ce53d7a0
- vpc
- i-8b5739f2
- eipassoc-cc6e58f1
- eni-ad25f7cc
- 200278856672
- 10.0.0.254
+ ami-67bc0b0e
+ 200278856672/miq-extract-base-ubuntu-12.04
+ available
+ 200278856672
+ 2012-08-27T19:14:39.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ miq-extract-base-ubuntu-12.04
+ ubuntu 12.04 + rvm/Ruby1.9
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-d03941a3
+ 8
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ miq-extract-base-ubuntu-12.04
+
+
+ xen
-
- 52.5.18.129
- eipalloc-1f46572e
- vpc
- i-091fe7ccd76ddac3b
- eipassoc-9132d3a5
- eni-a66cca6f
- 200278856672
- 10.0.1.239
+ ami-7c4aa86a
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2017-01-13T11:31:28.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+ [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6054c98a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- 54.208.121.144
- eipalloc-8d53d7e3
- vpc
- i-099e794cfa830e9be
- eipassoc-d87fd3ec
- eni-6933e6c9
- 200278856672
- 10.0.0.4
+ ami-7d85fd6b
+ 200278856672/hsong-ssa-agent-v1
+ available
+ 200278856672
+ 2017-05-18T14:21:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ hsong-ssa-agent-v1
+ [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05ef19f30ffe6ceaa
+ 80
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
-
- 34.202.178.10
- eipalloc-9a4472ab
- vpc
- i-0bca58e6e540ddc39
- eipassoc-13766e23
- eni-8fefae9b
- 200278856672
- 10.2.0.239
+ ami-8bf2e4f0
+ 200278856672/ladas_test_111_snapshot_image
+ available
+ 200278856672
+ 2017-09-04T15:04:28.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- 52.70.78.137
- eipalloc-3d8a720f
- vpc
- i-0b72e0b70e7fae3c9
- eipassoc-54289160
- eni-b9cc7f19
- 200278856672
- 10.0.0.236
+ ami-95ad19fc
+ 200278856672/ubuntu-11.10-server-64
+ available
+ 200278856672
+ 2012-08-22T00:20:33.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ ubuntu-11.10-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-90bc12e3
+ 8
+ false
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-64
+
+
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:28 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeVolumes&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080830Z
- X-Amz-Content-Sha256:
- - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0a3a51770bbeb01fd53fc72f326aa81095e73eb7467994f4d17e28d31ae75646
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:26 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- e10fd6be-549e-420e-8714-6239645412da
-
-
- vol-834804c4
- 50
-
- us-east-1d
- available
- 2015-04-21T13:54:22.140Z
-
+ ami-a7185ec2
+ 200278856672/CFME-55Image
+ available
+ 200278856672
+ 2015-10-01T15:35:55.000Z
+ false
+ x86_64
+ machine
+ CFME-55Image
+ CFME-55Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+
+ 30
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sda1
+
+ snap-249e4c6c
+ 40
+ false
+ gp2
+ false
+
+
+
+ hvm
-
Name
- cfme-raw-vmdb
+
- gp2
- 150
- false
+ xen
-
- vol-d40b2c93
- 30
-
- us-east-1d
- available
- 2015-04-28T12:21:59.090Z
-
+ ami-ad43a4c4
+ rpo-images/miq-ec2-proto.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
-
Name
- cfme2-raw-vmdb
+ extract-proto0
- gp2
- 100
- false
+ xen
-
- vol-68af0c92
- 40
-
- us-east-1d
- available
- 2015-09-29T21:36:13.514Z
-
+ ami-bbc9dac0
+ 200278856672/ladas_test111
+ available
+ 200278856672
+ 2017-09-06T15:25:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ ladas_test111
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09505262c29651f47
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
-
Name
- cfme55
+
- standard
- false
+ xen
-
- vol-ee3a9614
- 50
-
- us-east-1d
- available
- 2015-09-30T15:57:16.028Z
-
+ ami-bda014d4
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2012-08-21T21:31:39.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-5210bc21
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
-
Name
- cfme55vmdb
+ redhat-6.3-64
- gp2
- 150
- false
+ xen
-
- vol-02a26016b0b7a9450
- 1
- snap-0fb2163b24646b146
- us-east-1d
- in-use
- 2017-05-05T14:04:33.747Z
-
+ ami-c68639af
+ miq-extract-images/evm-extract.manifest.xml
+ available
+ 200278856672
+ 2012-10-11T20:34:52.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ evm-extract
+ instance-store
+
-
- vol-02a26016b0b7a9450
- i-0b59b1d8461965bd1
- /dev/sda1
- attached
- 2017-05-05T14:04:33.000Z
- true
+ /dev/sdb
+ ephemeral0
-
- gp2
- 100
- false
-
- -
- vol-05eb880e2e337b3f1
- 7
- snap-5f38cd0e
- us-east-1d
- in-use
- 2017-07-24T19:18:26.730Z
-
+
+ paravirtual
+
-
- vol-05eb880e2e337b3f1
- i-02c925747e07a8118
- /dev/sda1
- attached
- 2017-07-24T19:18:26.000Z
- true
+ Name
+ evm-extract
-
- standard
- false
+
+ xen
-
- vol-04eb2f294c5f9f7eb
- 8
- snap-4177dea1
- us-east-1d
- in-use
- 2017-08-31T00:02:52.693Z
-
+ ami-cd43a4a4
+ rpo-images/miq-ec2-extract.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
-
- vol-04eb2f294c5f9f7eb
- i-025623c4c4e4f84a0
- /dev/sda1
- attached
- 2017-08-31T00:02:52.000Z
- true
+ Name
+ extract-proto-old
-
- standard
- false
+
+ xen
-
- vol-0d8fcf26bf27ab650
- 1
-
- us-east-1a
- available
- 2017-01-27T15:36:00.023Z
-
+ ami-cf08bda6
+ rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ available
+ 200278856672
+ 2012-08-19T18:43:47.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
-
Name
- ladas_volume
+ extract-proto3
- gp2
- 100
- false
+ xen
-
- vol-0e6f4b53711466c8b
- 1
-
- us-east-1a
- available
- 2017-05-22T13:13:04.847Z
-
+ ami-cf96afb0
+ 200278856672/dberger_test_image
+ available
+ 200278856672
+ 2018-07-17T15:29:53.000Z
+ true
+ x86_64
+ machine
+ simple
+ dberger_test_image
+ Just a test image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0400b13c0acfdffa9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
-
- Name
- test
+ org
+ cfme
- gp2
- 100
- false
+ xen
+ true
-
- vol-0395fe9f0370fabdf
- 3
-
- us-east-1a
- available
- 2017-06-22T20:36:16.182Z
-
+ ami-ebcb7e82
+ rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T02:47:43.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ ubuntu10.04-rvm-ruby1.9
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
-
Name
- dberger-test
+ ubuntu-10.04-rvm-ruby1.9
+
+ xen
+
+ -
+ ami-edaa1f84
+ rpo-work/miq-test.img.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T18:51:02.000Z
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+ /dev/sda1
+
-
- Owner
- Dan
+ sda2
+ ephemeral0
+
+ paravirtual
+
-
- Joe
- Smith
+ Name
+ test-linux
- gp2
- 100
- false
+ xen
-
- vol-0a53d5f020485f470
- 2
-
- us-east-1a
- available
- 2017-06-30T16:27:26.909Z
-
+ ami-edad1984
+ 200278856672/ubuntu-12.04-server-32
+ available
+ 200278856672
+ 2012-08-22T00:07:18.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-12.04-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8ec06efd
+ 8
+ true
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
-
Name
- bronagh-volume-test
+ ubuntu-12.04-server-32
- gp2
- 100
- false
+ xen
-
- vol-0acc4b093d87d2ecd
- 1
-
- us-east-1a
- available
- 2017-06-30T17:19:21.552Z
-
-
+ ami-f3a81c9a
+ 200278856672/suse-11-server-32
+ available
+ 200278856672
+ 2012-08-22T01:57:01.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ suse-11-server-32
+
+ ebs
+ /dev/sda1
+
-
- foo
- bar
+ /dev/sda1
+
+ snap-baf35ac9
+ 10
+ false
+ standard
+ false
+
+
+ paravirtual
+
-
Name
- dberger-test2
+ suse-11-server-32
- gp2
- 100
- false
+ xen
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:35 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145935Z
+ X-Amz-Content-Sha256:
+ - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6c6d9a0db258ace6537e22e18df5c0393b44b1e2928e03f69502d782ede31504
+ Content-Length:
+ - '110'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:40 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 1008f412-b0ae-4468-a430-c209e88db2a0
+
-
- vol-0657f371b97c0f147
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-07-17T19:21:46.880Z
-
+ ami-0293da6a
+ 309956199498/RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T20:32:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0657f371b97c0f147
- i-06c2e2feb85b5c8b2
- /dev/sda1
- attached
- 2017-07-17T19:21:46.000Z
- true
+ /dev/sda1
+
+ snap-4bfb05c4
+ 6
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0ea3efc6f99654381
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-07-26T15:15:30.182Z
-
+ ami-02a9ce6b
+ 309956199498/RHEL-6.4_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-04-10T22:38:50.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.4_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c3be779a
+ 7
+ true
+ standard
+ false
+
+
-
- vol-0ea3efc6f99654381
- i-0951b95d6db76519d
- /dev/sda1
- attached
- 2017-07-26T15:15:30.000Z
- true
+ /dev/sdf
+ ephemeral0
-
- gp2
- 100
- false
-
- -
- vol-06c6dccf34b2a6c72
- 1
-
- us-east-1a
- available
- 2017-07-27T13:06:30.936Z
-
-
-
- Name
- ladas_delete_me_soon
+ /dev/sdg
+ ephemeral1
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0f151bad0c041c2db
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-08-10T19:10:06.592Z
-
+ ami-02ba6009c5e7a02ab
+ 309956199498/RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-11T01:14:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0f151bad0c041c2db
- i-02975d4eb8e53bafd
- /dev/sda1
- attached
- 2017-08-10T19:10:06.000Z
- true
+ /dev/sda1
+
+ snap-01c28ef48fde91a74
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ false
-
- vol-0d805ae0a434871aa
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-09-23T18:24:22.738Z
-
+ ami-036a036a
+ 309956199498/RHEL-6.1_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:23:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.1_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0d805ae0a434871aa
- i-0b1ec6330e0180f75
- /dev/sda1
- attached
- 2017-09-23T18:24:22.000Z
- true
+ /dev/sda1
+
+ snap-b9b870e4
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-67606d2d
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2013-09-23T20:11:57.000Z
-
+ ami-03d01c6a
+ 309956199498/RHEL-5.5-Starter-EBS-i386-14-Access2
+ available
+ 309956199498
+ 2011-10-10T14:02:38.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.5-Starter-EBS-i386-14-Access2
+ ebs
+ /dev/sda1
+
-
- vol-67606d2d
- i-8b5739f2
- /dev/sda1
- attached
- 2013-09-23T20:11:57.000Z
- true
+ /dev/sda1
+
+ snap-9693f8f5
+ 6
+ true
+ standard
+ false
+
-
-
-
- Name
- EmsRefreshSpec-PoweredOn-VPC-root
+ /dev/sdf
+ ephemeral0
-
- standard
- false
-
- -
- vol-b6fa656a
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-01-07T19:58:39.495Z
-
-
- vol-b6fa656a
- i-680071e9
- /dev/sda1
- attached
- 2016-01-07T19:58:39.000Z
- true
+ /dev/sdg
+ ephemeral1
-
-
+
+ paravirtual
+ xen
+
+ -
+ ami-0456c465f72bd0c95
+ 309956199498/RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-15T15:58:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpec-PoweredOn-Basic3-root
+ /dev/sda1
+
+ snap-01cc239ae078f91f5
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
+ true
-
- vol-3bc4d1ea
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-05-10T20:56:38.389Z
-
+ ami-0707307d
+ 309956199498/RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-23T02:44:16.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-3bc4d1ea
- i-fb694e66
- /dev/sda1
- attached
- 2016-05-10T20:56:38.000Z
- true
+ /dev/sda1
+
+ snap-0474fffe1f2eded28
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-da190f08
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2016-08-30T07:17:59.338Z
-
+ ami-071c247d
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ available
+ 679593333241
+ 2018-01-29T11:05:45.000Z
+ false
+
-
- vol-da190f08
- i-c72af2f6
- /dev/sda1
- attached
- 2016-08-30T07:17:59.000Z
- true
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-22
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpec-PoweredOn-VPC1-root
+ /dev/sda1
+
+ snap-06c7170eb18e5058c
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0dda5ecf4b2b3dc57
- 1
-
- us-east-1e
- in-use
- 2017-01-27T15:58:07.337Z
-
-
- vol-0dda5ecf4b2b3dc57
- i-0a922b9826b3dfd0d
- /dev/sdf
- attached
- 2017-03-13T13:38:45.000Z
- false
+ /dev/sdb
+ ephemeral0
-
-
-
- Name
- ladas-volume-3
+ /dev/sdc
+ ephemeral1
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0d780233c22848be7
- 1
- snap-0fb2163b24646b146
- us-east-1e
- available
- 2017-01-27T15:59:20.784Z
-
-
+ ami-0845091f
+ 309956199498/RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-05T21:30:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas-volume-from-snap2
+ /dev/sda1
+
+ snap-93baa0ea
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-01aca96e22103f767
- 8
- snap-037f1f9e6c8ea4d65
- us-east-1e
- in-use
- 2017-02-14T16:18:29.762Z
-
+ ami-086f9875
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ available
+ 679593333241
+ 2018-03-02T05:49:09.000Z
+ false
+
-
- vol-01aca96e22103f767
- i-08c033357b433ea2c
- /dev/xvda
- attached
- 2017-02-14T16:18:29.000Z
- true
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
- gp2
- 100
- false
-
- -
- vol-0e251f8b387b2d87d
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:28:15.962Z
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-02-22
+ ebs
+ /dev/sda1
+
-
- vol-0e251f8b387b2d87d
- i-0a922b9826b3dfd0d
- /dev/sda1
- attached
- 2017-02-16T16:28:16.000Z
- true
+ /dev/sda1
+
+ snap-0fd087ac74cf66429
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-06c7662068fe81b92
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:40:47.792Z
-
-
- vol-06c7662068fe81b92
- i-0999c6f9b18ead5fc
- /dev/sda1
- attached
- 2017-02-16T16:40:47.000Z
- true
+ /dev/sdb
+ ephemeral0
-
- gp2
- 100
- false
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- vol-0e1613cacf4688009
- 1
-
- us-east-1e
- available
- 2017-03-17T07:20:08.273Z
-
-
+ ami-09ae22a8a98cc4f9d
+ 309956199498/RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-16T19:16:22.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecForSnapshot
+ /dev/sda1
+
+ snap-074d480ddb740eb71
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0e4c86c12b28cead8
- 1
- snap-055095f47fab5e749
- us-east-1e
- in-use
- 2017-03-17T07:21:35.798Z
-
+ ami-0bd11d62
+ 309956199498/RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T15:11:49.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0e4c86c12b28cead8
- i-8b5739f2
- /dev/sdf
- attached
- 2017-03-17T07:22:23.000Z
- false
+ /dev/sda1
+
+ snap-4c2d472f
+ 6
+ true
+ standard
+ false
+
-
-
-
- Name
- EmsRefreshSpecForVpcVm
+ /dev/sdf
+ ephemeral0
-
- gp2
- 100
- false
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- vol-0acad09812d803c09
- 1
-
- us-east-1e
- in-use
- 2017-03-17T07:23:54.211Z
-
+ ami-0d70a070
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:42:07.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0acad09812d803c09
- i-c72af2f6
- /dev/sdf
- attached
- 2017-03-17T07:25:12.000Z
- false
+ /dev/sda1
+
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
+ false
+
-
-
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0e782571
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-25T17:10:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecForVpc1
+ /dev/sda1
+
+ snap-010aa1159136454b2
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ hvm
+ xen
+ true
-
- vol-0e9caee6ef7b23c31
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:51.246Z
-
+ ami-0fe82466
+ 309956199498/RHEL-6.1-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2011-10-10T21:32:39.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.1-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0292e761
+ 6
+ true
+ standard
+ false
+
+
-
- vol-0e9caee6ef7b23c31
- i-0347d4075310c21e6
- /dev/sda1
- attached
- 2017-03-21T19:39:51.000Z
- false
+ /dev/sdf
+ ephemeral0
-
- standard
- false
-
- -
- vol-059f5f4b2a5663e65
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:52.887Z
-
-
- vol-059f5f4b2a5663e65
- i-035fa3affa815d81d
- /dev/sda1
- attached
- 2017-03-21T19:39:52.000Z
- false
+ /dev/sdg
+ ephemeral1
-
- standard
- false
+
+ paravirtual
+ xen
-
- vol-098f6a0ae86c0bf2f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:51.351Z
-
+ ami-10251c7a
+ 309956199498/RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:22:53.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-098f6a0ae86c0bf2f
- i-0347d4075310c21e6
- /dev/sdf
- attached
- 2017-03-21T19:39:51.000Z
- false
+ /dev/sda1
+
+ snap-7d72846a
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 150
- false
+
+ hvm
+ xen
-
- vol-03be1ddce0ee8a66f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:53.038Z
-
+ ami-10663b78
+ 309956199498/RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-25T20:24:21.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-03be1ddce0ee8a66f
- i-035fa3affa815d81d
- /dev/sdf
- attached
- 2017-03-21T19:39:52.000Z
- false
+ /dev/sda1
+
+ snap-bf56423e
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 150
- false
+
+ hvm
+ xen
-
- vol-035c47f5f5190ddc8
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:41:23.396Z
-
+ ami-11322278
+ 309956199498/RHEL-6.5_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2014-04-01T13:58:44.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-035c47f5f5190ddc8
- i-0c1542ba946875280
- /dev/sda1
- attached
- 2017-03-21T19:41:23.000Z
- false
+ /dev/sda1
+
+ snap-ed50b637
+ 6
+ true
+ standard
+ false
+
-
- standard
- false
+
+ paravirtual
+ xen
-
- vol-0c365b31acf12c5f0
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:41:23.491Z
-
+ ami-13d0f569
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ available
+ 679593333241
+ 2018-01-12T06:52:56.000Z
+ false
+
-
- vol-0c365b31acf12c5f0
- i-0c1542ba946875280
- /dev/sdf
- attached
- 2017-03-21T19:41:23.000Z
- false
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
- gp2
- 150
- false
-
- -
- vol-001c8985b0f091c9b
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-04-11T18:27:25.671Z
-
- gp2
- 150
- false
-
- -
- vol-03f74085d10e667e8
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-04-11T18:27:25.488Z
-
- standard
- false
-
- -
- vol-0dc50783929797846
- 30
-
- us-east-1e
- in-use
- 2017-04-12T18:17:02.946Z
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-10
+ ebs
+ /dev/sda1
+
-
- vol-0dc50783929797846
- i-0659dcbc66cb830e5
- /dev/sdb
- attached
- 2017-04-12T18:17:03.000Z
- false
+ /dev/sda1
+
+ snap-017d1cfcc9b402d3e
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0816f373502e8db24
- 40
- snap-249e4c6c
- us-east-1e
- in-use
- 2017-04-12T18:17:02.827Z
-
-
- vol-0816f373502e8db24
- i-0659dcbc66cb830e5
- /dev/sda1
- attached
- 2017-04-12T18:17:03.000Z
- false
+ /dev/sdb
+ ephemeral0
-
- gp2
- 120
- false
-
- -
- vol-0f5da4a455ff03c28
- 2
-
- us-east-1e
- available
- 2017-04-24T16:16:47.488Z
-
-
-
- Name
- bronaghs-test-volume
+ /dev/sdc
+ ephemeral1
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-097f300050f495d06
- 7
- snap-d23a95a1
- us-east-1e
- in-use
- 2017-05-02T19:39:50.053Z
-
+ ami-140eaf7d
+ 309956199498/RHEL-6.3-Starter-i386-1-Access2
+ available
+ 309956199498
+ 2012-06-04T19:10:28.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.3-Starter-i386-1-Access2
+ ebs
+ /dev/sda1
+
-
- vol-097f300050f495d06
- i-0fca61ededa522f1a
- /dev/sda1
- attached
- 2017-05-02T19:39:50.000Z
- true
+ /dev/sda1
+
+ snap-186d0067
+ 7
+ true
+ standard
+ false
+
-
- standard
- false
-
- -
- vol-04a25be409ef70789
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:17:19.803Z
-
- standard
- false
-
- -
- vol-01a843e049100c874
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:17:19.775Z
-
- gp2
- 150
- false
-
- -
- vol-0330dfaa90ec5155f
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:35:13.310Z
-
- standard
- false
-
- -
- vol-033e5a7bf386767a0
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:35:13.320Z
-
- gp2
- 150
- false
-
- -
- vol-04fc5431c4edd9bb6
- 6
- snap-e159bf6a
- us-east-1e
- in-use
- 2017-05-16T18:19:22.353Z
-
-
- vol-04fc5431c4edd9bb6
- i-091fe7ccd76ddac3b
- /dev/sda1
- attached
- 2017-05-16T18:19:22.000Z
- true
+ /dev/sdf
+ ephemeral0
-
- gp2
- 100
- false
-
- -
- vol-0ba3a2953d84534d2
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-17T18:40:13.269Z
-
- gp2
- 150
- false
-
- -
- vol-0c7a1e46f3e5596ca
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-17T18:40:13.127Z
-
- standard
- false
-
- -
- vol-05ff7a30b06f27ac5
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-22T20:22:02.773Z
-
- standard
- false
-
- -
- vol-035a92ec4bb5b53c8
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-22T20:22:02.894Z
-
- gp2
- 150
- false
-
- -
- vol-0ed526ebed417656f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-05-22T20:35:57.755Z
-
-
- vol-0ed526ebed417656f
- i-0bad1e8ff60a6f29a
- /dev/sdf
- attached
- 2017-05-22T20:35:57.000Z
- false
+ /dev/sdg
+ ephemeral1
-
- gp2
- 150
- false
+
+ paravirtual
+ xen
-
- vol-0385dfce3061ff5a9
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-05-22T20:35:57.665Z
-
+ ami-14e9c76e
+ 309956199498/RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-18T21:29:08.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0385dfce3061ff5a9
- i-0bad1e8ff60a6f29a
- /dev/sda1
- attached
- 2017-05-22T20:35:57.000Z
- false
+ /dev/sda1
+
+ snap-0f42b03b4565e957e
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
-
- -
- vol-0344f9e572891ae90
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:19:18.000Z
-
- gp2
- 100
- false
-
- -
- vol-0ef01a328c30eb4b2
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:30:09.864Z
-
- gp2
- 100
- false
-
- -
- vol-0c66d91c30044f68f
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:44:40.594Z
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-096d40746df01e27b
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- in-use
- 2017-06-16T20:54:01.693Z
-
+ ami-179db56c
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ available
+ 679593333241
+ 2017-08-10T00:08:51.000Z
+ false
+
-
- vol-096d40746df01e27b
- i-03d706b95aa8b12ce
- /dev/sda1
- attached
- 2017-06-16T20:54:01.000Z
- false
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
- gp2
- 100
- false
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-061b22038dcd055dd
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- vol-01e50a745302d3299
- 2
-
- us-east-1e
- available
- 2017-06-22T20:38:28.321Z
-
-
+ ami-180a540f
+ 309956199498/RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T20:06:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- name
- dberger-test2
+ /dev/sda1
+
+ snap-88a0f200
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-0f1d1fbc7a35cdbab
- 2
-
- us-east-1e
- available
- 2017-07-03T14:45:12.273Z
-
-
+ ami-1c43ff74
+ 309956199498/RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-09T20:00:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- bronagh-ebs-test
+ /dev/sda1
+
+ snap-7d0526da
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-000f77902b1a16428
- 80
- snap-05ef19f30ffe6ceaa
- us-east-1e
- in-use
- 2017-08-29T19:14:36.922Z
-
+ ami-1def2374
+ 309956199498/RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T20:38:43.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-dc5227bf
+ 6
+ true
+ standard
+ false
+
+
-
- vol-000f77902b1a16428
- i-0c1eee2b86c7aa4a1
- /dev/sda1
- attached
- 2017-08-29T19:14:36.000Z
- true
+ /dev/sdf
+ ephemeral0
-
-
-
- hsong-ssa
-
+ /dev/sdg
+ ephemeral1
-
- gp2
- 240
- false
+
+ paravirtual
+ xen
-
- vol-00306cda05dec2db5
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2017-09-04T13:26:01.140Z
-
+ ami-227b0c4a
+ 309956199498/RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-05T22:18:23.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-00306cda05dec2db5
- i-099e794cfa830e9be
- /dev/sda1
- attached
- 2017-09-04T13:26:01.000Z
- true
+ /dev/sda1
+
+ snap-bb531132
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-01ff7e549707b8e54
- 1
-
- us-east-1e
- available
- 2017-09-04T14:45:47.319Z
-
-
+ ami-261f5a4c
+ 309956199498/Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-17T16:53:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_test_111_encrypted
+ /dev/sda1
+
+ snap-7a8a411b
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ hvm
+ xen
-
- vol-01f455f7af32c1206
- 10
- snap-04b8acc66d50b9a7b
- us-east-1e
- available
- 2017-09-04T15:18:12.952Z
-
-
+ ami-2a532b40
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_tesT_111_volume_from_snapshot_that_has_image
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ hvm
+ xen
-
- vol-0ac7a66512bf0d20c
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2017-09-07T12:23:46.502Z
-
+ ami-2facc546
+ 309956199498/RHEL-5.9_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T01:15:43.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.9_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0ac7a66512bf0d20c
- i-0b72e0b70e7fae3c9
- /dev/sda1
- attached
- 2017-09-07T12:23:46.000Z
- true
+ /dev/sda1
+
+ snap-46973f1b
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-01d53264cef7468b5
- 1
-
- us-east-1e
- available
- 2017-09-08T20:44:15.915Z
-
-
+ ami-30185959
+ 309956199498/RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ available
+ 309956199498
+ 2013-08-13T20:39:20.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ ebs
+ /dev/sda1
+
-
- name
- bronagh_sept
+ /dev/sda1
+
+ snap-2cdf2b7b
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-0c2aaf810c8925376
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2017-09-26T07:48:52.520Z
-
+ ami-3068da58
+ 309956199498/RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T13:23:21.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0c2aaf810c8925376
- i-047886b9fd2397967
- /dev/sda1
- attached
- 2017-09-26T07:48:52.000Z
- true
+ /dev/sda1
+
+ snap-008530a7
+ 6
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-02e5c41d12060ab3b
- 8
- snap-25dd2ac1
- us-east-1c
- in-use
- 2017-05-02T19:39:37.154Z
-
+ ami-3368015a
+ 309956199498/RHEL-6.0_GA-x86_64-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:51:24.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.0_GA-x86_64-6-Access2
+ ebs
+ /dev/sda1
+
-
- vol-02e5c41d12060ab3b
- i-0150ac66c83e0eae8
- /dev/xvda
- attached
- 2017-05-02T19:39:37.000Z
- true
+ /dev/sda1
+
+ snap-3828e165
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0628a6ce987d4cb6e
- 8
- snap-25dd2ac1
- us-east-1c
- in-use
- 2017-05-03T10:47:07.722Z
-
+ ami-346b9c49
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ available
+ 679593333241
+ 2018-03-02T05:48:56.000Z
+ false
+
-
- vol-0628a6ce987d4cb6e
- i-0bca58e6e540ddc39
- /dev/xvda
- attached
- 2017-05-03T10:47:07.000Z
- true
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
- gp2
- 100
- false
-
- -
- vol-0da3845ae07b3f322
- 50
- snap-9dd602d7
- us-east-1c
- available
- 2017-05-18T16:20:08.073Z
-
- gp2
- 150
- false
-
- -
- vol-09d73576072fbf6ae
- 40
- snap-1d177976
- us-east-1c
- available
- 2017-05-18T16:20:07.982Z
-
- standard
- false
-
- -
- vol-075964f66ea673e99
- 40
- snap-1d177976
- us-east-1c
- available
- 2017-05-18T16:45:59.675Z
-
- standard
- false
-
- -
- vol-07e8bc444d8e10c9c
- 50
- snap-9dd602d7
- us-east-1c
- available
- 2017-05-18T16:45:59.776Z
-
- gp2
- 150
- false
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-099825c0474cb713a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- vol-0a3ad9ef6f4a178f3
- 40
- snap-1d177976
- us-east-1c
- in-use
- 2017-06-07T15:59:48.204Z
-
+ ami-3e6eb444
+ 309956199498/RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-24T16:16:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0a3ad9ef6f4a178f3
- i-013f45a83fd938928
- /dev/sda1
- attached
- 2017-06-07T15:59:48.000Z
- false
+ /dev/sda1
+
+ snap-0d59b38500ea97665
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
-
- vol-0382343901be51311
- 50
- snap-9dd602d7
- us-east-1c
- in-use
- 2017-06-07T15:59:48.363Z
-
+ ami-416a7028
+ 309956199498/RHEL-6.5_GA-i386-4-Access2
+ available
+ 309956199498
+ 2014-04-22T14:35:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0382343901be51311
- i-013f45a83fd938928
- /dev/sdf
- attached
- 2017-06-07T15:59:48.000Z
- false
+ /dev/sda1
+
+ snap-09e954d6
+ 10
+ true
+ standard
+ false
+
-
- gp2
- 150
- false
+
+ paravirtual
+ xen
-
- vol-0290849f78dccf167
- 40
- snap-1d177976
- us-east-1c
- in-use
- 2017-06-09T15:00:47.137Z
-
+ ami-46a4f52e
+ 309956199498/RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-20T15:33:32.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0290849f78dccf167
- i-0d794150f7fd264c4
- /dev/sda1
- attached
- 2017-06-09T15:00:47.000Z
- false
+ /dev/sda1
+
+ snap-1af51e9b
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
-
- vol-083b1f1e71831ba7e
- 50
- snap-9dd602d7
- us-east-1c
- in-use
- 2017-06-09T15:00:47.228Z
-
+ ami-46b9b62e
+ 309956199498/RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-30T15:38:01.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-083b1f1e71831ba7e
- i-0d794150f7fd264c4
- /dev/sdf
- attached
- 2017-06-09T15:00:47.000Z
- false
+ /dev/sda1
+
+ snap-a93871dc
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 150
- false
+
+ hvm
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:34 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeSnapshots&Owner.1=self&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080834Z
- X-Amz-Content-Sha256:
- - 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=03ee0872aacc0a1522b680ead4c7ea905581d92e7d0782668f228fc8fd54e8cc
- Content-Length:
- - '56'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:29 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 9101b078-2d9a-4a30-9c42-1630a2ff8930
-
-
- snap-1d177976
- vol-68af0c92
- completed
- 2015-09-30T16:31:07.000Z
-
- 200278856672
- 40
- Created by CreateImage(i-91154731) for ami-3f0e495a from vol-68af0c92
- false
+ ami-4769732e
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2014-04-22T15:09:36.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d353ee0c
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
-
- snap-2187b94f
- vol-68af0c92
- completed
- 2015-09-30T15:47:18.000Z
-
- 200278856672
- 40
- cfme55dnd
- false
-
+ ami-4bf3d731
+ aws-marketplace/CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ available
+ 679593333241
+ 2018-01-12T20:33:32.000Z
+ false
+
+
-
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ x86_64
+ machine
+ aws-marketplace
+ CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ CentOS Linux 7 x86_64 HVM EBS 1801_01
+ ebs
+ /dev/sda1
+
-
- Name
- cfme55dnd
+ /dev/sda1
+
+ snap-0061a4a372352a41e
+ 8
+ false
+ standard
+ false
+
-
+
+ hvm
+ xen
+ false
-
- snap-8b289bec
- vol-8c4f69cb
- completed
- 2015-04-28T17:26:04.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-85b8b979) for ami-320c005a from vol-8c4f69cb
- false
+ ami-4d752124
+ 309956199498/RHEL-5.10_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:50:01.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.10_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d2b5f1d2
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-08810574
- vol-06700f1376f73abee
- completed
- 2017-05-25T18:23:28.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-00ebdb6f40ba522b2) for ami-22470534 from vol-06700f1376f73abee
- false
+ ami-4d7a0f32
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ available
+ 679593333241
+ 2018-06-01T11:25:10.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0bbdb96a310a18f2a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- snap-5210bc21
- vol-3e52bf45
- completed
- 2012-08-21T21:31:58.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-0553707e) for ami-bda014d4 from vol-3e52bf45
- false
-
+ ami-4eaf3758
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-24T15:22:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- redhat-6.3-64-AMI-base
+ /dev/sda1
+
+ snap-04ff5f6baaa0e6941
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- snap-d23a95a1
- vol-22846b59
- completed
- 2012-08-21T23:30:35.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-99a183e2) for ami-63ac180a from vol-22846b59
- false
+ ami-4f53dd26
+ 309956199498/RHEL-5.9_GLD-x86_64-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:12:36.000Z
+ false
+ x86_64
+ machine
+ aki-ecfa0185
+ RHEL-5.9_GLD-x86_64-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-52b6db1e
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- snap-8ec06efd
- vol-24f51a5f
- completed
- 2012-08-22T00:07:26.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-f1634e8a) for ami-edad1984 from vol-24f51a5f
- false
+ ami-4f85ec26
+ 309956199498/RHEL-5.6_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-19T16:36:21.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.6_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ef87c53
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-90bc12e3
- vol-26de315d
- completed
- 2012-08-22T00:20:43.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-eb5d7090) for ami-95ad19fc from vol-26de315d
- false
+ ami-4fe2fa58
+ 309956199498/RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-03T15:56:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05db0f9172aa4584a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-968927e5
- vol-32d13e49
- completed
- 2012-08-22T00:31:58.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-7b2f0200) for ami-3bae1a52 from vol-32d13e49
- false
+ ami-531c4a29
+ 309956199498/RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:33:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05276352df4811187
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-6eee471d
- vol-1421ce6f
- completed
- 2012-08-22T01:43:11.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-b13a17ca) for ami-25a81c4c from vol-1421ce6f
- false
+ ami-5328fe38
+ 309956199498/RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-07-17T02:08:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4a7c1639
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-baf35ac9
- vol-84719eff
- completed
- 2012-08-22T01:57:13.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-0bbe9370) for ami-f3a81c9a from vol-84719eff
- false
+ ami-563ca440
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-25T00:42:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02a781e1733af35eb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-d03941a3
- vol-eb25f490
- completed
- 2012-08-27T19:14:40.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-888366f2) for ami-67bc0b0e from vol-eb25f490
- false
+ ami-5dff9c4a
+ 309956199498/RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-08-25T14:32:56.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c4e89758
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-5ab0eb13
- vol-06e3f7fe
- completed
- 2015-08-24T15:37:26.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-90fdc16f) for ami-57318e3c from vol-06e3f7fe
- false
+ ami-5ebdda37
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ available
+ 309956199498
+ 2013-04-11T02:10:05.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c37bb19a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ hvm
+ xen
-
- snap-249e4c6c
- vol-68af0c92
- completed
- 2015-10-01T15:35:55.000Z
-
- 200278856672
- 40
- Created by CreateImage(i-91154731) for ami-a7185ec2 from vol-68af0c92
- false
+ ami-6178480b
+ 309956199498/RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-19T23:05:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-af3b8ed0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-9dd602d7
- vol-ee3a9614
- completed
- 2015-09-30T16:31:08.000Z
-
- 200278856672
- 50
- Created by CreateImage(i-91154731) for ami-3f0e495a from vol-ee3a9614
- false
+ ami-61b69108
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ available
+ 309956199498
+ 2013-11-20T21:42:28.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0db87915
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
-
- snap-5f38cd0e
- vol-ad4fa2f7
- completed
- 2013-06-22T02:29:08.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-1c237c77) for ami-5769193e from vol-ad4fa2f7
- false
+ ami-61d4ac77
+ 309956199498/RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-05-18T18:23:45.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0bd1c49ec2e5f5faf
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-6054c98a
- vol-ffffffff
- completed
- 2017-01-13T11:31:33.000Z
-
- 200278856672
- 7
- Copied for DestinationAmi ami-7c4aa86a from SourceAmi ami-bda014d4 for SourceSnapshot snap-5210bc21. Task created on 1,484,307,087,854.
- false
+ ami-645bae0c
+ 309956199498/RHEL-7.0_GA_HVM-x86_64-3-Access2
+ available
+ 309956199498
+ 2014-05-28T19:16:58.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_GA_HVM-x86_64-3-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ac125df
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
-
- snap-eafde662
- vol-0fdc4b8ad070c46e5
- completed
- 2017-02-16T15:24:10.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-065dac88ae4c48202) for ami-204c8436 from vol-0fdc4b8ad070c46e5
- false
+ ami-68ee1915
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-01T23:39:39.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b9e559310af1cd36
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-0fb2163b24646b146
- vol-0d8fcf26bf27ab650
- completed
- 2017-01-27T15:51:33.000Z
-
- 200278856672
- 1
-
- false
-
+ ami-6ea1e806
+ 309956199498/RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T22:54:38.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_volume_snap_show
+ /dev/sda1
+
+ snap-6b906be4
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- snap-0dff7febfe74867d0
- vol-0b517fa1
- completed
- 2017-02-08T22:21:55.000Z
-
- 200278856672
- 40
- Testing Snapshot Locations
- false
-
+ ami-6fc25c15
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ available
+ 679593333241
+ 2017-11-30T05:32:04.000Z
+ false
+
-
- Name
- test-snap-01
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0a17e753d76724406
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- snap-09505262c29651f47
- vol-00306cda05dec2db5
- completed
- 2017-09-06T15:25:23.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-099e794cfa830e9be) for ami-bbc9dac0 from vol-00306cda05dec2db5
- false
+ ami-7305bd18
+ 309956199498/RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2015-08-27T11:36:17.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f7944281
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-04b8acc66d50b9a7b
- vol-01ff7e549707b8e54
- completed
- 2017-09-04T15:01:01.000Z
-
- 200278856672
- 1
-
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
+ ami-7368011a
+ 309956199498/RHEL-6.0_GA-i386-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:44:20.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.0_GA-i386-6-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_test_111_snapshot
+ /dev/sda1
+
+ snap-4119d01c
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-03d5e23022317b3a5
- vol-0bae2310332a3a1b5
- completed
- 2017-09-04T14:41:23.000Z
-
- 200278856672
- 10
-
- false
-
+ ami-7375211a
+ 309956199498/RHEL-5.10-GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:48:28.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.10-GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_test_111_1
+ /dev/sda1
+
+ snap-2ea9ed2e
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-0e04c9c244477559b
- vol-ffffffff
- completed
- 2017-07-03T15:40:06.000Z
-
- 200278856672
- 2
- [Copied snap-034acb0cf077bc06c from us-east-1]
- false
+ ami-73aac31a
+ 309956199498/RHEL-5.7_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:09:06.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.7_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ddfc5580
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-034acb0cf077bc06c
- vol-0a53d5f020485f470
- completed
- 2017-07-03T15:39:49.000Z
-
- 200278856672
- 2
-
- false
-
+ ami-74b17c1c
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2
+ available
+ 309956199498
+ 2014-07-14T21:53:46.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- snapshot-bronagh-volume-test
+ /dev/sda1
+
+ snap-98227e33
+ 10
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-0cbf55eb6acc05486
- vol-0395fe9f0370fabdf
- completed
- 2017-06-30T16:01:21.000Z
-
- 200278856672
- 3
- Testing snapshot event
- false
-
+ ami-766ad81e
+ 309956199498/RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T12:58:23.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- dberger-test-snapshot
+ /dev/sda1
+
+ snap-1405afb3
+ 6
+ true
+ gp2
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-0a5070b29f3ddcd92
- vol-ffffffff
- completed
- 2017-05-18T14:44:04.000Z
-
- 200278856672
- 10
- Copied for DestinationAmi ami-5e86fe48 from SourceAmi ami-464a2c26 for SourceSnapshot snap-0d6ff47e657599428. Task created on 1,495,118,641,744.
- false
+ ami-78175611
+ 309956199498/RHEL-6.4_GA-i386-10-Access2
+ available
+ 309956199498
+ 2013-08-13T19:30:50.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-49bc491e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-05ef19f30ffe6ceaa
- vol-ffffffff
- completed
- 2017-05-18T14:22:14.000Z
-
- 200278856672
- 10
- Copied for DestinationAmi ami-7d85fd6b from SourceAmi ami-224c2a42 for SourceSnapshot snap-087bd8461c5cd52a0. Task created on 1,495,117,314,923.
- false
+ ami-78400710
+ 309956199498/RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-29T01:07:35.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2d5685a0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-0001b68fed820fb79
- vol-67606d2d
- completed
- 2017-04-26T15:30:37.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-67606d2d
- false
+ ami-79adc410
+ 309956199498/RHEL-5.8_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:44:18.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.8_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-fe3990a3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-0f1eb18bc955eb28a
- vol-0e4c86c12b28cead8
- completed
- 2017-04-26T15:30:37.000Z
-
- 200278856672
- 1
- Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-0e4c86c12b28cead8
- false
+ ami-7a96b801
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:37:28.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0822784885cd20aff
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-0c78ca2afaa671102
- vol-0acad09812d803c09
- completed
- 2017-03-17T07:24:40.000Z
-
- 200278856672
- 1
- EmsRefreshSpecSnapshotOfVpc1Desc
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
+ ami-7adcf900
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ available
+ 679593333241
+ 2018-01-12T06:51:53.000Z
+ false
+
-
- Name
- EmsRefreshSpecSnapshotOfVpc1
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-03fbeeb66a6618d09
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- snap-055095f47fab5e749
- vol-0e1613cacf4688009
- completed
- 2017-03-17T07:21:12.000Z
-
- 200278856672
- 1
- EmsRefreshSpecSnapshotDesc
- false
-
+ ami-7b0c6312
+ 309956199498/RHEL-6.4_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:29.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecSnapshot
+ /dev/sda1
+
+ snap-03a50c59
+ 7
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:36 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeInstances&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080837Z
- X-Amz-Content-Sha256:
- - 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f959f581e853bec583ab5859c8cae05cb82a40326c72d7f116ede1e6fe220151
- Content-Length:
- - '43'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:32 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 885d6d30-8229-401c-ba4f-a8e9e4e773b4
-
-
- r-06329810cfd223fe6
- 200278856672
-
-
-
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
-
-
16
- running
-
- ip-10-0-1-85.ec2.internal
-
-
- MIQ_SSA
- 0
-
- t2.micro
- 2017-08-29T19:14:36.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
- true
-
- -
- sg-38511448
- launch-wizard-47
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-000f77902b1a16428
- attached
- 2017-08-29T19:14:36.000Z
- true
-
-
-
- hvm
- ptDPo1504034075390
-
- -
- hsong-ssa
-
-
-
- xen
-
- -
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
- true
-
-
-
- sg-38511448
- launch-wizard-47
-
-
-
- eni-attach-075e6227
- 0
- attached
- 2017-08-29T19:14:36.000Z
- true
-
-
- -
- 10.0.1.85
- true
-
-
-
-
-
- false
+ ami-7dea2614
+ 309956199498/RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ available
+ 309956199498
+ 2011-10-10T23:01:40.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-2ec9bc4d
+ 6
+ true
+ standard
+ false
+
-
-
- -
- r-003249dcbdd91448e
- 200278856672
-
-
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-87.ec2.internal
-
- User initiated (2017-06-07 16:32:25 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-22T20:35:56.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
- true
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0385dfce3061ff5a9
- attached
- 2017-05-22T20:35:57.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0ed526ebed417656f
- attached
- 2017-05-22T20:35:57.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy_20170522_v2
-
-
- xen
-
- -
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
- true
-
-
-
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-ff35f0d1
- 0
- attached
- 2017-05-22T20:35:56.000Z
- true
-
-
- -
- 10.0.1.87
- true
-
-
-
-
-
- false
+ /dev/sdf
+ ephemeral0
-
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-0e65ce29775f6d8fc
- 200278856672
-
-
+ ami-7f0c6316
+ 309956199498/RHEL-6.4_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
-
- i-0d794150f7fd264c4
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-2-0-191.ec2.internal
-
- User initiated (2017-06-26 19:23:18 GMT)
- 0
-
- t2.small
- 2017-06-09T15:00:46.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.191
- true
-
- -
- sg-4cc30d32
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0290849f78dccf167
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-083b1f1e71831ba7e
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy0002
-
-
- xen
-
- -
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
- true
-
-
-
- sg-4cc30d32
- default
-
-
-
- eni-attach-877ba01f
- 0
- attached
- 2017-06-09T15:00:46.000Z
- true
-
-
- -
- 10.2.0.191
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-7fa40d25
+ 7
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-057ea81c4767b9a2a
- 200278856672
-
-
+ ami-7f6af100
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T12:44:23.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-02975d4eb8e53bafd
- ami-b63769a1
-
-
16
- running
-
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
-
- MIQ_SSA
- 0
-
- t2.micro
- 2017-09-25T18:21:15.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0f151bad0c041c2db
- attached
- 2017-08-10T19:10:06.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-f902c21c
- 0
- attached
- 2017-08-10T19:10:05.000Z
- true
-
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- -
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-057d3a00fab9a4150
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-02b7af2df00a8de50
- 200278856672
-
-
+ ami-81122afb
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ available
+ 679593333241
+ 2018-01-29T11:06:15.000Z
+ false
+
-
- i-0150ac66c83e0eae8
- ami-6869aa05
-
-
16
- running
-
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-02T19:39:36.000Z
-
- us-east-1c
-
- default
-
-
- enabled
-
- subnet-de2363bb
- vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
- true
-
- -
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-02e5c41d12060ab3b
- attached
- 2017-05-02T19:39:37.000Z
- true
-
-
-
- hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
-
- -
- aws:cloudformation:logical-id
- WebServerFleet
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Network
- Public
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
-
- xen
-
- -
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
-
- 200278856672
- in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
- true
-
-
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
-
-
-
- eni-attach-3a6592a2
- 0
- attached
- 2017-05-02T19:39:36.000Z
- true
-
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
-
- -
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
- true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
-
-
-
-
-
- false
- true
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
- 226008221399
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-094d0e7007d8b3169
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- r-083cc6d943a6cc2e8
- 200278856672
-
-
-
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
-
-
16
- running
-
- ip-10-0-1-78.ec2.internal
-
-
- bsorota
- 0
-
- t2.micro
- 2017-09-13T14:58:47.000Z
-
- us-east-1e
-
- default
-
-
- enabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
- true
-
- -
- sg-9ff8ace3
- launch-wizard-39
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-06c7662068fe81b92
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
-
- hvm
- IIQTn1487263246120
-
- -
- foo
- bar
-
- -
- Name
- bronagh-events-test
-
- -
- owner
- bronaghs
-
-
- xen
-
- -
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
- true
-
-
-
- sg-9ff8ace3
- launch-wizard-39
-
-
-
- eni-attach-45f9a86f
- 0
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- -
- 10.0.1.78
- true
-
-
-
-
-
- false
+ ami-81573ee8
+ 309956199498/RHEL-5.7_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T21:56:07.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.7_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-7a0aa627
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-063763c7bd0616325
- 200278856672
-
+ ami-817bf7fe
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ available
+ 679593333241
+ 2018-05-09T17:44:39.000Z
+ false
+
-
- sg-28999abf
- launch-wizard-12
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-04-23
+ ebs
+ /dev/sda1
+
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
-
-
16
- running
-
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
-
- ladas_test
- 0
-
- t1.micro
- 2017-05-05T14:04:30.000Z
-
- us-east-1d
-
- default
-
-
- disabled
-
- 10.233.77.119
- 54.81.241.87
-
- -
- sg-28999abf
- launch-wizard-12
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-02a26016b0b7a9450
- attached
- 2017-05-05T14:04:33.000Z
- true
-
-
-
- paravirtual
- qWVKg1493993070283
- xen
-
- false
+ /dev/sda1
+
+ snap-0399eb57c40c5f605
+ 8
+ true
+ gp2
+ false
+
-
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- r-38bafd9b
- 200278856672
-
-
+ ami-836c05ea
+ 309956199498/RHEL-6.2_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:20:34.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.2_GA-x86_64-4-Access2
+ ebs
+ /dev/sda1
+
-
- i-fb694e66
- ami-5769193e
-
-
16
- running
-
- ip-10-0-0-109.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-06T21:07:48.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-3bc4d1ea
- attached
- 2016-05-10T20:56:38.000Z
- true
-
-
-
- paravirtual
- uBCLe1462913797292
-
- -
- Name
- VMstate-8
-
- -
- owner
- UNKNOWN
-
-
- 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.163.162.32
-
- amazon
-
-
- -
- 10.0.0.109
- true
-
- 54.163.162.32
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-d7854e8a
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-0ce8dea404618f3a5
- 200278856672
-
-
+ ami-89756fe0
+ 309956199498/RHEL-6.5_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2014-04-22T14:32:02.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-7-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-03d706b95aa8b12ce
- ami-271e7c31
-
-
80
- stopped
-
- ip-10-0-1-229.ec2.internal
-
- User initiated (2017-06-20 17:19:50 GMT)
- james
- 0
-
- t2.medium
- 2017-06-16T20:54:01.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
- true
-
- -
- sg-000ff571
- launch-wizard-46
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-096d40746df01e27b
- attached
- 2017-06-16T20:54:01.000Z
- false
-
-
-
- hvm
- DpMDq1497646440165
-
- -
- Name
- Ansible Tower Trial Instance
-
-
- xen
-
- -
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
- true
-
-
-
- sg-000ff571
- launch-wizard-46
-
-
-
- eni-attach-4735d966
- 0
- attached
- 2017-06-16T20:54:01.000Z
- true
-
-
- -
- 10.0.1.229
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-c9ff4216
+ 10
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-02d2f89dd4a54f2de
- 200278856672
-
-
+ ami-8b52dce2
+ 309956199498/RHEL-5.9_GLD-i386-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:04:19.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.9_GLD-i386-1-Access2
+ ebs
+ /dev/sda1
+
-
- i-013f45a83fd938928
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-2-0-15.ec2.internal
-
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t2.micro
- 2017-06-07T15:59:47.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
- true
-
- -
- sg-4cc30d32
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy0001
-
-
- xen
-
- -
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
- true
-
-
-
- sg-4cc30d32
- default
-
-
-
- eni-attach-63ae77fb
- 0
- attached
- 2017-06-07T15:59:47.000Z
- true
-
-
- -
- 10.2.0.15
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-a04b26ec
+ 6
+ true
+ standard
+ false
+
-
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-04c0352eb6024667f
- 200278856672
-
-
+ ami-8cbd6de4
+ 309956199498/RHEL-5.11_Beta-i386-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:56.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_Beta-i386-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-091fe7ccd76ddac3b
- ami-0092b117
-
-
16
- running
-
- ip-10-0-1-239.ec2.internal
-
-
- bmclaugh
- 0
-
- t2.micro
- 2017-08-24T15:40:38.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
- true
-
- -
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-04fc5431c4edd9bb6
- attached
- 2017-05-16T18:19:22.000Z
- true
-
-
-
- hvm
- HqLiY1494958760362
-
- -
- Name
- bmclaugh_console_test
-
-
- xen
-
- -
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
-
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-88392ea7
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- -
- 10.0.0.129
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-bd864512
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8d0bdae4
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2012-01-31T16:22:44.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e6b3ab82
+ 6
+ true
+ standard
+ false
+
-
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-1842f370
- 200278856672
-
-
+ ami-8e502c98
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:58:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-8b5739f2
- ami-5769193e
-
-
16
- running
-
- ip-10-0-0-254.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-13T16:07:19.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-67606d2d
- attached
- 2013-09-23T20:11:57.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
-
- paravirtual
- aPCzL1379967112359
-
- -
- Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- -
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-05fac66f
- 0
- attached
- 2013-09-23T20:11:52.000Z
- true
-
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.254
- true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-09a24861343c92e4a
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-0c0e56163429b9a46
- 200278856672
-
-
+ ami-8e5a67e4
+ 309956199498/RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-25T00:30:40.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0bca58e6e540ddc39
- ami-6869aa05
-
-
16
- running
-
- ip-10-2-0-239.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-03T10:47:06.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
- true
-
- -
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-0628a6ce987d4cb6e
- attached
- 2017-05-03T10:47:07.000Z
- true
-
-
-
- hvm
- EmsRe-WebSe-1229KQXQO3HUK
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- WebServerInstance
-
-
- xen
-
- -
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
- true
-
-
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
-
- eni-attach-cbd22453
- 0
- attached
- 2017-05-03T10:47:06.000Z
- true
-
-
- 34.202.178.10
-
- 200278856672
-
-
- -
- 10.2.0.239
- true
-
- 34.202.178.10
-
- 200278856672
-
-
-
-
-
-
- false
- true
+ /dev/sda1
+
+ snap-10fb9f02
+ 5
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-051854d34993ed969
- 200278856672
-
-
+ ami-90a8bbfa
+ 309956199498/RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-04-13T01:07:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0347d4075310c21e6
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-167.ec2.internal
-
- User initiated (2017-03-22 18:08:49 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:39:50.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21001
-
-
- xen
-
- -
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-8a10e2a6
- 0
- attached
- 2017-03-21T19:39:50.000Z
- true
-
-
- -
- 10.0.1.167
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-fcafc1e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-052a9ecb9d478b8d6
- 200278856672
-
-
-
-
- i-099e794cfa830e9be
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-4.ec2.internal
-
-
- ladas
- 0
-
- t2.micro
- 2017-09-04T13:26:00.000Z
-
- us-east-1e
-
- default
-
-
- enabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
- true
-
- -
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-00306cda05dec2db5
- attached
- 2017-09-04T13:26:01.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- ladas_test112
-
-
- xen
-
- -
- eni-6933e6c9
- subnet-f849ff96
- vpc-ff49ff91
- test
- 200278856672
- in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
- true
-
-
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
-
- eni-attach-de56932b
- 0
- attached
- 2017-09-04T13:26:00.000Z
- true
-
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.4
- true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
-
-
-
-
-
- false
+ ami-936a03fa
+ 309956199498/RHEL-6.1_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:31:04.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.1_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-6bc60e36
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-0330333bbdf03e149
- 200278856672
-
-
+ ami-93bdadfa
+ 309956199498/RHEL-6.5_GA-i386-1-Access2
+ available
+ 309956199498
+ 2014-04-02T17:52:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-1-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-236.ec2.internal
-
-
- ladas
- 0
-
- t2.micro
- 2017-09-07T12:23:45.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0ac7a66512bf0d20c
- attached
- 2017-09-07T12:23:46.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- ladas_test_40
-
-
- xen
-
- -
- eni-b9cc7f19
- subnet-f849ff96
- vpc-ff49ff91
-
- 200278856672
- in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0b3482fe
- 0
- attached
- 2017-09-07T12:23:45.000Z
- true
-
-
- 52.70.78.137
-
- 200278856672
-
-
- -
- 10.0.0.236
- true
-
- 52.70.78.137
-
- 200278856672
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-29be68f3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-03174ab388e42d485
- 200278856672
-
-
+ ami-95005f82
+ 309956199498/RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-25T21:19:31.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
-
-
80
- stopped
-
- ip-10-0-1-70.ec2.internal
-
- User initiated (2017-05-02 13:12:28 GMT)
- 0
-
- t2.medium
- 2017-04-12T18:17:01.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0816f373502e8db24
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_take_two002
-
-
- xen
-
- -
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-59c6f675
- 0
- attached
- 2017-04-12T18:17:01.000Z
- true
-
-
- -
- 10.0.1.70
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-3d4278c4
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-01228013207b85dad
- 200278856672
-
-
+ ami-950e95ea
+ 309956199498/RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T15:08:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-08c033357b433ea2c
- ami-0b33d91d
-
-
16
- running
-
- ip-10-0-1-155.ec2.internal
-
-
- bd
- 0
-
- t2.nano
- 2017-09-05T13:28:00.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
- true
-
- -
- sg-65d59519
- launch-wizard-37
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-01aca96e22103f767
- attached
- 2017-02-14T16:18:29.000Z
- true
-
-
-
- hvm
- hPmBd1487089108162
-
- -
- Name
- mhild
-
-
- xen
-
- -
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
- true
-
-
-
- sg-65d59519
- launch-wizard-37
-
-
-
- eni-attach-2d92e207
- 0
- attached
- 2017-02-14T16:18:28.000Z
- true
-
-
- -
- 10.0.1.155
- true
-
-
-
-
-
- false
- true
+ /dev/sda1
+
+ snap-0b24b01fd1db26eeb
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-0e0f81bfeea774100
- 200278856672
-
-
+ ami-9819ad8e
+ 309956199498/RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-03-20T03:38:51.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0951b95d6db76519d
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-105.ec2.internal
-
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-08-29T15:52:11.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.105
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0ea3efc6f99654381
- attached
- 2017-07-26T15:15:30.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-4451b1a7
- 0
- attached
- 2017-07-26T15:15:29.000Z
- true
-
-
- -
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-0898973d25521cccd
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-18ca6cb0
- 200278856672
-
+ ami-990b64f0
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2013-05-10T00:09:00.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ ebs
+ /dev/sda1
+
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
+ /dev/sda1
+
+ snap-b1278eeb
+ 7
+ true
+ standard
+ false
+
+
+ hvm
+ xen
+
+ -
+ ami-9ceabde6
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T01:55:41.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ /dev/sda1
+
+ snap-0a1cfc902770c514d
+ 10
+ true
+ gp2
+ false
+
-
-
- -
- i-680071e9
- ami-5769193e
-
-
16
- running
-
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-07T14:42:55.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.91.143.248
- 54.221.202.53
-
- -
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-b6fa656a
- attached
- 2016-01-07T19:58:39.000Z
- true
-
-
-
- paravirtual
- JwNdr1452196715903
-
- -
- owner
- UNKNOWN
-
- -
- Name
- EmsRefreshSpec-PoweredOn-Basic3
-
-
- xen
-
- false
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9d2f098b
+ 309956199498/RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:15:03.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ee220de9f1633620
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-06a48602fb689eb1b
- 200278856672
-
+ ami-a05415c9
+ 309956199498/RHEL-6.4_GA-x86_64-10-Access2
+ available
+ 309956199498
+ 2013-08-14T13:38:22.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-10-Access2
+ ebs
+ /dev/sda1
+
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
+ /dev/sda1
+
+ snap-46dc1211
+ 6
+ true
+ standard
+ false
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a090b8db
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ available
+ 679593333241
+ 2017-08-10T00:09:12.000Z
+ false
+
-
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ebs
+ /dev/sda1
+
-
- i-047886b9fd2397967
- ami-5769193e
-
-
80
- stopped
-
-
-
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-26T07:48:52.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
-
- -
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0c2aaf810c8925376
- attached
- 2017-09-26T07:48:52.000Z
- true
-
-
-
- paravirtual
- lGtNQ1506412131645
-
- -
- Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- false
+ /dev/sda1
+
+ snap-0520447773371dd49
+ 8
+ true
+ gp2
+ false
+
-
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- r-0cac97e7f6d09c34a
- 200278856672
-
-
+ ami-a1563fc8
+ 309956199498/RHEL-5.8_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T22:28:38.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.8_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- i-0fca61ededa522f1a
- ami-63ac180a
-
-
16
- running
-
- ip-10-0-0-36.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-05-02T19:39:49.000Z
-
- us-east-1e
-
- default
-
- aki-36ed075f
-
- enabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- i386
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-097f300050f495d06
- attached
- 2017-05-02T19:39:50.000Z
- true
-
-
-
- paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
-
- -
- aws:autoscaling:groupName
- default-scaling-group
-
-
- xen
-
- -
- eni-fe24b408
- subnet-f849ff96
- vpc-ff49ff91
-
- 200278856672
- in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0e5ec721
- 0
- attached
- 2017-05-02T19:39:49.000Z
- true
-
-
- 54.145.134.133
-
- amazon
-
-
- -
- 10.0.0.36
- true
-
- 54.145.134.133
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-f48926a9
+ 6
+ true
+ standard
+ false
+
-
- 226008221399
+
+ paravirtual
+ xen
-
- r-045f6da0fe48accc5
- 200278856672
-
-
+ ami-a15a33c8
+ 309956199498/RHEL-6.3_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-18T14:27:58.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.3_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-113.ec2.internal
-
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-07-17T21:02:54.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.113
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0657f371b97c0f147
- attached
- 2017-07-17T19:21:46.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-cd97a82d
- 0
- attached
- 2017-07-17T19:21:45.000Z
- true
-
-
- -
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-3bf75166
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-001ade0887ad9089f
- 200278856672
-
+ ami-a16eacc8
+ 309956199498/RHEL-6.0-Starter-EBS-i386-15-Access2
+ available
+ 309956199498
+ 2011-09-23T19:21:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.0-Starter-EBS-i386-15-Access2
+ ebs
+ /dev/sda1
+
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ /dev/sda1
+
+ snap-54fb0b37
+ 6
+ true
+ standard
+ false
+
-
-
-
- i-025623c4c4e4f84a0
- ami-2a69aa47
-
-
16
- running
-
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-08-31T00:02:52.000Z
-
- us-east-1d
-
- default
-
- aki-919dcaf8
-
- enabled
-
- 10.51.177.218
- 54.224.115.150
-
- -
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-04eb2f294c5f9f7eb
- attached
- 2017-08-31T00:02:52.000Z
- true
-
-
-
- paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- aws:cloudformation:logical-id
- WebServerGroup
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
-
-
- xen
-
- false
+ /dev/sdf
+ ephemeral0
-
- 226008221399
-
- -
- r-06c8896ff6d4d039d
- 200278856672
-
-
-
- i-0b1ec6330e0180f75
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-103.ec2.internal
-
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-09-23T18:24:21.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.103
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0d805ae0a434871aa
- attached
- 2017-09-23T18:24:22.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-aa928893
- 0
- attached
- 2017-09-23T18:24:21.000Z
- true
-
-
- -
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a33668b4
+ 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T22:32:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b9a222c1
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-e08e325e
- 200278856672
-
-
+ ami-a45cf6cc
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:55:37.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-c72af2f6
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-122.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.micro
- 2017-09-26T07:43:04.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.122
- 54.208.71.4
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-da190f08
- attached
- 2016-08-30T07:17:59.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0acad09812d803c09
- attached
- 2017-03-17T07:25:12.000Z
- false
-
-
-
- hvm
- BWJjo1472541478233
-
- -
- Name
- EmsRefreshSpec-PoweredOn-VPC1
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- -
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-455ec9ed
- 0
- attached
- 2016-08-30T07:17:58.000Z
- true
-
-
- 54.208.71.4
-
- amazon
-
-
- -
- 10.0.0.122
- true
-
- 54.208.71.4
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-efcdd344
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
+ xen
-
- r-00811be44fc3b2c8f
- 200278856672
-
-
+ ami-a5d21ecc
+ 309956199498/RHEL-5.6-Starter-EBS-i386-13-Access2
+ available
+ 309956199498
+ 2011-10-10T16:11:55.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.6-Starter-EBS-i386-13-Access2
+ ebs
+ /dev/sda1
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
-
-
80
- stopped
-
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
- 0
-
- t2.micro
- 2017-03-13T12:10:54.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
-
- -
- sg-82c99dfe
- launch-wizard-38
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0e251f8b387b2d87d
- attached
- 2017-02-16T16:28:16.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
-
- hvm
- Wewzf1487262494337
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- owner
- Ladas
-
- -
- Name
- ladas_test_5
-
-
- xen
-
- -
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
- attached
- 2017-02-16T16:28:15.000Z
- true
-
-
- -
- 10.0.1.86
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-76630915
+ 6
+ true
+ standard
+ false
+
-
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-08595d55d4aa901a4
- 200278856672
-
-
+ ami-a82204be
+ 309956199498/RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:04:05.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0c1542ba946875280
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-90.ec2.internal
-
- User initiated (2017-03-23 19:13:13 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:41:22.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-035c47f5f5190ddc8
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21003
-
-
- xen
-
- -
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
- -
- 10.0.1.90
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-06cad1de61450c3f0
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-01136b3a8909eb8ef
- 200278856672
-
-
+ ami-a93531c3
+ 309956199498/RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-03-10T18:46:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-035fa3affa815d81d
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-230.ec2.internal
-
- User initiated (2017-03-22 19:02:26 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:39:52.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-059f5f4b2a5663e65
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21002
-
-
- xen
-
- -
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-9413e1b8
- 0
- attached
- 2017-03-21T19:39:52.000Z
- true
-
-
- -
- 10.0.1.230
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-d585efd0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-ac5ff5c4
+ 309956199498/RHEL-5.10_GA-i386-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:43:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.10_GA-i386-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b36b7318
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-ac910ed6
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-11-29T19:11:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-023ae83387e571ca7
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-acac51c4
+ 309956199498/RHEL-6.5_GA-i386-6-Access2
+ available
+ 309956199498
+ 2014-06-11T10:45:09.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-i386-6-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a0a94077
+ 10
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-05ad2451777d582ec
- 200278856672
-
+ ami-af5c35c6
+ 309956199498/RHEL-6.3_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-18T15:25:25.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.3_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
-
- sg-347f9b5d
- default
+ /dev/sda1
+
+ snap-1b08ae46
+ 6
+ true
+ standard
+ false
+
-
-
+
+ paravirtual
+ xen
+
+ -
+ ami-b1e0e7a6
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-12-06T19:09:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-02c925747e07a8118
- ami-5769193e
-
-
16
- running
-
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
-
- 0
-
- m3.medium
- 2017-07-24T19:18:26.000Z
-
- us-east-1d
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.102.130.251
- 54.162.181.195
-
- -
- sg-347f9b5d
- default
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-05eb880e2e337b3f1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
-
- paravirtual
-
-
- -
- Name
- testtina123456
-
-
- xen
-
- false
+ /dev/sda1
+
+ snap-c4464775
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:40 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=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080840Z
- X-Amz-Content-Sha256:
- - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=831490e68b439887ef6c4f0f424dc69f0ddd2aaf5b668c9d851ae7c47f59d8ec
- 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:
- - Tue, 26 Sep 2017 08:08:34 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 04e0c7e0-00c9-42e3-9387-fca0eaa47955
-
-
- ami-098d7f1f
- 200278856672/lads_image_from_volume
+ ami-b214e6da
+ 309956199498/RHEL-6.5_GA_HVM-x86_64-6-Access2
available
- 200278856672
- 2017-01-27T15:52:29.000Z
+ 309956199498
+ 2014-06-10T19:16:46.000Z
false
x86_64
machine
- lads_image_from_volume
-
+ RHEL-6.5_GA_HVM-x86_64-6-Access2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0fb2163b24646b146
- 1
+ snap-3baca6ef
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-b2bd6dda
+ 309956199498/RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4f8043e0
+ 10
true
gp2
false
@@ -26263,99 +38885,197 @@ http_interactions:
xen
-
- ami-1b3cc30d
- jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ ami-b35925a5
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
available
- 200278856672
- 2017-01-30T22:12:24.000Z
+ 309956199498
+ 2017-05-15T14:55:09.000Z
false
x86_64
machine
- aki-825ea7eb
- jerryk_instance_store_ami01
- instance-store
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-0fc148ef3438d1e04
+ 10
+ true
+ gp2
+ false
+
hvm
xen
-
- ami-204c8436
- 200278856672/Ladas_test_5_image
+ ami-b4a21ddc
+ 309956199498/RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
available
- 200278856672
- 2017-02-16T15:23:41.000Z
+ 309956199498
+ 2014-10-10T13:34:45.000Z
false
- i386
+ x86_64
machine
- aki-36ed075f
- Ladas_test_5_image
- testing snapshot events
+ RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-eafde662
- 7
+ snap-bbafa91c
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+
+ -
+ ami-b62589c9
+ 309956199498/RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-04-19T18:55:57.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
- ephemeral0
+ /dev/sda1
+
+ snap-02109fa20ec701636
+ 10
+ true
+ gp2
+ false
+
+
+ hvm
+ xen
+
+ -
+ ami-bb8c62d0
+ 309956199498/RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2015-06-04T17:30:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdg
- ephemeral1
+ /dev/sda1
+
+ snap-8d1009f8
+ 10
+ true
+ gp2
+ false
+
- paravirtual
+ hvm
xen
-
- ami-20e90e49
- jf-test-copy/jf-test-copy.img.manifest.xml
+ ami-bd8daeaa
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2016-11-08T17:14:19.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a4c8f515
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-be6a98d6
+ 309956199498/RHEL-6.5_GA-x86_64-9-Access2
+ available
+ 309956199498
+ 2014-06-11T03:08:30.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-x86_64-9-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-97627d43
+ 10
+ true
+ standard
+ false
+
+
+
paravirtual
xen
-
- ami-22470534
- 200278856672/ssa-agent-0525
+ ami-befed2d6
+ 309956199498/RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-25T18:23:14.000Z
+ 309956199498
+ 2015-03-19T21:05:30.000Z
false
x86_64
machine
simple
- ssa-agent-0525
- working version 1
+ RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-08810574
+ snap-bd88c7d5
10
true
gp2
@@ -26367,58 +39087,81 @@ http_interactions:
xen
-
- ami-25a81c4c
- 200278856672/suse-11-server-64
+ ami-c35767a9
+ 309956199498/RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
available
- 200278856672
- 2012-08-22T01:42:54.000Z
+ 309956199498
+ 2016-02-20T03:54:06.000Z
false
x86_64
machine
- aki-825ea7eb
- suse-11-server-64
-
+ simple
+ RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-6eee471d
+ snap-0b675a0f
10
true
- standard
+ gp2
false
- paravirtual
-
+ hvm
+ xen
+
+ -
+ ami-c56c05ac
+ 309956199498/RHEL-6.2_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:12:17.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.2_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- suse-11-server-64
+ /dev/sda1
+
+ snap-be7cb4e3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-320c005a
- 200278856672/t2 rhel 7.1
+ ami-c5a094bf
+ 309956199498/RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-04-28T17:25:53.000Z
+ 309956199498
+ 2018-01-22T17:34:06.000Z
false
x86_64
machine
- t2 rhel 7.1
- rhel
+ simple
+ RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8b289bec
+ snap-0fba1838228dc629f
10
true
gp2
@@ -26427,202 +39170,365 @@ http_interactions:
hvm
-
+ xen
+ true
+
+ -
+ ami-c63d82ae
+ 309956199498/RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-10T14:57:48.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- mkanoor_t2_rhel
+ /dev/sda1
+
+ snap-4d7a7aea
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
xen
-
- ami-3bae1a52
- 200278856672/ubuntu-11.10-server-32
+ ami-c787eeae
+ 309956199498/RHEL-5.5_GA-i386-4-Access2
available
- 200278856672
- 2012-08-22T00:31:49.000Z
+ 309956199498
+ 2013-05-19T18:39:37.000Z
false
i386
machine
- aki-805ea7e9
- ubuntu-11.10-server-32
-
+ aki-68ceaf01
+ RHEL-5.5_GA-i386-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-968927e5
- 8
- false
+ snap-0fdb5d52
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-cbd306a2
+ 309956199498/RHEL-6.2-Starter-EBS-i386-4-Access2
+ available
+ 309956199498
+ 2011-12-19T17:51:18.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.2-Starter-EBS-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-75094510
+ 6
+ true
standard
false
-
- /dev/sda2
+ /dev/sdf
ephemeral0
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
-
+ xen
+
+ -
+ ami-cd5b32a4
+ 309956199498/RHEL-5.9_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T13:21:46.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.9_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-11.10-server-32
+ /dev/sda1
+
+ snap-04f75059
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-3f0e495a
- 200278856672/CFME5.5.0
+ ami-cdc96aa6
+ 309956199498/RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-09-30T16:31:07.000Z
+ 309956199498
+ 2015-08-04T17:23:22.000Z
false
x86_64
machine
- CFME5.5.0
- Red Hat CloudForms 5.5 AMI
+ simple
+ RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-1d177976
- 40
- false
+ snap-91688ce5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-cfd31fa6
+ 309956199498/RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ available
+ 309956199498
+ 2011-10-10T17:09:26.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-32a7cd51
+ 6
+ true
standard
false
-
/dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-d2d06aba
+ 309956199498/RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-10-17T20:41:16.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
- snap-9dd602d7
- 50
- false
+ snap-110804b7
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-d2d369ba
+ 309956199498/RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-10-17T20:29:05.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-de444878
+ 10
+ true
gp2
false
hvm
-
- -
- Name
- cfme-5.5
-
-
xen
-
- ami-45c9df3e
- 200278856672/ladas_test_111_snapshot_image_sdd
+ ami-d97120a3
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:05:02.000Z
+ 309956199498
+ 2018-01-04T21:29:11.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image_sdd
-
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
- /dev/sdd
+ /dev/sda1
-
- /dev/sdd
+ /dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-056379444619d757b
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
+ true
-
- ami-57318e3c
- 200278856672/mkanoor_testing_vpc
+ ami-d9ed21b0
+ 309956199498/RHEL-5.7-Starter-EBS-x86_64-3-Access2
available
- 200278856672
- 2015-08-24T15:36:54.000Z
+ 309956199498
+ 2011-10-10T19:01:04.000Z
false
x86_64
machine
- aki-1eceaf77
- mkanoor_testing_vpc
- mkanoor_testing_vpc
+ aki-08ed0761
+ RHEL-5.7-Starter-EBS-x86_64-3-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5ab0eb13
- 7
+ snap-a6dfb5c5
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
xen
-
- ami-5769193e
- 200278856672/EmsRefreshSpec-Image
+ ami-dbb45dcd
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
available
- 200278856672
- 2013-06-22T02:28:44.000Z
+ 309956199498
+ 2017-01-17T19:59:58.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-Image
- EmsRefreshSpec-Image
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-5f38cd0e
- 7
+ snap-07e0629666eb37658
+ 10
true
- standard
+ gp2
false
- paravirtual
+ hvm
xen
-
- ami-5e86fe48
- 200278856672/ssa-agent-hsong
+ ami-def37ea1
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:44:02.000Z
+ 309956199498
+ 2018-05-08T21:48:36.000Z
false
x86_64
machine
simple
- ssa-agent-hsong
- [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0a5070b29f3ddcd92
+ snap-0b8a46e49a52d14ee
10
true
gp2
@@ -26632,153 +39538,144 @@ http_interactions:
hvm
xen
+ true
-
- ami-63026775
- 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ ami-e2c45a98
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
available
- 200278856672
- 2017-04-26T15:30:36.000Z
+ 679593333241
+ 2017-11-30T05:31:28.000Z
false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-PoweredOn-VPC_snapshot
- EmsRefreshSpec-PoweredOn-VPC_description
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
ebs
/dev/sda1
-
/dev/sda1
- snap-0001b68fed820fb79
- 7
+ snap-0f90a5c0b7f575bf8
+ 8
true
- standard
+ gp2
false
-
- /dev/sdf
-
- snap-0f1eb18bc955eb28a
- 1
- true
- gp2
- false
-
+ /dev/sdb
+ ephemeral0
paravirtual
xen
+ false
-
- ami-63ac180a
- 200278856672/redhat-6.3-32
+ ami-e97bf796
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
available
- 200278856672
- 2012-08-21T23:30:21.000Z
+ 679593333241
+ 2018-05-09T17:38:24.000Z
false
- i386
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
machine
- aki-36ed075f
- redhat-6.3-32
-
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
ebs
/dev/sda1
-
/dev/sda1
- snap-d23a95a1
- 7
+ snap-05db1cc1fdb7d5484
+ 8
true
- standard
+ gp2
false
-
- /dev/sdf
+ /dev/sdb
ephemeral0
- -
- /dev/sdg
- ephemeral1
-
paravirtual
-
- -
- Name
- redhat-6.3-32
-
-
xen
+ false
-
- ami-67bc0b0e
- 200278856672/miq-extract-base-ubuntu-12.04
+ ami-e984ed80
+ 309956199498/RHEL-5.5_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-27T19:14:39.000Z
+ 309956199498
+ 2013-05-19T17:59:35.000Z
false
x86_64
machine
- aki-825ea7eb
- miq-extract-base-ubuntu-12.04
- ubuntu 12.04 + rvm/Ruby1.9
+ aki-30ceaf59
+ RHEL-5.5_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-d03941a3
- 8
+ snap-29b03774
+ 6
true
standard
false
- -
- /dev/sdb
- ephemeral0
-
paravirtual
-
- -
- Name
- miq-extract-base-ubuntu-12.04
-
-
xen
-
- ami-7c4aa86a
- 200278856672/redhat-6.3-64
+ ami-e9ec2080
+ 309956199498/RHEL-5.7-Starter-EBS-i386-5-Access2
available
- 200278856672
- 2017-01-13T11:31:28.000Z
+ 309956199498
+ 2011-10-10T18:04:32.000Z
false
- x86_64
+ i386
machine
- aki-08ed0761
- redhat-6.3-64
- [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ aki-36ed075f
+ RHEL-5.7-Starter-EBS-i386-5-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-6054c98a
- 7
+ snap-8e90faed
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
@@ -26788,25 +39685,25 @@ http_interactions:
xen
-
- ami-7d85fd6b
- 200278856672/hsong-ssa-agent-v1
+ ami-eb0a7694
+ 309956199498/RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:21:55.000Z
+ 309956199498
+ 2018-06-06T21:58:13.000Z
false
x86_64
machine
simple
- hsong-ssa-agent-v1
- [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-05ef19f30ffe6ceaa
- 80
+ snap-076491f21bfe39630
+ 10
true
gp2
false
@@ -26817,55 +39714,63 @@ http_interactions:
xen
-
- ami-8bf2e4f0
- 200278856672/ladas_test_111_snapshot_image
+ ami-ebba9e90
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:04:28.000Z
+ 309956199498
+ 2017-08-01T13:55:21.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image
-
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-05b0394bb3b8b42d0
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-95ad19fc
- 200278856672/ubuntu-11.10-server-64
+ ami-ec601593
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
available
- 200278856672
- 2012-08-22T00:20:33.000Z
+ 679593333241
+ 2018-06-01T11:50:23.000Z
false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
x86_64
machine
- aki-825ea7eb
- ubuntu-11.10-server-64
-
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-05-22
ebs
/dev/sda1
-
/dev/sda1
- snap-90bc12e3
+ snap-029167631d7dbab96
8
- false
- standard
+ true
+ gp2
false
@@ -26873,94 +39778,70 @@ http_interactions:
/dev/sdb
ephemeral0
-
- paravirtual
-
-
- Name
- ubuntu-11.10-server-64
+ /dev/sdc
+ ephemeral1
-
+
+ hvm
xen
+ true
-
- ami-a7185ec2
- 200278856672/CFME-55Image
+ ami-ee0eaf87
+ 309956199498/RHEL-6.3-Starter-x86_64-1-Access2
available
- 200278856672
- 2015-10-01T15:35:55.000Z
+ 309956199498
+ 2012-06-04T19:11:15.000Z
false
x86_64
machine
- CFME-55Image
- CFME-55Image
+ aki-ecfa0185
+ RHEL-6.3-Starter-x86_64-1-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-249e4c6c
- 40
- false
- gp2
+ snap-0a6f0275
+ 7
+ true
+ standard
false
-
- /dev/sdb
-
- 30
- false
- gp2
- false
-
+ /dev/sdf
+ ephemeral0
-
- hvm
- xen
-
- -
- ami-ad43a4c4
- rpo-images/miq-ec2-proto.img.manifest.xml
- available
- 200278856672
-
- false
- i386
- machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
-
- Name
- extract-proto0
+ /dev/sdg
+ ephemeral1
-
+
+ paravirtual
xen
-
- ami-bbc9dac0
- 200278856672/ladas_test111
+ ami-eea69e86
+ 309956199498/RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-06T15:25:11.000Z
+ 309956199498
+ 2015-04-14T16:05:15.000Z
false
x86_64
machine
simple
- ladas_test111
-
+ RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-09505262c29651f47
+ snap-f7bff783
10
true
gp2
@@ -26972,311 +39853,284 @@ http_interactions:
xen
-
- ami-bda014d4
- 200278856672/redhat-6.3-64
+ ami-ef0ddc86
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
available
- 200278856672
- 2012-08-21T21:31:39.000Z
+ 309956199498
+ 2012-01-31T17:25:19.000Z
false
x86_64
machine
- aki-08ed0761
- redhat-6.3-64
-
+ aki-ecfa0185
+ RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5210bc21
- 7
+ snap-a26c77c6
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- redhat-6.3-64
-
-
xen
-
- ami-c68639af
- miq-extract-images/evm-extract.manifest.xml
+ ami-f1c75d8e
+ 309956199498/RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-10-11T20:34:52.000Z
+ 309956199498
+ 2018-05-22T20:49:43.000Z
false
x86_64
machine
- aki-825ea7eb
- evm-extract
- instance-store
+ simple
+ RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
-
- /dev/sdb
- ephemeral0
+ /dev/sda1
+
+ snap-034ca7106de61d544
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- evm-extract
-
-
+ hvm
xen
-
- ami-cd43a4a4
- rpo-images/miq-ec2-extract.img.manifest.xml
+ ami-f22c838f
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2018-04-05T14:03:24.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- extract-proto-old
+ /dev/sda1
+
+ snap-082db2812440be4e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
+ true
-
- ami-cf08bda6
- rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ ami-f4f16b9d
+ 309956199498/RHEL-6.4_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-19T18:43:47.000Z
+ 309956199498
+ 2013-03-28T15:27:20.000Z
false
x86_64
machine
- aki-6a0cf803
- instance-store
+ aki-ecfa0185
+ RHEL-6.4_GA-x86_64-4-Access2
+ ebs
/dev/sda1
-
- sdb
+ /dev/sda1
+
+ snap-11a7ef56
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
ephemeral0
-
- sdc
+ /dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- extract-proto3
-
-
xen
-
- ami-ebcb7e82
- rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ ami-fb261f91
+ 309956199498/RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
available
- 200278856672
- 2012-08-15T02:47:43.000Z
+ 309956199498
+ 2016-03-02T16:35:59.000Z
false
x86_64
machine
- aki-6a0cf803
- ubuntu10.04-rvm-ruby1.9
- instance-store
+ simple
+ RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sdb
- ephemeral0
-
- -
- sdc
- ephemeral1
+ /dev/sda1
+
+ snap-493b545c
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- ubuntu-10.04-rvm-ruby1.9
-
-
+ hvm
xen
-
- ami-edaa1f84
- rpo-work/miq-test.img.manifest.xml
+ ami-fbc89880
+ 309956199498/RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-15T18:51:02.000Z
+ 309956199498
+ 2017-07-24T15:44:37.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
+ simple
+ RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-06b3fdee8ff92a35b
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- test-linux
-
-
+ hvm
xen
-
- ami-edad1984
- 200278856672/ubuntu-12.04-server-32
+ ami-fc94dd94
+ 309956199498/RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-22T00:07:18.000Z
+ 309956199498
+ 2015-02-09T21:01:42.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- ubuntu-12.04-server-32
-
+ aki-919dcaf8
+ RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8ec06efd
- 8
+ snap-4c738dc3
+ 6
true
- standard
+ gp2
false
- -
- /dev/sda2
- ephemeral0
-
paravirtual
-
+ xen
+
+ -
+ ami-ff13f292
+ 309956199498/RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-05-03T20:13:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-12.04-server-32
+ /dev/sda1
+
+ snap-5f073bba
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-f3a81c9a
- 200278856672/suse-11-server-32
+ ami-ff83ea96
+ 309956199498/RHEL-5.6_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-22T01:57:01.000Z
+ 309956199498
+ 2013-05-19T15:16:36.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- suse-11-server-32
-
+ aki-30ceaf59
+ RHEL-5.6_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-baf35ac9
- 10
- false
+ snap-0215af5f
+ 6
+ true
standard
false
paravirtual
-
- -
- Name
- suse-11-server-32
-
-
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:41 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080841Z
- X-Amz-Content-Sha256:
- - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a012e025523687e4ae1d1e1ad16a197f8b9395b70b38df70d32530ef6366fb1b
- Content-Length:
- - '110'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:36 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 55e7b45a-f96a-43af-a009-fa8c7a0b1d73
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:42 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:43 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -27289,14 +40143,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080842Z
+ - 20180904T145943Z
X-Amz-Content-Sha256:
- 398587829763af2624ad0faa257a51949217b85bb2957c3948946c38ab0fddac
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b2682a3b5d8e37da3a2ba707a4f21132542c79d253127b3f695650839516cade
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1456251ba6d45d6646ae2229c5f16e0cf71546456d85eb6b61d9ded7aae33b0f
Content-Length:
- '48'
Accept:
@@ -27313,7 +40167,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:36 GMT
+ - Tue, 04 Sep 2018 14:59:43 GMT
Server:
- AmazonEC2
body:
@@ -27321,7 +40175,7 @@ http_interactions:
string: |-
- fb926449-a9a5-4f67-ba68-3cea3b064e33
+ b421502b-6a79-4ccd-935a-600f1f33e232
-
200278856672
@@ -28425,26 +41279,174 @@ http_interactions:
-
200278856672
- sg-000ff571
- launch-wizard-46
- launch-wizard-46 created 2017-06-16T16:53:45.929-04:00
- vpc-a06de3c5
+ sg-1b8a728d
+ launch-wizard-13
+ launch-wizard-13 created 2017-10-09T15:03:56.991+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-15d81e83
+ Ubuntu Server 14-04 LTS-14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-fde6206b
+ Ubuntu Server 14-04 LTS -HVM--14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS (HVM) version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-f448eb62
+ launch-wizard-14
+ launch-wizard-14 created 2018-03-12T12:23:52.936+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ Enable SSH access and HTTP access on the inbound port
-
tcp
80
80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+
+
+ -
+ 200278856672
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
-
- ::/0
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
-
+
+
+
-
@@ -28460,10 +41462,226 @@ http_interactions:
+
+
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+
+
+ -
+ 200278856672
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+ Enable SSH access and HTTP access on the inbound port
+
-
tcp
- 443
- 443
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+
+ -
+ 200278856672
+ sg-0142c27e
+ default
+ default VPC security group
+ vpc-c3d2f1a5
+
+
-
+ -1
+
+
-
+ 200278856672
+ sg-0142c27e
+
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-041d424d
+ launch-wizard-36
+ launch-wizard-36 created 2018-04-26T11:02:24.267+01:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-06ed824c
+ ladas_test_jul25_3
+ ladas_test_changed
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-08314440
+ launch-wizard-38
+ launch-wizard-38 created 2018-05-24T15:43:41.371+02:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+ -
+ icmp
+ -1
+ -1
-
@@ -28491,24 +41709,53 @@ 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
+
-
- Name
- Ansible tower
+ tcp
+ 2222
+ 2222
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
-
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
-
200278856672
- sg-00e3537c
- launch-wizard-27
- launch-wizard-27 created 2017-01-26T13:23:15.837-05:00
- vpc-a06de3c5
+ sg-14ca085e
+ ladas_test5
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
- 3389
- 3389
+ 22
+ 22
-
@@ -28535,17 +41782,17 @@ http_interactions:
-
200278856672
- sg-0142c27e
+ sg-1e2cf271
default
default VPC security group
- vpc-c3d2f1a5
+ vpc-ff49ff91
-
-1
-
200278856672
- sg-0142c27e
+ sg-1e2cf271
@@ -28569,10 +41816,136 @@ http_interactions:
-
200278856672
- sg-03ff5a67
- launch-wizard-5
- launch-wizard-5 created 2015-01-29T14:42:40.334-05:00
- vpc-a06de3c5
+ sg-2899b45d
+ launch-wizard-16
+ launch-wizard-16 created 2017-12-13T10:04:20.108-05:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-42071e09
+ ladas_test_jul10
+ ladas_test_changed
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-43cb9c27
+ launch-wizard-7
+ launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ vpc-ff49ff91
+
+
+
-
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-45ea7f37
+ launch-wizard-52
+ launch-wizard-52 created 2017-10-19T17:55:15.762-04:00
+ vpc-8cf117f5
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-47168f0d
+ ladas_test_jul24_3
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -28604,15 +41977,15 @@ 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
+ sg-4a6d4b38
+ launch-wizard-56
+ launch-wizard-56 created 2017-10-31T13:12:17.619-04:00
+ vpc-8cf117f5
-
tcp
- 2222
- 2222
+ 22
+ 22
-
@@ -28639,36 +42012,55 @@ http_interactions:
-
200278856672
- sg-10362275
- DemoSecurityGroup
- for AWS Demos
- vpc-a06de3c5
+ sg-4cc30d32
+ default
+ default VPC security group
+ vpc-8cf117f5
-
- tcp
- 22
- 22
+ -1
-
200278856672
- sg-10362275
+ sg-4cc30d32
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-4d0ec507
+ ladas_test
+ ladas_test_changed
+ vpc-ff49ff91
+
-
tcp
- 3306
- 3306
-
+ 22
+ 22
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
@@ -28686,19 +42078,13 @@ http_interactions:
-
- -
- Name
- DemoSecGroup-Disallowed
-
-
-
200278856672
- sg-1da7d07a
- launch-wizard-9
- launch-wizard-9 created 2015-08-24T14:02:53.560-04:00
- vpc-a06de3c5
+ sg-5096f91a
+ ladas_test_jul25_2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -28730,27 +42116,30 @@ http_interactions:
-
200278856672
- sg-1e2cf271
- default
- default VPC security group
- vpc-ff49ff91
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ Public ELB Security Group with HTTP access on port 80 from the internet
+ vpc-c3d2f1a5
-
- -1
-
+ tcp
+ 80
+ 80
+
+
-
- 200278856672
- sg-1e2cf271
+ 0.0.0.0/0
-
-
+
-
- -1
+ tcp
+ 80
+ 80
-
@@ -28761,13 +42150,27 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ aws:cloudformation:logical-id
+ PublicLoadBalancerSecurityGroup
+
+
-
200278856672
- sg-1facdb78
- launch-wizard-11
- launch-wizard-11 created 2015-08-24T14:22:34.811-04:00
- vpc-a06de3c5
+ sg-5b83ec11
+ ladas_test_jul25_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -28799,20 +42202,21 @@ http_interactions:
-
200278856672
- sg-24362241
- default
- default VPC security group
- vpc-a06de3c5
+ sg-5c49922a
+ launch-wizard-26
+ launch-wizard-26 created 2018-03-06T13:29:21.183-05:00
+ vpc-8cf117f5
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-24362241
+ 0.0.0.0/0
-
-
+
@@ -28833,11 +42237,24 @@ http_interactions:
-
200278856672
- sg-2613e957
- launch-wizard-45
- launch-wizard-45 created 2017-06-16T16:44:29.050-04:00
- vpc-a06de3c5
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+ ladas_ansible_test_1_sc_description
+ vpc-ff49ff91
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -28861,11 +42278,7 @@ http_interactions:
0.0.0.0/0
-
- -
- ::/0
-
-
+
@@ -28885,15 +42298,15 @@ http_interactions:
-
200278856672
- sg-38511448
- launch-wizard-47
- launch-wizard-47 created 2017-08-29T15:13:44.025-04:00
- vpc-a06de3c5
+ sg-67541b15
+ smartstate
+ Security group for smartstate Agent
+ vpc-aee2a6ca
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -28903,10 +42316,10 @@ http_interactions:
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -28916,19 +42329,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-398cb044
- launch-wizard-25
- launch-wizard-25 created 2016-12-20T17:45:43.702-05:00
- vpc-a06de3c5
-
-
tcp
- 22
- 22
+ 443
+ 443
-
@@ -28955,10 +42359,10 @@ http_interactions:
-
200278856672
- sg-3ecff343
- launch-wizard-23
- launch-wizard-23 created 2016-12-20T16:19:45.863-05:00
- vpc-a06de3c5
+ sg-68c28c1e
+ simaishi
+ launch-wizard-36 created 2018-03-21T17:44:48.938-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -28973,6 +42377,23 @@ http_interactions:
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
-
@@ -28990,10 +42411,10 @@ http_interactions:
-
200278856672
- sg-434f323f
- launch-wizard-36
- launch-wizard-36 created 2017-02-10T16:43:58.127-05:00
- vpc-a06de3c5
+ sg-6b62e412
+ launch-wizard-15
+ launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
+ vpc-ff49ff91
-
tcp
@@ -29025,14 +42446,15 @@ http_interactions:
-
200278856672
- sg-43cb9c27
- launch-wizard-7
- launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ sg-734efc0f
+ quick-create-2-lbtest3
+ quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
vpc-ff49ff91
-
-
+
-
- -1
+ tcp
+ 80
+ 80
-
@@ -29042,27 +42464,6 @@ http_interactions:
-
-
- -
- 200278856672
- sg-4cc30d32
- default
- default VPC security group
- vpc-8cf117f5
-
-
-
- -1
-
-
-
- 200278856672
- sg-4cc30d32
-
-
-
-
-
-
-
@@ -29080,10 +42481,10 @@ http_interactions:
-
200278856672
- sg-56a5d231
- launch-wizard-10
- launch-wizard-10 created 2015-08-24T14:06:10.925-04:00
- vpc-a06de3c5
+ sg-75614707
+ launch-wizard-57
+ launch-wizard-57 created 2017-10-31T13:14:14.391-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -29115,10 +42516,10 @@ http_interactions:
-
200278856672
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- Public ELB Security Group with HTTP access on port 80 from the internet
- vpc-c3d2f1a5
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ Enable SSH access via port 22
+ vpc-8cf117f5
-
tcp
@@ -29133,44 +42534,6 @@ http_interactions:
-
-
- -
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- aws:cloudformation:logical-id
- PublicLoadBalancerSecurityGroup
-
-
-
- -
- 200278856672
- sg-6106b61c
- launch-wizard-16
- launch-wizard-16 created 2016-11-15T16:12:37.114+01:00
- vpc-a06de3c5
-
-
tcp
22
@@ -29198,153 +42561,35 @@ http_interactions:
-
- -
- 200278856672
- sg-65d59519
- launch-wizard-37
- launch-wizard-37 created 2017-02-14T17:18:15.823+01:00
- vpc-a06de3c5
-
+
-
- tcp
- 22
- 22
-
-
-
-
- 0.0.0.0/0
-
-
-
-
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
-
-
- -1
-
-
-
-
- 0.0.0.0/0
-
-
-
-
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
-
-
- -
- 200278856672
- sg-67af5d03
- launch-wizard-2
- launch-wizard-2 created 2014-12-16T11:24:47.439-05:00
- vpc-a06de3c5
-
-
- tcp
- 22
- 22
-
-
-
-
- 0.0.0.0/0
-
-
-
-
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
-
-
-
- -1
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- 200278856672
- sg-6b62e412
- launch-wizard-15
- launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
- vpc-ff49ff91
-
-
-
- tcp
- 22
- 22
-
-
-
-
- 0.0.0.0/0
-
-
-
-
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
-
-
-
- -1
-
-
-
-
- 0.0.0.0/0
-
-
-
-
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
-
+
-
200278856672
- sg-734efc0f
- quick-create-2-lbtest3
- quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
+ sg-79f9e633
+ ladas_test2
+ ladas_test_changed
vpc-ff49ff91
-
-
-
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- -1
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- 200278856672
- sg-73f74d0e
- launch-wizard-17
- launch-wizard-17 created 2016-11-17T11:08:15.164-05:00
- vpc-a06de3c5
-
tcp
@@ -29376,24 +42621,11 @@ http_interactions:
-
200278856672
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- Enable SSH access via port 22
- vpc-8cf117f5
+ sg-7b534930
+ ladas_test_jul11
+ ladas_test_changed
+ vpc-ff49ff91
-
-
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
tcp
22
@@ -29421,28 +42653,6 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- aws:cloudformation:logical-id
- InstanceSecurityGroup
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
-
-
200278856672
@@ -29481,10 +42691,10 @@ http_interactions:
-
200278856672
- sg-7ec11602
- launch-wizard-26
- launch-wizard-26 created 2017-01-17T15:47:44.393-05:00
- vpc-a06de3c5
+ sg-7f892508
+ launch-wizard-18
+ launch-wizard-18 created 2018-02-01T14:12:05.486-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -29564,10 +42774,10 @@ http_interactions:
-
200278856672
- sg-82c99dfe
- launch-wizard-38
- launch-wizard-38 created 2017-02-16T11:27:56.384-05:00
- vpc-a06de3c5
+ sg-8280c0f5
+ launch-wizard-22
+ launch-wizard-22 created 2018-02-14T15:09:29.980+01:00
+ vpc-ff49ff91
-
tcp
@@ -29599,28 +42809,11 @@ http_interactions:
-
200278856672
- sg-86e19cf8
- launch-wizard-40
- launch-wizard-40 created 2017-05-16T14:13:09.595-04:00
- vpc-a06de3c5
+ sg-8b4c9dc2
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-1
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
-
- udp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
tcp
22
@@ -29631,28 +42824,7 @@ http_interactions:
0.0.0.0/0
-
- -
- ::/0
-
-
-
-
- -
- tcp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
+
@@ -29672,10 +42844,10 @@ http_interactions:
-
200278856672
- sg-87838bf9
- launch-wizard-42
- launch-wizard-42 created 2017-06-05T17:22:54.552-04:00
- vpc-a06de3c5
+ sg-8dff68ff
+ launch-wizard-53
+ launch-wizard-53 created 2017-10-19T23:07:38.280-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -29866,10 +43038,44 @@ http_interactions:
-
200278856672
- sg-999c6efd
- mk_test
- MK
- vpc-a06de3c5
+ sg-a493cddd
+ default
+ default VPC security group
+ vpc-aee2a6ca
+
+
-
+ -1
+
+
-
+ 200278856672
+ sg-a493cddd
+
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-a5b994d0
+ launch-wizard-14
+ launch-wizard-14 created 2017-12-13T09:42:39.062-05:00
+ vpc-ff49ff91
-
tcp
@@ -29878,7 +43084,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -29901,10 +43107,10 @@ http_interactions:
-
200278856672
- sg-9e1be1ef
- launch-wizard-44
- launch-wizard-44 created 2017-06-16T16:29:17.135-04:00
- vpc-a06de3c5
+ sg-a66eedd0
+ launch-wizard-27
+ launch-wizard-27 created 2018-03-12T14:47:33.616+01:00
+ vpc-aee2a6ca
-
tcp
@@ -29936,10 +43142,10 @@ http_interactions:
-
200278856672
- sg-9ed82afa
- launch-wizard-4
- launch-wizard-4 created 2014-12-16T16:49:57.781-05:00
- vpc-a06de3c5
+ sg-a84495e1
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
tcp
@@ -29948,7 +43154,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -29971,11 +43177,30 @@ http_interactions:
-
200278856672
- sg-9fe1a5e1
- launch-wizard-41
- launch-wizard-41 created 2017-05-18T11:06:38.403-04:00
- vpc-a06de3c5
+ sg-a86bf7de
+ stomsa
+ stomsa
+ vpc-aee2a6ca
+
-
+ tcp
+ 8000
+ 8000
+
+
+
-
+ 0.0.0.0/0
+ SimpleHTTPServer
+
+
+
+ -
+ ::/0
+ SimpleHTTPServer
+
+
+
+
-
tcp
22
@@ -29983,7 +43208,12 @@ http_interactions:
-
- 0.0.0.0/0
+ 213.175.37.10/32
+ SSH office
+
+ -
+ 93.153.77.219/32
+ SSH VPN
@@ -30003,13 +43233,19 @@ http_interactions:
+
+ -
+ Name
+ stomsa
+
+
-
200278856672
- sg-9ff8ace3
- launch-wizard-39
- launch-wizard-39 created 2017-02-16T11:40:34.781-05:00
- vpc-a06de3c5
+ sg-ac6543de
+ launch-wizard-55
+ launch-wizard-55 created 2017-10-31T13:11:15.686-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -30041,20 +43277,21 @@ http_interactions:
-
200278856672
- sg-a493cddd
- default
- default VPC security group
- vpc-aee2a6ca
+ sg-b00affc6
+ launch-wizard-23
+ launch-wizard-23 created 2018-02-28T16:08:13.133+00:00
+ vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-a493cddd
+ 0.0.0.0/0
-
-
+
@@ -30075,10 +43312,10 @@ http_interactions:
-
200278856672
- sg-a6122edb
- launch-wizard-18
- launch-wizard-18 created 2016-12-20T14:51:03.563-05:00
- vpc-a06de3c5
+ sg-b267fef8
+ ladas_test_jul24_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -30110,10 +43347,10 @@ http_interactions:
-
200278856672
- sg-b5d624d1
- launch-wizard-3
- launch-wizard-3 created 2014-12-16T16:24:52.047-05:00
- vpc-a06de3c5
+ sg-b83144f0
+ launch-wizard-37
+ launch-wizard-37 created 2018-05-24T15:39:49.093+02:00
+ vpc-ff49ff91
-
tcp
@@ -30122,7 +43359,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -30145,10 +43382,10 @@ http_interactions:
-
200278856672
- sg-c00e19a5
- DemoSecGroup-Allowed
- 80 and 443
- vpc-a06de3c5
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+ quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ vpc-ff49ff91
-
tcp
@@ -30163,19 +43400,6 @@ http_interactions:
- -
- tcp
- 443
- 443
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
@@ -30193,10 +43417,10 @@ http_interactions:
-
200278856672
- sg-cd64e2b4
- launch-wizard-14
- launch-wizard-14 created 2016-01-06T18:06:11.447-05:00
- vpc-a06de3c5
+ sg-dbed8291
+ ladas_test_jul25_4
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -30228,10 +43452,10 @@ http_interactions:
-
200278856672
- sg-cf2dd7be
- launch-wizard-43
- launch-wizard-43 created 2017-06-16T16:18:58.509-04:00
- vpc-a06de3c5
+ sg-dfe6c6a6
+ launch-wizard-13
+ launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
+ vpc-ff49ff91
-
tcp
@@ -30246,6 +43470,19 @@ http_interactions:
+ -
+ udp
+ 19132
+ 19132
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -30263,10 +43500,10 @@ http_interactions:
-
200278856672
- sg-d2fb5eb6
- launch-wizard-6
- launch-wizard-6 created 2015-01-29T14:59:03.773-05:00
- vpc-a06de3c5
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1801_01 provided by Centos.org
+ vpc-ff49ff91
-
tcp
@@ -30298,15 +43535,15 @@ http_interactions:
-
200278856672
- sg-da58eaa6
- quick-create-2-for-lb-2
- quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ sg-ee6ec399
+ launch-wizard-17
+ launch-wizard-17 created 2018-02-01T11:27:33.447-05:00
vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -30333,21 +43570,20 @@ http_interactions:
-
200278856672
- sg-dadae6a7
- launch-wizard-22
- launch-wizard-22 created 2016-12-20T16:03:30.798-05:00
- vpc-a06de3c5
+ sg-f318d184
+ default
+ default VPC security group
+ vpc-36cad24e
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-f318d184
-
+
+
@@ -30368,11 +43604,24 @@ http_interactions:
-
200278856672
- sg-dfe6c6a6
- launch-wizard-13
- launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
- vpc-ff49ff91
+ sg-f84e7d8d
+ simaishi
+ simaishi
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -30387,9 +43636,9 @@ http_interactions:
-
- udp
- 19132
- 19132
+ tcp
+ 443
+ 443
-
@@ -30416,10 +43665,10 @@ http_interactions:
-
200278856672
- sg-f0d92a94
- launch-wizard-1
- launch-wizard-1 created 2014-12-15T17:32:09.146-05:00
- vpc-a06de3c5
+ sg-ff845f89
+ launch-wizard-25
+ launch-wizard-25 created 2018-03-06T11:33:01.209-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -30452,7 +43701,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:47 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:47 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -30465,14 +43714,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080847Z
+ - 20180904T145947Z
X-Amz-Content-Sha256:
- 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=524f2474240d042feab8a2ebda19e58cbf8ebe9ccc2033694db25580e72b262f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=625a95043eecc5417419fd7209e9fa98296d4d7480150ed212dc29052ba9ab94
Content-Length:
- '47'
Accept:
@@ -30483,15 +43732,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e9075932-a291-11e7-883d-759204d8d8af
+ - 2accf847-b053-11e8-84b8-e518f53d604a
Content-Type:
- text/xml
Content-Length:
- - '12763'
+ - '17957'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:42 GMT
+ - Tue, 04 Sep 2018 14:59:47 GMT
body:
encoding: UTF-8
string: |
@@ -30521,7 +43770,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefreshSpec-LoadBalancer
@@ -30533,6 +43781,7 @@ http_interactions:
+ EmsRefreshSpec-LoadBalancer
2
30
@@ -30541,8 +43790,8 @@ http_interactions:
TCP:22
2013-08-09T14:53:25.760Z
-
+
EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com
@@ -30553,9 +43802,6 @@ http_interactions:
i-8b5739f2
-
- i-fb694e66
-
@@ -30572,7 +43818,6 @@ http_interactions:
200278856672
EmsRefreshSpec-SecurityGroup-VPC
- EmSRefreshSpecVPCELB
@@ -30593,6 +43838,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB
2
30
@@ -30601,13 +43847,13 @@ http_interactions:
HTTP:80/index.html
2016-08-09T08:16:14.340Z
+
+ sg-80f755ef
+
subnet-16c70477
subnet-f849ff96
-
- sg-80f755ef
-
EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
@@ -30615,9 +43861,6 @@ http_interactions:
vpc-ff49ff91
internet-facing
-
- i-fb694e66
-
i-8b5739f2
@@ -30637,7 +43880,6 @@ http_interactions:
200278856672
quick-create-1
- EmSRefreshSpecVPCELB2
@@ -30649,6 +43891,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB2
2
30
@@ -30657,13 +43900,13 @@ http_interactions:
TCP:22
2016-08-10T14:17:09.810Z
+
+ sg-0d2cd677
+
subnet-16c70477
subnet-f849ff96
-
- sg-0d2cd677
-
EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
@@ -30685,7 +43928,6 @@ http_interactions:
200278856672
quick-create-2-for-lb-2
- lb-test3
@@ -30715,6 +43957,7 @@ http_interactions:
+ lb-test3
2
30
@@ -30723,14 +43966,14 @@ http_interactions:
HTTP:1600/index.html
2017-01-27T10:18:32.770Z
-
- subnet-f849ff96
-
sg-734efc0f
sg-0d2cd677
sg-da58eaa6
+
+ subnet-f849ff96
+
lb-test3-322096868.us-east-1.elb.amazonaws.com
@@ -30738,7 +43981,7 @@ http_interactions:
internet-facing
- i-025623c4c4e4f84a0
+ i-0aa433595b855eeeb
@@ -30756,7 +43999,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefres-ElasticL-UPI0RRUFR3HI
@@ -30768,6 +44010,7 @@ http_interactions:
+ EmsRefres-ElasticL-UPI0RRUFR3HI
5
30
@@ -30776,8 +44019,8 @@ http_interactions:
HTTP:80/
2017-03-27T11:33:40.770Z
-
+
EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
@@ -30786,7 +44029,7 @@ http_interactions:
internet-facing
- i-0150ac66c83e0eae8
+ i-0828f09c91ab89a97
@@ -30803,7 +44046,6 @@ http_interactions:
200278856672
EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- EmsRefres-PublicEl-15YIQXDK2TNOF
@@ -30815,6 +44057,7 @@ http_interactions:
+ EmsRefres-PublicEl-15YIQXDK2TNOF
5
90
@@ -30823,22 +44066,163 @@ http_interactions:
HTTP:80/
2017-03-27T12:21:17.830Z
-
- subnet-de2363bb
-
sg-5946c626
+
+ subnet-de2363bb
+
EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-0e48bff566d8742b3
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-1EUDCD7AKWGXB
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-04T12:11:38.930Z
+
+
+ SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-08be28f4282ed4ad4
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-1FZE3MOB69WMC
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-04T12:12:08.120Z
+
+
+ SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-03769bc6ccaba947a
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-04T13:38:44.050Z
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
- e9075932-a291-11e7-883d-759204d8d8af
+ 2accf847-b053-11e8-84b8-e518f53d604a
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:48 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:49 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -30851,14 +44235,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080848Z
+ - 20180904T145949Z
X-Amz-Content-Sha256:
- 19ba5dc918b1e927d0c1a179e1bed2a393fa8987b6fbc66e756823d414115566
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d7e850fea899093fccc04a9165c635003cca5bf18ca706402a527d9e7a8cf183
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e63844863dbaf425dc1fd0f6f719978c0201745841d4e3a91cf76d5d6f5727f7
Content-Length:
- '51'
Accept:
@@ -30875,7 +44259,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:43 GMT
+ - Tue, 04 Sep 2018 14:59:49 GMT
Server:
- AmazonEC2
body:
@@ -30883,20 +44267,56 @@ http_interactions:
string: |-
- 4c462a31-d8b1-419d-a49f-dd10a71c97ea
+ d8520787-fcb4-4408-96a1-00f71695bd2f
-
- eni-1eec3adb
- subnet-16c70477
+ eni-e704c271
+ subnet-5f5a9670
vpc-ff49ff91
- us-east-1d
- test-network-port
+ us-east-1e
+
200278856672
- AIDAI37PIOA5B6VMIJRUU
false
- available
- 0e:49:87:ef:7f:c2
- 10.0.1.129
+ in-use
+ 12:d5:74:0d:84:56
+ 10.0.8.133
+ true
+
+
-
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ eni-attach-828d7a27
+ i-002ca40492fff0e67
+ 200278856672
+ 0
+ attached
+ 2018-06-06T18:52:17.000Z
+ true
+
+
+
+ -
+ 10.0.8.133
+ true
+
+
+
+ interface
+
+ -
+ eni-17e6c4d8
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+
+ 200278856672
+ false
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -30904,10 +44324,68 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+ eni-attach-5225809d
+ i-0639022117944a668
+ 200278856672
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+ true
+
-
- 10.0.1.129
+ 10.0.0.98
+ true
+
+ 54.172.168.193
+
+ amazon
+ true
+
+
+
+
+ interface
+
+ -
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
+ 200278856672
+ false
+ in-use
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
+ true
+
+
-
+ sg-b00affc6
+ launch-wizard-23
+
+
+
+ eni-attach-87883f81
+ i-0a67c549558c9c392
+ 200278856672
+ 0
+ attached
+ 2018-02-28T16:08:24.000Z
+ true
+
+
+
+ -
+ 10.0.1.165
true
@@ -30915,44 +44393,162 @@ http_interactions:
interface
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
Primary network interface
200278856672
false
in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-82c99dfe
- launch-wizard-38
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-56d3827c
- i-0a922b9826b3dfd0d
+ eni-attach-3be67cff
+ i-0125949f65c1e5528
200278856672
0
attached
- 2017-02-16T16:28:15.000Z
- true
+ 2018-03-06T18:29:43.000Z
+ true
+
+
+ 52.3.221.140
+
+ amazon
+ true
+
+
+
+ -
+ 10.2.0.152
+ true
+
+ 52.3.221.140
+
+ amazon
+ true
+
+
+
+
+ interface
+
+ -
+ eni-6751aeb6
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB2
+ 200278856672
+ amazon-elb
+ true
+ in-use
+ 0e:c9:ea:e2:9b:42
+ 10.0.1.195
+ true
+
+
-
+ sg-0d2cd677
+ quick-create-1
+
+
+
+ eni-attach-04dda1050e8b01bc7
+ amazon-elb
+ 1
+ attached
+ 2018-03-05T13:00:40.000Z
+ false
+
+
+ 52.44.158.113
+
+ amazon-elb
+ true
+
+
+
+ -
+ 10.0.1.195
+ true
+
+ 52.44.158.113
+
+ amazon-elb
+ true
+
+
+
+
+ interface
+
+ -
+ eni-e0bb2c77
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ ELB lb-test3
+ 200278856672
+ amazon-elb
+ true
+ in-use
+ 12:85:fe:b2:a6:c2
+ 10.0.0.222
+ true
+
+
-
+ sg-734efc0f
+ quick-create-2-lbtest3
+
+ -
+ sg-0d2cd677
+ quick-create-1
+
+ -
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+
+
+
+ eni-attach-08dff347f2450c37e
+ amazon-elb
+ 1
+ attached
+ 2018-05-27T06:39:12.000Z
+ false
+
+ 52.207.60.40
+
+ amazon-elb
+ true
+
-
- 10.0.1.86
+ 10.0.0.222
true
+
+ 52.207.60.40
+
+ amazon-elb
+ true
+
interface
-
- eni-5836d558
+ eni-8449cf3e
subnet-e88815d5
vpc-aee2a6ca
us-east-1a
@@ -30960,30 +44556,30 @@ http_interactions:
200278856672
false
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-67541b15
+ smartstate
- eni-attach-cd97a82d
- i-06c2e2feb85b5c8b2
+ eni-attach-22e6878f
+ i-0015ec0007f4d13a7
200278856672
0
attached
- 2017-07-17T19:21:45.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
@@ -30991,47 +44587,49 @@ http_interactions:
interface
-
- eni-239477d1
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB2
+ eni-6f153153
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
+ RDSNetworkInterface
200278856672
- 210368014644
+ AIDAJ6DRABHUIWCUBKTGK
true
in-use
- 12:d8:ca:93:45:92
- 10.0.0.211
+ 06:de:59:b9:f4:ed
+ 172.30.0.162
+ ip-172-30-0-162.ec2.internal
true
-
- sg-0d2cd677
- quick-create-1
+ sg-9593cdec
+ rds-launch-wizard
- eni-attach-85db02af
- amazon-elb
+ eni-attach-41b0deed
+ 920715386331
1
attached
- 2017-02-08T01:57:57.000Z
+ 2018-05-20T00:41:43.000Z
false
- 52.206.189.251
-
- amazon-elb
+ 52.71.88.121
+ ec2-52-71-88-121.compute-1.amazonaws.com
+ 920715386331
true
-
- 10.0.0.211
+ 172.30.0.162
+ ip-172-30-0-162.ec2.internal
true
- 52.206.189.251
-
- amazon-elb
+ 52.71.88.121
+ ec2-52-71-88-121.compute-1.amazonaws.com
+ 920715386331
true
@@ -31040,36 +44638,38 @@ http_interactions:
interface
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
-
- sg-4cc30d32
- default
+ sg-67541b15
+ smartstate
- eni-attach-63ae77fb
- i-013f45a83fd938928
+ eni-attach-fbede525
+ i-0fb9010fdcfe4d050
200278856672
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-02-26T18:31:27.000Z
true
-
- 10.2.0.15
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
@@ -31077,16 +44677,17 @@ http_interactions:
interface
-
- eni-b9cc7f19
+ eni-83fc5323
subnet-f849ff96
vpc-ff49ff91
us-east-1e
-
+ ladastest2
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ available
+ 12:b7:bb:c9:a9:a8
+ 10.0.0.249
true
-
@@ -31094,83 +44695,62 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-0b3482fe
- i-0b72e0b70e7fae3c9
- 200278856672
- 0
- attached
- 2017-09-07T12:23:45.000Z
- true
-
-
- 52.70.78.137
-
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
- true
-
-
- 10.0.0.236
+ 10.0.0.249
true
-
- 52.70.78.137
-
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
- true
-
interface
-
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- Primary network interface
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
+
200278856672
false
in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-455ec9ed
- i-c72af2f6
+ eni-attach-cbd22453
+ i-0bca58e6e540ddc39
200278856672
0
attached
- 2016-08-30T07:17:58.000Z
+ 2017-05-03T10:47:06.000Z
true
- 54.208.71.4
+ 34.202.178.10
- amazon
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
true
-
- 10.0.0.122
+ 10.2.0.239
true
- 54.208.71.4
+ 34.202.178.10
- amazon
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
true
@@ -31179,64 +44759,56 @@ http_interactions:
interface
-
- eni-6933e6c9
+ eni-ad25f7cc
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- test
+ Primary network interface
200278856672
false
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
-
- sg-1e2cf271
- default
-
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- -
- sg-7c69ed05
- launch-wizard-12
-
- eni-attach-de56932b
- i-099e794cfa830e9be
+ eni-attach-05fac66f
+ i-8b5739f2
200278856672
0
attached
- 2017-09-04T13:26:00.000Z
+ 2013-09-23T20:11:52.000Z
true
- 54.208.121.144
+ 54.208.119.197
200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
true
-
- 10.0.0.4
+ 10.0.0.254
true
- 54.208.121.144
+ 54.208.119.197
200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
true
-
- 10.0.0.199
+ 10.0.0.208
false
@@ -31245,28 +44817,36 @@ http_interactions:
interface
-
- eni-83fc5323
- subnet-f849ff96
+ eni-4adc5ec2
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ladastest2
+ us-east-1d
+ Primary network interface
200278856672
- AIDAI37PIOA5B6VMIJRUU
false
- available
- 12:b7:bb:c9:a9:a8
- 10.0.0.249
+ in-use
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-2899b45d
+ launch-wizard-16
+
+ eni-attach-e6616b3e
+ i-02007c8f386e74470
+ 200278856672
+ 0
+ attached
+ 2017-12-13T15:04:34.000Z
+ true
+
-
- 10.0.0.249
+ 10.0.1.179
true
@@ -31274,48 +44854,48 @@ http_interactions:
interface
-
- eni-29e88329
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
- us-east-1a
+ us-east-1b
200278856672
false
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-f902c21c
- i-02975d4eb8e53bafd
+ eni-attach-d57a046c
+ i-0b2631823a0fdfc76
200278856672
0
attached
- 2017-08-10T19:10:05.000Z
+ 2018-07-25T10:56:16.000Z
true
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
amazon
true
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
amazon
true
@@ -31325,54 +44905,48 @@ http_interactions:
interface
-
- eni-2132bad2
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB lb-test3
+ eni-5c2a35df
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:65:97:2b:af:ce
- 10.0.0.51
+ 02:1e:4f:13:23:60
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
-
- sg-734efc0f
- quick-create-2-lbtest3
-
- -
- sg-0d2cd677
- quick-create-1
-
- -
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-c593d9ee
+ eni-attach-02e23f87add8aad1b
amazon-elb
1
attached
- 2017-01-28T12:33:16.000Z
+ 2018-05-25T12:03:25.000Z
false
- 54.88.156.69
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.0.51
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
- 54.88.156.69
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
@@ -31382,73 +44956,87 @@ http_interactions:
interface
-
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- us-east-1e
- Primary network interface
+ eni-85c03154
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
+ 0e:fb:8d:c6:e6:10
+ 10.0.1.253
true
-
- sg-24362241
- default
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-62fceb4d
- i-091fe7ccd76ddac3b
- 200278856672
+ eni-attach-04ccde3ecf22b7a4a
+ amazon-elb
1
attached
- 2017-05-16T18:56:22.000Z
+ 2018-03-05T02:06:29.000Z
false
+
+ 52.203.95.138
+
+ amazon-elb
+ true
+
-
- 10.0.0.129
+ 10.0.1.253
true
+
+ 52.203.95.138
+
+ amazon-elb
+ true
+
interface
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
Primary network interface
200278856672
false
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-38511448
- launch-wizard-47
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-075e6227
- i-0c1eee2b86c7aa4a1
+ eni-attach-5fcc62c4
+ i-0274ada368eb4da36
200278856672
0
attached
- 2017-08-29T19:14:36.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 10.0.1.85
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
@@ -31456,95 +45044,71 @@ http_interactions:
interface
-
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
+ us-east-1e
+ Primary network interface
200278856672
false
in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-08314440
+ launch-wizard-38
- eni-attach-cbd22453
- i-0bca58e6e540ddc39
+ eni-attach-b64f3e14
+ i-066465f361331dfa6
200278856672
0
attached
- 2017-05-03T10:47:06.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
-
- 10.2.0.239
+ 10.0.8.108
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
interface
-
- eni-fd35bd0e
+ eni-188b9e8c
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- ELB lb-test3
+ ELB EmSRefreshSpecVPCELB
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:6b:f1:dd:d8:38
- 10.0.0.63
+ 12:20:9c:e5:0e:9a
+ 10.0.0.119
true
-
- sg-734efc0f
- quick-create-2-lbtest3
-
- -
- sg-0d2cd677
- quick-create-1
-
- -
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-6793d94c
+ eni-attach-0893ce6442dcc61e5
amazon-elb
1
attached
- 2017-01-28T12:33:04.000Z
+ 2018-05-19T14:05:36.000Z
false
- 52.206.247.243
+ 52.86.136.121
amazon-elb
true
@@ -31552,10 +45116,10 @@ http_interactions:
-
- 10.0.0.63
+ 10.0.0.119
true
- 52.206.247.243
+ 52.86.136.121
amazon-elb
true
@@ -31566,83 +45130,56 @@ http_interactions:
interface
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
+ eni-3af276f7
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
-
- 200278856672
- false
- in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
- true
-
-
-
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-ff35f0d1
- i-0bad1e8ff60a6f29a
- 200278856672
- 0
- attached
- 2017-05-22T20:35:56.000Z
- true
-
-
-
- -
- 10.0.1.87
- true
-
-
-
- interface
-
- -
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
+ ELB EmSRefreshSpecVPCELB2
200278856672
- false
+ amazon-elb
+ true
in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 12:3b:28:53:d5:b2
+ 10.0.0.219
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-0d2cd677
+ quick-create-1
- eni-attach-aa928893
- i-0b1ec6330e0180f75
- 200278856672
- 0
+ eni-attach-037d7ab06aa17cf3a
+ amazon-elb
+ 1
attached
- 2017-09-23T18:24:21.000Z
- true
+ 2018-02-04T01:58:12.000Z
+ false
+
+ 52.86.128.239
+
+ amazon-elb
+ true
+
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 10.0.0.219
true
+
+ 52.86.128.239
+
+ amazon-elb
+ true
+
interface
-
- eni-a3902b84
+ eni-2b986f38
subnet-f849ff96
vpc-ff49ff91
us-east-1e
@@ -31650,8 +45187,8 @@ http_interactions:
200278856672
false
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
true
-
@@ -31660,16 +45197,16 @@ http_interactions:
- eni-attach-12a4c3e2
- i-fb694e66
+ eni-attach-455ec9ed
+ i-c72af2f6
200278856672
0
attached
- 2016-05-10T20:56:37.000Z
+ 2016-08-30T07:17:58.000Z
true
- 54.163.162.32
+ 54.208.71.4
amazon
true
@@ -31677,10 +45214,10 @@ http_interactions:
-
- 10.0.0.109
+ 10.0.0.122
true
- 54.163.162.32
+ 54.208.71.4
amazon
true
@@ -31691,145 +45228,102 @@ http_interactions:
interface
-
- eni-ad25f7cc
- subnet-f849ff96
+ eni-58cd6fcf
+ subnet-5f5a9670
vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
- eni-attach-05fac66f
- i-8b5739f2
+ eni-attach-494c3deb
+ i-0c37a7d012922752e
200278856672
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 54.208.119.197
-
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
- true
-
-
- 10.0.0.254
+ 10.0.8.189
true
-
- 54.208.119.197
-
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
- true
-
-
- -
- 10.0.0.208
-
- false
interface
-
- eni-5dcd5d49
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-1eec3adb
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ test-network-port
200278856672
- 210368014644
- true
- in-use
- 02:0f:73:10:12:3e
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ AIDAI37PIOA5B6VMIJRUU
+ false
+ available
+ 0e:49:87:ef:7f:c2
+ 10.0.1.129
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-57495ece
- amazon-elb
- 1
- attached
- 2017-03-28T13:37:12.000Z
- false
-
-
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
- amazon-elb
- true
-
-
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 10.0.1.129
true
-
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
- amazon-elb
- true
-
interface
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-65d59519
- launch-wizard-37
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-2d92e207
- i-08c033357b433ea2c
+ eni-attach-838d7a26
+ i-0622ab75f5f2ba752
200278856672
0
attached
- 2017-02-14T16:18:28.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.155
+ 10.0.8.55
true
@@ -31837,36 +45331,40 @@ http_interactions:
interface
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
+ eni-88c5a245
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
200278856672
false
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
-
- sg-24362241
+ sg-1e2cf271
default
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
- eni-attach-9413e1b8
- i-035fa3affa815d81d
+ eni-attach-d82c7915
+ i-004f3bd30726946d1
200278856672
0
attached
- 2017-03-21T19:39:52.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 10.0.1.230
+ 10.0.8.25
true
@@ -31874,36 +45372,38 @@ http_interactions:
interface
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
- Primary network interface
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
+
200278856672
false
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-67541b15
+ smartstate
- eni-attach-45f9a86f
- i-0999c6f9b18ead5fc
+ eni-attach-39fcca94
+ i-02cc7ad4129cefe1b
200278856672
0
attached
- 2017-02-16T16:40:47.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.78
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
@@ -31911,46 +45411,48 @@ http_interactions:
interface
-
- eni-70385dde
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB
+ eni-2e2639ad
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:cc:9f:fa:40:6a
- 10.0.0.245
+ 02:4a:7f:ba:fe:d6
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-0c6f467f93b126af7
+ eni-attach-0d27a2d0bd0ecc36e
amazon-elb
1
attached
- 2017-08-01T07:18:57.000Z
+ 2018-05-25T12:03:48.000Z
false
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.0.245
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
@@ -31960,65 +45462,36 @@ http_interactions:
interface
-
- eni-bf97324c
- subnet-f849ff96
+ eni-2665f5bf
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ladas-tst1
- 200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 12:fa:36:7f:7f:c2
- 10.0.0.87
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
-
- -
- 10.0.0.87
- true
-
-
-
- interface
-
- -
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-000ff571
- launch-wizard-46
+ sg-041d424d
+ launch-wizard-36
- eni-attach-4735d966
- i-03d706b95aa8b12ce
+ eni-attach-7e503066
+ i-05d2313e6b9a42b16
200278856672
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.0.1.229
+ 10.0.1.192
true
@@ -32026,137 +45499,78 @@ http_interactions:
interface
-
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
+ eni-bf97324c
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
-
- 200278856672
- false
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- i-0c1542ba946875280
- 200278856672
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
-
- -
- 10.0.1.90
- true
-
-
-
- interface
-
- -
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
-
+ ladas-tst1
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ available
+ 12:fa:36:7f:7f:c2
+ 10.0.0.87
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
-
-
-
- eni-attach-3a6592a2
- i-0150ac66c83e0eae8
- 200278856672
- 0
- attached
- 2017-05-02T19:39:36.000Z
- true
-
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.87
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
interface
-
- eni-6f153153
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
- RDSNetworkInterface
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+
200278856672
- AIDAJ6DRABHUIWCUBKTGK
- true
+ false
in-use
- 06:de:59:b9:f4:ed
- 172.30.0.162
- ip-172-30-0-162.ec2.internal
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
-
- sg-9593cdec
- rds-launch-wizard
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
- eni-attach-958ef9e4
- 920715386331
- 1
+ eni-attach-f41e8d30
+ i-0828f09c91ab89a97
+ 200278856672
+ 0
attached
- 2016-01-26T15:26:07.000Z
- false
+ 2018-03-01T21:31:41.000Z
+ true
- 52.71.88.121
- ec2-52-71-88-121.compute-1.amazonaws.com
- 920715386331
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
-
- 172.30.0.162
- ip-172-30-0-162.ec2.internal
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
- 52.71.88.121
- ec2-52-71-88-121.compute-1.amazonaws.com
- 920715386331
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
@@ -32165,36 +45579,38 @@ http_interactions:
interface
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- sg-24362241
- default
+ sg-a86bf7de
+ stomsa
- eni-attach-59c6f675
- i-0659dcbc66cb830e5
+ eni-attach-2bb4992d
+ i-0d0cbf4c0a5e4f8fc
200278856672
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-03-12T13:48:51.000Z
true
-
- 10.0.1.70
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
@@ -32202,36 +45618,36 @@ http_interactions:
interface
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-24362241
- default
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-8a10e2a6
- i-0347d4075310c21e6
+ eni-attach-0dbdb6d5
+ i-0510954911e45949b
200278856672
0
attached
- 2017-03-21T19:39:50.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 10.0.1.167
+ 10.0.1.66
true
@@ -32239,34 +45655,42 @@ http_interactions:
interface
-
- eni-f2397458
- subnet-16c70477
+ eni-179d9880
+ subnet-f849ff96
vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB2
+ us-east-1e
+ ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 0e:41:ba:7f:58:a6
- 10.0.1.146
+ 12:7e:c1:7a:94:48
+ 10.0.0.129
true
+
-
+ sg-734efc0f
+ quick-create-2-lbtest3
+
-
sg-0d2cd677
quick-create-1
+ -
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+
- eni-attach-05098d3c56e0d49a6
+ eni-attach-03212c56c09ef849f
amazon-elb
1
attached
- 2017-09-06T21:09:17.000Z
+ 2018-06-02T21:08:55.000Z
false
- 52.207.128.155
+ 52.6.7.19
amazon-elb
true
@@ -32274,10 +45698,10 @@ http_interactions:
-
- 10.0.1.146
+ 10.0.0.129
true
- 52.207.128.155
+ 52.6.7.19
amazon-elb
true
@@ -32288,313 +45712,1677 @@ http_interactions:
interface
-
- eni-fe24b408
- subnet-f849ff96
+ eni-b6d41667
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
-
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-0e5ec721
- i-0fca61ededa522f1a
+ eni-attach-3a325e3c
+ i-0a7aebaf459f1f9e7
200278856672
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 54.145.134.133
-
- amazon
- true
-
-
- 10.0.0.36
+ 10.0.1.19
true
-
- 54.145.134.133
-
- amazon
- true
-
interface
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:53 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeRouteTables&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145953Z
+ X-Amz-Content-Sha256:
+ - 1732d4b128d27cd99c04206dcfdf973ded4df03fd0ba4691763d13febf64384d
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=55f8c9c24ea68e21b7782a7022be82035d198d4c3861dfec4c8a4dc748ec51aa
+ Content-Length:
+ - '45'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:53 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 0307b1e9-3405-48d5-b94d-a366cbf9289b
+
+ -
+ rtb-865664fb
+ vpc-ff49ff91
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+
+
+
+
+ -
+ Name
+ bronagh-test-routetable
+
+
+
-
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
- Primary network interface
- 200278856672
- false
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
+ rtb-d37690ab
+ vpc-8cf117f5
+
-
- sg-86e19cf8
- launch-wizard-40
+ 10.2.0.0/16
+ local
+ active
+ CreateRouteTable
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ 0.0.0.0/0
+ igw-64924d02
+ active
+ CreateRoute
-
-
- eni-attach-88392ea7
- i-091fe7ccd76ddac3b
- 200278856672
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
-
-
+
+
-
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
+ rtbassoc-d35ff3a8
+ rtb-d37690ab
+ subnet-2190b144
+ false
-
-
- interface
+
+
+
+ -
+ Name
+ Test Name
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ RouteTable
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+
-
- eni-45fef051
- subnet-2190b144
+ rtb-9c7492e4
vpc-8cf117f5
- us-east-1c
-
- 200278856672
- false
- in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
- true
-
+
-
- sg-4cc30d32
- default
+ 10.2.0.0/16
+ local
+ active
+ CreateRouteTable
-
-
- eni-attach-877ba01f
- i-0d794150f7fd264c4
- 200278856672
- 0
- attached
- 2017-06-09T15:00:46.000Z
- true
-
+
+
+ -
+ rtbassoc-2a5cf051
+ rtb-9c7492e4
+ true
+
+
+
-
+
+ -
+ rtb-04c7f579
+ vpc-36cad24e
+
-
- 10.2.0.191
- true
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
-
-
- interface
+
+
+ -
+ rtbassoc-355ed949
+ rtb-04c7f579
+ true
+
+
+
+
-
- eni-6e7aa46e
- subnet-e88815d5
+ rtb-93067bea
+ vpc-c3d2f1a5
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+ -
+ 0.0.0.0/0
+ igw-f3b65295
+ active
+ CreateRoute
+
+
+
+ -
+ rtbassoc-1f3b2c67
+ rtb-93067bea
+ subnet-de2363bb
+ false
+
+
+
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ PublicRouteTable
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+
+ -
+ rtb-d86c6abc
vpc-aee2a6ca
- us-east-1a
-
- 200278856672
- false
- in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
-
+
-
- sg-97cd32e6
- MIQ_SSA
+ 172.30.0.0/16
+ local
+ active
+ CreateRouteTable
-
-
- eni-attach-4451b1a7
- i-0951b95d6db76519d
- 200278856672
- 0
- attached
- 2017-07-26T15:15:29.000Z
- true
-
+ -
+ 0.0.0.0/0
+ igw-2d7bb749
+ active
+ CreateRoute
+
+
+
+ -
+ rtbassoc-98c544ff
+ rtb-d86c6abc
+ true
+
+ -
+ rtbassoc-ca4056b5
+ rtb-d86c6abc
+ subnet-e88815d5
+ false
+
+
+
-
+
+ -
+ rtb-f749ff99
+ vpc-ff49ff91
+
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
-
-
- interface
+ -
+ 0.0.0.0/0
+ igw-fe49ff90
+ active
+ CreateRoute
+
+
+
+ -
+ rtbassoc-862f74f9
+ rtb-f749ff99
+ subnet-5f5a9670
+ false
+
+ -
+ rtbassoc-cef0c9b4
+ rtb-f749ff99
+ subnet-f849ff96
+ false
+
+
+
+
+ -
+ Name
+ EmsRefreshSpecRouter
+
+
+
+ -
+ rtb-fd49ff93
+ vpc-ff49ff91
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+
+
+ -
+ rtbassoc-fa49ff94
+ rtb-fd49ff93
+ true
+
+
+
+
+
+ -
+ rtb-21017c58
+ vpc-c3d2f1a5
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+
+
+ -
+ rtbassoc-8a2730f2
+ rtb-21017c58
+ true
+
+
+
+
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:54 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeAddresses&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145954Z
+ X-Amz-Content-Sha256:
+ - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=06212e1395cfb6c1f9b38da346db08fdcb7fb5199e19190d26f1b199f5bf4759
+ Content-Length:
+ - '43'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:54 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 8c7e805d-1575-43b7-9e0c-d00eb93ec585
+
+ -
+ 23.23.198.134
+ standard
+
+
+ -
+ 23.23.209.146
+ standard
+
+
+ -
+ 54.221.202.53
+ standard
+ i-680071e9
-
- eni-5d3479f7
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB
- 200278856672
- 210368014644
- true
- in-use
- 0e:ad:8f:b5:e7:56
- 10.0.1.191
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-00664517cacff8d75
- amazon-elb
- 1
- attached
- 2017-09-06T21:09:18.000Z
- false
-
-
- 52.20.26.89
-
- amazon-elb
- true
-
-
-
- -
- 10.0.1.191
- true
-
- 52.20.26.89
-
- amazon-elb
- true
-
-
-
-
- interface
+ 54.221.202.64
+ standard
+
-
- eni-b6f161a2
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
- 200278856672
- 210368014644
- true
- in-use
- 02:18:bf:52:9a:3e
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
- true
-
-
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
-
-
-
- eni-attach-29495eb0
- amazon-elb
- 1
- attached
- 2017-03-28T13:37:48.000Z
- false
-
-
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
- amazon-elb
- true
-
-
-
- -
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
- true
-
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
- amazon-elb
- true
-
-
-
-
- interface
+ 54.235.113.32
+ standard
+
-
-
+ -
+ 34.202.178.10
+ eipalloc-9a4472ab
+ vpc
+ i-0bca58e6e540ddc39
+ eipassoc-13766e23
+ eni-8fefae9b
+ 200278856672
+ 10.2.0.239
+
+ -
+ 34.228.91.176
+ eipalloc-135bd126
+ vpc
+
+ -
+ 52.70.78.137
+ eipalloc-3d8a720f
+ vpc
+
+ -
+ 54.208.119.197
+ eipalloc-ce53d7a0
+ vpc
+ i-8b5739f2
+ eipassoc-cc6e58f1
+ eni-ad25f7cc
+ 200278856672
+ 10.0.0.254
+
+ -
+ 54.208.121.144
+ eipalloc-8d53d7e3
+ vpc
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:54 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeStacks&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145954Z
+ X-Amz-Content-Sha256:
+ - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=911f80a469e1751c16f1123ea79cc83f1ba5196c68056ee377f9d35fb82590f1
+ Content-Length:
+ - '40'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 2ef8c6b5-b053-11e8-83d7-87f6e6c97c88
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '19861'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:54 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:12:03.839Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+ SC-200278856672-pp-kmmlut3eog5jm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:11:35.284Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+ SC-200278856672-pp-dpnpbpe64657e
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ Newly created application URL
+ URL
+ http://34.202.178.10
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2017-05-03T10:46:56.780Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+ AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
+ true
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+
+ EmsRefreshSpecStack-value2
+ EmsRefreshSpecStack-key2
+
+
+ EmsRefreshSpecStack-value1
+ EmsRefreshSpecStack-key1
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceSecurityGroupID
+ sg-76c10f08
+
+
+ DBRootPassword
+ ****
+
+
+ SubnetID
+ subnet-2190b144
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ IP Address of the host
+ Bastion
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2017-05-03T10:46:04.698Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ 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_COMPLETE
+ false
+
+
+ EmsRefreshSpecStack-value2
+ EmsRefreshSpecStack-key2
+
+
+ EmsRefreshSpecStack-value1
+ EmsRefreshSpecStack-key1
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ URL of the website
+ WebSite
+ http://EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+
+
+ 2017-03-27T12:20:22.217Z
+
+ arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+ AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ true
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ WebServerCount
+ 1
+
+
+ WebServerInstanceType
+ t2.nano
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+
+
+ 2017-03-27T11:33:29.904Z
+
+ arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+ EmsRefreshSpecStackWithAutoscalingGroup2
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ true
+
+
+ EmsRefreshSpecResourceGroupTagValue
+ EmsRefreshSpecResourceGroupTag
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ 2ef8c6b5-b053-11e8-83d7-87f6e6c97c88
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:55 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeStacks&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145955Z
+ X-Amz-Content-Sha256:
+ - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=412ffd46ace8862c32117d50bd2a4f69e159db37d9b1f3e1bade1017c4af2159
+ Content-Length:
+ - '40'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 2fab9bfb-b053-11e8-9748-8fbb79e9d987
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '19861'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:55 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1FZE3MOB69WMC-2092599611.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:12:03.839Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+ SC-200278856672-pp-kmmlut3eog5jm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-1EUDCD7AKWGXB-1514070637.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T12:11:35.284Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+ SC-200278856672-pp-dpnpbpe64657e
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ Newly created application URL
+ URL
+ http://34.202.178.10
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2017-05-03T10:46:56.780Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+ AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
+ true
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+
+ EmsRefreshSpecStack-value2
+ EmsRefreshSpecStack-key2
+
+
+ EmsRefreshSpecStack-value1
+ EmsRefreshSpecStack-key1
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceSecurityGroupID
+ sg-76c10f08
+
+
+ DBRootPassword
+ ****
+
+
+ SubnetID
+ subnet-2190b144
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ IP Address of the host
+ Bastion
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2017-05-03T10:46:04.698Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ 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_COMPLETE
+ false
+
+
+ EmsRefreshSpecStack-value2
+ EmsRefreshSpecStack-key2
+
+
+ EmsRefreshSpecStack-value1
+ EmsRefreshSpecStack-key1
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
+
+
+
+ URL of the website
+ WebSite
+ http://EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+
+
+ 2017-03-27T12:20:22.217Z
+
+ arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+ AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ true
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ WebServerCount
+ 1
+
+
+ WebServerInstanceType
+ t2.nano
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
+
+
+ 2017-03-27T11:33:29.904Z
+
+ arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+ EmsRefreshSpecStackWithAutoscalingGroup2
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ true
+
+
+ EmsRefreshSpecResourceGroupTagValue
+ EmsRefreshSpecResourceGroupTag
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ 2fab9bfb-b053-11e8-9748-8fbb79e9d987
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:57 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145957Z
+ X-Amz-Content-Sha256:
+ - 175dd3563745e0edd920aa5e1186c1ecc417142c8754ad55b6fefb0d78da9a7f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=cc3b9b9eb05ac6a421cc12e41d204fa521dfda7689f6627dd0c6b17bf484271a
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 30604635-b053-11e8-8d96-5d418f4e0fd5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:56 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-04T13:38:44.922Z
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-04T13:38:53.347Z
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T13:38:56.729Z
+ SC-200278856672-pp-5pyltbgyzheqm-LaunchConfig-1KRBYT65PYDJY
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T13:41:25.707Z
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 30604635-b053-11e8-8d96-5d418f4e0fd5
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:57 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-kmmlut3eog5jm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145957Z
+ X-Amz-Content-Sha256:
+ - b97d6dafce2eb15f8b48c6f8f8632a91fd2949c097244bc7271d80c8744181ef
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3b6d0078c4fb516d1fccd72783f896725c9638f06e943ebe4467c137fd369811
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 30ac1c33-b053-11e8-bfda-751704677104
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2490'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:57 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-04T12:12:09.241Z
+ SC-200278-ElasticL-1FZE3MOB69WMC
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-04T12:12:17.645Z
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T12:12:20.596Z
+ SC-200278856672-pp-kmmlut3eog5jm-LaunchConfig-1OKSZDM92RBKG
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T12:15:10.214Z
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 30ac1c33-b053-11e8-bfda-751704677104
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 14:59:58 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-dpnpbpe64657e&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T145958Z
+ X-Amz-Content-Sha256:
+ - e2518fc8e2f734f91d752f6df25faf5193464522102bc55d79e4007cba29df5a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b00ef15faaabe164688d7ea4f14d86f0de7842a03972bead1e9c1a4af55c672c
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 30f7a439-b053-11e8-bfda-751704677104
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 14:59:57 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-04T12:11:39.968Z
+ SC-200278-ElasticL-1EUDCD7AKWGXB
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-04T12:11:48.639Z
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T12:11:51.871Z
+ SC-200278856672-pp-dpnpbpe64657e-LaunchConfig-1VKNSV250AM86
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T12:14:20.745Z
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 30f7a439-b053-11e8-bfda-751704677104
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:50 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:58 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=DescribeRouteTables&Version=2016-11-15
+ string: Action=ListStackResources&StackName=billy1&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080850Z
+ - 20180904T145958Z
X-Amz-Content-Sha256:
- - 1732d4b128d27cd99c04206dcfdf973ded4df03fd0ba4691763d13febf64384d
+ - 0ac8d282d9bebb8cc9d81b3ad8cd95d1ea7a5deb39aeae4502f26b44e5053da4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=32a8fc8b43ff179b80be1c7ee89246624e68fce8b8c55c6326d27c77371e15b8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=efe0c579fffb871c3d851cc113087542c7c9a3437a0ef3eae6f40cea3b036bfb
Content-Length:
- - '45'
+ - '61'
Accept:
- "*/*"
response:
@@ -32602,305 +47390,49 @@ http_interactions:
code: 200
message: OK
headers:
+ X-Amzn-Requestid:
+ - 31461302-b053-11e8-b246-714be3e6b2db
Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ - text/xml
+ Content-Length:
+ - '315'
Date:
- - Tue, 26 Sep 2017 08:08:45 GMT
- Server:
- - AmazonEC2
+ - Tue, 04 Sep 2018 14:59:58 GMT
body:
encoding: UTF-8
- string: |-
-
-
- a3f99447-729c-4bb7-bb9e-98bd90912b72
-
- -
- rtb-d37690ab
- vpc-8cf117f5
-
-
-
- 10.2.0.0/16
- local
- active
- CreateRouteTable
-
- -
- 0.0.0.0/0
- igw-64924d02
- active
- CreateRoute
-
-
-
- -
- rtbassoc-d35ff3a8
- rtb-d37690ab
- subnet-2190b144
- false
-
-
-
-
- -
- Name
- Test Name
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- RouteTable
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
-
-
- -
- rtb-9c7492e4
- vpc-8cf117f5
-
-
-
- 10.2.0.0/16
- local
- active
- CreateRouteTable
-
-
-
- -
- rtbassoc-2a5cf051
- rtb-9c7492e4
- true
-
-
-
-
-
- -
- rtb-27b23842
- vpc-a06de3c5
-
-
-
- 10.0.0.0/16
- local
- active
- CreateRouteTable
-
- -
- 0.0.0.0/0
- igw-1e943f7b
- active
- CreateRoute
-
-
-
- -
- rtbassoc-be6501db
- rtb-27b23842
- true
-
-
-
-
-
- -
- rtb-93067bea
- vpc-c3d2f1a5
-
-
-
- 10.0.0.0/16
- local
- active
- CreateRouteTable
-
- -
- 0.0.0.0/0
- igw-f3b65295
- active
- CreateRoute
-
-
-
- -
- rtbassoc-1f3b2c67
- rtb-93067bea
- subnet-de2363bb
- false
-
-
-
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Network
- Public
-
- -
- aws:cloudformation:logical-id
- PublicRouteTable
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
-
-
- -
- rtb-d86c6abc
- vpc-aee2a6ca
-
-
-
- 172.30.0.0/16
- local
- active
- CreateRouteTable
-
- -
- 0.0.0.0/0
- igw-2d7bb749
- active
- CreateRoute
-
-
-
- -
- rtbassoc-98c544ff
- rtb-d86c6abc
- true
-
-
-
-
-
- -
- rtb-f749ff99
- vpc-ff49ff91
-
-
-
- 10.0.0.0/16
- local
- active
- CreateRouteTable
-
- -
- 0.0.0.0/0
- igw-fe49ff90
- active
- CreateRoute
-
-
-
- -
- rtbassoc-cef0c9b4
- rtb-f749ff99
- subnet-f849ff96
- false
-
-
-
-
- -
- Name
- EmsRefreshSpecRouter
-
-
-
- -
- rtb-fd49ff93
- vpc-ff49ff91
-
-
-
- 10.0.0.0/16
- local
- active
- CreateRouteTable
-
-
-
- -
- rtbassoc-fa49ff94
- rtb-fd49ff93
- true
-
-
-
-
-
- -
- rtb-21017c58
- vpc-c3d2f1a5
-
-
-
- 10.0.0.0/16
- local
- active
- CreateRouteTable
-
-
-
- -
- rtbassoc-8a2730f2
- rtb-21017c58
- true
-
-
-
-
-
-
-
+ string: |
+
+
+
+
+
+ 31461302-b053-11e8-b246-714be3e6b2db
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:51 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:59 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=DescribeAddresses&Version=2016-11-15
+ string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080851Z
+ - 20180904T145959Z
X-Amz-Content-Sha256:
- - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
+ - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ae74c916b312436f11e0f41f43f88b18f733e3d72c53ee7ce075a3242f8bfae0
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=06a7ef28c84b4af76f66efe02b501d1e60e9e8672f0c47a5c6fb8e148cd95729
Content-Length:
- - '43'
+ - '106'
Accept:
- "*/*"
response:
@@ -32908,124 +47440,70 @@ http_interactions:
code: 200
message: OK
headers:
+ X-Amzn-Requestid:
+ - 3194a82b-b053-11e8-a781-f5d0275018ab
Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ - text/xml
+ Content-Length:
+ - '1297'
Date:
- - Tue, 26 Sep 2017 08:08:45 GMT
- Server:
- - AmazonEC2
+ - Tue, 04 Sep 2018 14:59:59 GMT
body:
encoding: UTF-8
- string: |-
-
-
- 803908ce-2a73-42a7-83bc-49dd0a49e4cb
-
- -
- 23.23.198.134
- standard
-
-
- -
- 23.23.209.146
- standard
-
-
- -
- 54.221.193.142
- standard
-
-
- -
- 54.221.202.53
- standard
- i-680071e9
-
- -
- 54.221.202.64
- standard
-
-
- -
- 54.208.119.197
- eipalloc-ce53d7a0
- vpc
- i-8b5739f2
- eipassoc-cc6e58f1
- eni-ad25f7cc
- 200278856672
- 10.0.0.254
-
- -
- 52.5.18.129
- eipalloc-1f46572e
- vpc
- i-091fe7ccd76ddac3b
- eipassoc-9132d3a5
- eni-a66cca6f
- 200278856672
- 10.0.1.239
-
- -
- 54.208.121.144
- eipalloc-8d53d7e3
- vpc
- i-099e794cfa830e9be
- eipassoc-d87fd3ec
- eni-6933e6c9
- 200278856672
- 10.0.0.4
-
- -
- 34.202.178.10
- eipalloc-9a4472ab
- vpc
- i-0bca58e6e540ddc39
- eipassoc-13766e23
- eni-8fefae9b
- 200278856672
- 10.2.0.239
-
- -
- 52.70.78.137
- eipalloc-3d8a720f
- vpc
- i-0b72e0b70e7fae3c9
- eipassoc-54289160
- eni-b9cc7f19
- 200278856672
- 10.0.0.236
-
-
-
+ string: |
+
+
+
+
+ 2017-05-03T10:49:32.560Z
+ 34.202.178.10
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ IPAddress
+ AWS::EC2::EIP
+
+
+ 2017-05-03T10:48:56.988Z
+ i-0bca58e6e540ddc39
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::EC2::Instance
+
+
+
+
+ 3194a82b-b053-11e8-a781-f5d0275018ab
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:52 GMT
+ recorded_at: Tue, 04 Sep 2018 14:59:59 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeStacks&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.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080852Z
+ - 20180904T145959Z
X-Amz-Content-Sha256:
- - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
+ - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=fba350906022efe20296f1f95a204651dd619f1d551eca700cb8751b91ed22ae
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ada6c106f7fd33e4227fcff2b21b74e8de84db0adcb3248652e1fd3821dacb09
Content-Length:
- - '40'
+ - '74'
Accept:
- "*/*"
response:
@@ -33034,234 +47512,221 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ec35dd1d-a291-11e7-b78f-0561d623f756
+ - 31e97e9d-b053-11e8-8d96-5d418f4e0fd5
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '8877'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:47 GMT
+ - Tue, 04 Sep 2018 15:00:00 GMT
body:
encoding: UTF-8
string: |
-
-
-
+
+
+
-
-
- Newly created application URL
- URL
- http://34.202.178.10
-
-
-
- CAPABILITY_NAMED_IAM
-
- 2017-05-03T10:46:56.780Z
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
- AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
- true
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
-
- EmsRefreshSpecStack-value2
- EmsRefreshSpecStack-key2
-
-
- EmsRefreshSpecStack-value1
- EmsRefreshSpecStack-key1
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- InstanceSecurityGroupID
- sg-76c10f08
-
-
- DBRootPassword
- ****
-
-
- SubnetID
- subnet-2190b144
-
-
- InstanceType
- t2.nano
-
-
+ 2017-05-03T10:46:51.634Z
+ EmsRe-Attac-18IYH2NXW163I
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ AttachGateway
+ AWS::EC2::VPCGatewayAttachment
+
+
+ 2017-05-03T10:46:59.572Z
+ EmsRe-Inbou-1M80E3XJX5ZG6
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:56.467Z
+ EmsRe-Inbou-E8UR0I5STC4V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:55.099Z
+ EmsRe-Inbou-1E29UZ91J3L0R
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundSSHNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:51.481Z
+ sg-76c10f08
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-05-03T10:46:29.550Z
+ igw-64924d02
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InternetGateway
+ AWS::EC2::InternetGateway
-
-
- IP Address of the host
- Bastion
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
-
-
- CAPABILITY_NAMED_IAM
-
- 2017-05-03T10:46:04.698Z
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
- 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_COMPLETE
- false
-
-
- EmsRefreshSpecStack-value2
- EmsRefreshSpecStack-key2
-
-
- EmsRefreshSpecStack-value1
- EmsRefreshSpecStack-key1
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- DBRootPassword
- ****
-
-
- InstanceType
- t2.nano
-
-
+ 2017-05-03T10:46:34.869Z
+ acl-e616ad9f
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ NetworkAcl
+ AWS::EC2::NetworkAcl
-
-
- URL of the website
- WebSite
- http://EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
-
-
- 2017-03-27T12:20:22.217Z
-
- arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
- EmsRefreshSpecVpcStackWithAutoscalingGroup
- AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.
- CREATE_COMPLETE
- true
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- WebServerCount
- 1
-
-
- WebServerInstanceType
- t2.nano
-
-
- SSHLocation
- 0.0.0.0/0
-
-
+ 2017-05-03T10:46:56.226Z
+ EmsRe-OutBo-1NZIAZJB04JPV
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
-
-
- URL of the website
- URL
- http://EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
-
-
- 2017-03-27T11:33:29.904Z
-
- arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
- EmsRefreshSpecStackWithAutoscalingGroup2
- AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
- CREATE_COMPLETE
- true
-
-
- EmsRefreshSpecResourceGroupTagValue
- EmsRefreshSpecResourceGroupTag
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- InstanceType
- t1.micro
-
-
+ 2017-05-03T10:46:56.162Z
+ EmsRe-OutBo-11CPJOERKOC1S
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPSNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
-
-
+
+ 2017-05-03T10:46:57.712Z
+ EmsRe-OutBo-1VCOFXN25WKE2
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:47:11.450Z
+ EmsRe-Route-CE90KA6C89YL
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Route
+ AWS::EC2::Route
+
+
+ 2017-05-03T10:46:35.945Z
+ rtb-d37690ab
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ RouteTable
+ AWS::EC2::RouteTable
+
+
+ 2017-05-03T10:46:51.908Z
+ subnet-2190b144
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Subnet
+ AWS::EC2::Subnet
+
+
+ 2017-05-03T10:47:12.194Z
+ aclassoc-5960cf29
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetNetworkAclAssociation
+ AWS::EC2::SubnetNetworkAclAssociation
+
+
+ 2017-05-03T10:47:11.882Z
+ rtbassoc-d35ff3a8
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetRouteTableAssociation
+ AWS::EC2::SubnetRouteTableAssociation
+
+
+ 2017-05-03T10:46:30.347Z
+ vpc-8cf117f5
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ VPC
+ AWS::EC2::VPC
+
+
+ 2017-05-03T10:49:38.256Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::CloudFormation::Stack
+
+
+
- ec35dd1d-a291-11e7-b78f-0561d623f756
+ 31e97e9d-b053-11e8-8d96-5d418f4e0fd5
-
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:53 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:00 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeStacks&Version=2010-05-15
+ string: Action=ListStackResources&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080853Z
+ - 20180904T150000Z
X-Amz-Content-Sha256:
- - 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
+ - a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b29351e93afad14ebb8d20434c353bda3bb5b84a73d21ab9b9192638d8e777a0
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=550978621be053e1248c90b499a41b5cac75b4aabfea09929cb0e9cc4385d6a7
Content-Length:
- - '40'
+ - '97'
Accept:
- "*/*"
response:
@@ -33270,234 +47735,231 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ecf0a1b4-a291-11e7-b040-3d175eb742df
+ - 32366644-b053-11e8-9ab1-fb1c2067ed6d
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '9436'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:47 GMT
+ - Tue, 04 Sep 2018 15:00:00 GMT
body:
encoding: UTF-8
string: |
-
-
-
+
+
+
-
-
- Newly created application URL
- URL
- http://34.202.178.10
-
-
-
- CAPABILITY_NAMED_IAM
-
- 2017-05-03T10:46:56.780Z
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
- AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
- true
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
-
- EmsRefreshSpecStack-value2
- EmsRefreshSpecStack-key2
-
-
- EmsRefreshSpecStack-value1
- EmsRefreshSpecStack-key1
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- InstanceSecurityGroupID
- sg-76c10f08
-
-
- DBRootPassword
- ****
-
-
- SubnetID
- subnet-2190b144
-
-
- InstanceType
- t2.nano
-
-
+ 2017-03-27T12:21:09.758Z
+ EmsRe-Gatew-1LHVB7WCBDH2J
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ GatewayToInternet
+ AWS::EC2::VPCGatewayAttachment
-
-
- IP Address of the host
- Bastion
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
-
-
- CAPABILITY_NAMED_IAM
-
- 2017-05-03T10:46:04.698Z
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
- 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_COMPLETE
- false
-
-
- EmsRefreshSpecStack-value2
- EmsRefreshSpecStack-key2
-
-
- EmsRefreshSpecStack-value1
- EmsRefreshSpecStack-key1
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- DBRootPassword
- ****
-
-
- InstanceType
- t2.nano
-
-
+ 2017-03-27T12:21:18.408Z
+ EmsRe-Inbou-114C8QHJD1A0
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundDynamicPortPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
-
-
- URL of the website
- WebSite
- http://EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
-
-
- 2017-03-27T12:20:22.217Z
-
- arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
- EmsRefreshSpecVpcStackWithAutoscalingGroup
- AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.
- CREATE_COMPLETE
- true
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- WebServerCount
- 1
-
-
- WebServerInstanceType
- t2.nano
-
-
- SSHLocation
- 0.0.0.0/0
-
-
+ 2017-03-27T12:21:17.491Z
+ EmsRe-Inbou-10A1RE6O5U1OG
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundHTTPPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
-
-
- URL of the website
- URL
- http://EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
-
-
- 2017-03-27T11:33:29.904Z
-
- arn:aws:sns:us-east-1:200278856672:AWSConfig_topic
-
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
- EmsRefreshSpecStackWithAutoscalingGroup2
- AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
- CREATE_COMPLETE
- true
-
-
- EmsRefreshSpecResourceGroupTagValue
- EmsRefreshSpecResourceGroupTag
-
-
-
-
-
- KeyName
- EmsRefreshSpec-KeyPair
-
-
- SSHLocation
- 0.0.0.0/0
-
-
- InstanceType
- t1.micro
-
-
+ 2017-03-27T12:21:18.284Z
+ EmsRe-Inbou-NCOLEFTRFR80
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundSSHPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
-
-
+
+ 2017-03-27T12:20:47.040Z
+ igw-f3b65295
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InternetGateway
+ AWS::EC2::InternetGateway
+
+
+ 2017-03-27T12:21:17.267Z
+ EmsRe-Outbo-GYCVGUJ9J26R
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutboundPublicNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-03-27T12:21:19.063Z
+ EmsRefres-PublicEl-15YIQXDK2TNOF
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2017-03-27T12:21:12.098Z
+ sg-5946c626
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicLoadBalancerSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-03-27T12:20:55.848Z
+ acl-e98b7590
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicNetworkAcl
+ AWS::EC2::NetworkAcl
+
+
+ 2017-03-27T12:21:30.588Z
+ EmsRe-Publi-13PVGYUA7QQU3
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicRoute
+ AWS::EC2::Route
+
+
+ 2017-03-27T12:20:54.594Z
+ rtb-93067bea
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicRouteTable
+ AWS::EC2::RouteTable
+
+
+ 2017-03-27T12:21:09.517Z
+ subnet-de2363bb
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnet
+ AWS::EC2::Subnet
+
+
+ 2017-03-27T12:21:35.209Z
+ aclassoc-4471fa35
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnetNetworkAclAssociation
+ AWS::EC2::SubnetNetworkAclAssociation
+
+
+ 2017-03-27T12:21:31.953Z
+ rtbassoc-1f3b2c67
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ PublicSubnetRouteTableAssociation
+ AWS::EC2::SubnetRouteTableAssociation
+
+
+ 2017-03-27T12:20:47.805Z
+ vpc-c3d2f1a5
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ VPC
+ AWS::EC2::VPC
+
+
+ 2017-03-27T12:23:33.873Z
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerFleet
+ AWS::AutoScaling::AutoScalingGroup
+
+
+ 2017-03-27T12:21:41.260Z
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerLaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2017-03-27T12:21:35.209Z
+ sg-9242c2ed
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+
- ecf0a1b4-a291-11e7-b040-3d175eb742df
+ 32366644-b053-11e8-9ab1-fb1c2067ed6d
-
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:54 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:00 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ string: Action=ListStackResources&StackName=EmsRefreshSpecStackWithAutoscalingGroup2&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080854Z
+ - 20180904T150000Z
X-Amz-Content-Sha256:
- - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
+ - cf1ad38a5e121d365a76501102e3a4a993d4244281ebab672dff531c33021b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d0630a3f152d8662b52f99e2d01b9374874ddaaff96d054fbaf3b2fdbe04793e
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=408b9b9d967fb20d4cf63d15cd712502a95b4b4310d919ed0a0c39f9f6e740bb
Content-Length:
- - '106'
+ - '95'
Accept:
- "*/*"
response:
@@ -33506,13 +47968,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - edb6fe85-a291-11e7-b7c7-5d564ff85ba2
+ - 3285e5f7-b053-11e8-969d-c5d52b54f6f0
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '2513'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:49 GMT
+ - Tue, 04 Sep 2018 15:00:00 GMT
body:
encoding: UTF-8
string: |
@@ -33520,49 +47984,75 @@ http_interactions:
- 2017-05-03T10:49:32.560Z
- 34.202.178.10
+ 2017-03-27T11:33:42.596Z
+ EmsRefres-ElasticL-UPI0RRUFR3HI
CREATE_COMPLETE
- IPAddress
- AWS::EC2::EIP
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
- 2017-05-03T10:48:56.988Z
- i-0bca58e6e540ddc39
+ 2017-03-27T11:34:04.759Z
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
CREATE_COMPLETE
- WebServerInstance
- AWS::EC2::Instance
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-03-27T11:34:09.927Z
+ EmsRefreshSpecStackWithAutoscalingGroup2-LaunchConfig-TS2701Z3OAJM
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2017-03-27T11:35:43.230Z
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
- edb6fe85-a291-11e7-b7c7-5d564ff85ba2
+ 3285e5f7-b053-11e8-969d-c5d52b54f6f0
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:55 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:01 GMT
- request:
method: post
- uri: https://cloudformation.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack&Version=2010-05-15
+ string: Action=DescribeKeyPairs&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080855Z
+ - 20180904T150001Z
X-Amz-Content-Sha256:
- - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
+ - e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=dd772edbb4df38000ffa10a9fa3dd04938f3d5dc2a7d7623fd0762476444d5bb
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=67227369c28ee8a365cf2ed9d527efa549f0e61b9f0f1448b5af783d477fb08b
Content-Length:
- - '74'
+ - '42'
Accept:
- "*/*"
response:
@@ -33570,171 +48060,548 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - ee42eb70-a291-11e7-af0e-a909b4f16232
Content-Type:
- - text/xml
- Content-Length:
- - '6667'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:50 GMT
+ - Tue, 04 Sep 2018 15:00:00 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
string: |
-
-
-
-
- 2017-05-03T10:46:51.634Z
- EmsRe-Attac-18IYH2NXW163I
- CREATE_COMPLETE
- AttachGateway
- AWS::EC2::VPCGatewayAttachment
-
-
- 2017-05-03T10:46:59.572Z
- EmsRe-Inbou-1M80E3XJX5ZG6
- CREATE_COMPLETE
- InboundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.467Z
- EmsRe-Inbou-E8UR0I5STC4V
- CREATE_COMPLETE
- InboundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:55.099Z
- EmsRe-Inbou-1E29UZ91J3L0R
- CREATE_COMPLETE
- InboundSSHNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:51.481Z
- sg-76c10f08
- CREATE_COMPLETE
- InstanceSecurityGroup
- AWS::EC2::SecurityGroup
-
-
- 2017-05-03T10:46:29.550Z
- igw-64924d02
- CREATE_COMPLETE
- InternetGateway
- AWS::EC2::InternetGateway
-
-
- 2017-05-03T10:46:34.869Z
- acl-e616ad9f
- CREATE_COMPLETE
- NetworkAcl
- AWS::EC2::NetworkAcl
-
-
- 2017-05-03T10:46:56.226Z
- EmsRe-OutBo-1NZIAZJB04JPV
- CREATE_COMPLETE
- OutBoundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.162Z
- EmsRe-OutBo-11CPJOERKOC1S
- CREATE_COMPLETE
- OutBoundHTTPSNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:57.712Z
- EmsRe-OutBo-1VCOFXN25WKE2
- CREATE_COMPLETE
- OutBoundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:47:11.450Z
- EmsRe-Route-CE90KA6C89YL
- CREATE_COMPLETE
- Route
- AWS::EC2::Route
-
-
- 2017-05-03T10:46:35.945Z
- rtb-d37690ab
- CREATE_COMPLETE
- RouteTable
- AWS::EC2::RouteTable
-
-
- 2017-05-03T10:46:51.908Z
- subnet-2190b144
- CREATE_COMPLETE
- Subnet
- AWS::EC2::Subnet
-
-
- 2017-05-03T10:47:12.194Z
- aclassoc-5960cf29
- CREATE_COMPLETE
- SubnetNetworkAclAssociation
- AWS::EC2::SubnetNetworkAclAssociation
-
-
- 2017-05-03T10:47:11.882Z
- rtbassoc-d35ff3a8
- CREATE_COMPLETE
- SubnetRouteTableAssociation
- AWS::EC2::SubnetRouteTableAssociation
-
-
- 2017-05-03T10:46:30.347Z
- vpc-8cf117f5
- CREATE_COMPLETE
- VPC
- AWS::EC2::VPC
-
-
- 2017-05-03T10:49:38.256Z
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
- CREATE_COMPLETE
- WebServerInstance
- AWS::CloudFormation::Stack
-
-
-
-
- ee42eb70-a291-11e7-af0e-a909b4f16232
-
-
+
+
+ a462fb7e-04be-466b-b20d-b1d9e6d9e198
+
+ -
+ api-create
+ ea:02:49:75:22:5d:fc:8d:c2:6e:38:64:73:68:6a:bb:c8:c3:18:0a
+
+ -
+ aws-test
+ 79:08:15:01:71:3a:37:74:ba:b5:f0:f0:ac:35:bd:9f:7f:22:c8:40
+
+ -
+ aws-test-1
+ cb:c9:8d:70:8e:4c:d5:9a:bd:a9:32:bb:73:90:af:09:67:31:ce:b9
+
+ -
+ azagayno
+ d8:b4:60:b4:1d:a6:c5:68:b0:4c:55:a8:76:c4:53:c9:45:e5:8e:89
+
+ -
+ bd
+ 38:ac:a0:23:29:3b:0a:a8:0d:13:8c:d1:78:d7:9d:a8:cf:c9:42:03
+
+ -
+ bdunne
+ 4b:49:72:eb:26:48:0f:93:d1:3b:3c:dc:f0:66:15:fa:a0:85:28:7e
+
+ -
+ bill
+ eb:13:8d:19:b1:9d:9f:8b:ea:e0:9b:0b:eb:ea:46:a7:b3:a9:76:99
+
+ -
+ bmclaugh
+ 1a:03:3d:32:1f:74:25:52:f1:5e:17:b3:10:82:b6:28:76:f1:e0:8b
+
+ -
+ BronaghsKeyPair
+ 1a:35:6a:3a:f1:fd:71:74:a1:d9:c3:2e:11:8e:64:c4:40:ad:7e:ba
+
+ -
+ bsorota
+ be:2e:fb:10:34:51:f6:eb:fb:1d:fe:af:47:56:69:5c:ed:d2:25:67
+
+ -
+ db
+ dc:51:de:a0:74:de:8a:e1:c5:51:e6:d2:e2:d6:b8:0f
+
+ -
+ dberger
+ 2b:f3:69:12:e2:12:4b:7e:e2:9e:ff:ef:6f:df:c8:3e:77:e6:26:19
+
+ -
+ docker-test
+ 42:0c:f5:d8:26:96:c0:08:96:ac:2f:18:d2:c4:b9:ec:7d:3e:e4:e5
+
+ -
+ docker_1801_01
+ b1:ad:a7:e6:6e:da:9e:07:b2:f6:47:cf:38:2a:cb:ed:c2:e8:7b:0e
+
+ -
+ EmsRefreshSpec-KeyPair
+ 49:9f:3f:a4:26:48:39:94:26:06:dd:25:73:e5:da:9b:4b:1b:6c:93
+
+ -
+ EMSRefreshSpec-KeyPair-02
+ 52:13:06:59:38:ef:97:58:ff:d4:46:f1:ad:60:ed:72:c0:63:aa:77
+
+ -
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 69:aa:aa:41:83:c2:dc:13:27:7a:c0:91:b9:b2:94:73:33:04:bd:58
+
+ -
+ gdb
+ 7a:c7:44:04:62:0d:b6:a7:fe:90:45:7a:00:60:23:2f
+
+ -
+ gm
+ a5:cb:4a:5d:e4:c0:97:7e:2f:c8:cd:6d:f7:6c:ab:4c:17:6d:6e:83
+
+ -
+ GregB-Minishift-keypair
+ 1e:33:8b:5f:ea:63:a0:87:82:67:e0:ad:96:f8:67:95:03:68:ab:35
+
+ -
+ hsong-keypair
+ e4:56:fb:0f:ae:21:15:2e:c1:2d:e4:35:ab:7c:12:be:46:ee:8c:30
+
+ -
+ hsong_centos_atomic
+ f3:88:fe:83:55:bd:5c:84:8b:c1:8b:fa:7b:5b:02:c9:77:03:4c:a0
+
+ -
+ hui_test
+ 35:8c:12:c8:63:1c:1f:a1:29:8f:98:74:6f:f3:12:92:e5:46:be:70
+
+ -
+ james
+ a9:48:48:b4:51:b7:43:b7:c2:12:69:50:e7:74:48:08:10:8d:7d:0c
+
+ -
+ james2
+ d3:db:86:19:03:50:fc:67:84:0b:92:f1:3b:15:13:c9:a9:86:20:9d
+
+ -
+ jcfoo
+ b7:5a:d2:4e:ef:86:6e:82:69:8d:8c:92:54:ec:39:e7:14:77:49:3b
+
+ -
+ jerryk
+ 28:2f:64:b4:de:8a:fa:1b:65:3f:63:23:28:74:c3:a3:af:94:41:a6
+
+ -
+ jf
+ 22:54:06:f7:8b:f0:cf:90:8a:79:70:03:b3:0a:5e:37:28:14:a7:c4
+
+ -
+ ladas
+ 00:38:89:b1:d5:42:a4:31:67:05:ea:b5:87:19:d7:dd:46:21:df:21
+
+ -
+ ladas_ansible
+ 6b:6f:8b:c0:6f:0d:bf:62:2a:71:8d:5d:47:51:e0:22:e7:e9:9a:5e
+
+ -
+ mgf
+ 99:7e:2b:12:64:da:47:1a:f2:26:40:ce:43:b1:be:77:f5:80:21:d1
+
+ -
+ miq
+ a0:78:37:d3:bb:f2:46:a0:e3:d6:9f:be:be:e3:0f:1b:36:14:ef:a8
+
+ -
+ MIQ_SSA
+ 2b:21:f4:b2:47:20:2e:91:4d:ef:5f:2f:48:90:5c:1a:da:ec:68:2d
+
+ -
+ MIQ_SSA-7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 75:e4:72:c9:d7:59:92:ca:14:68:32:b4:f1:b1:e2:b4:34:8b:34:ff
+
+ -
+ MIQ_SSA7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 27:f0:c9:fc:41:9f:e3:8a:bf:d6:7d:ed:69:6a:8a:3a:6f:3b:04:4b
+
+ -
+ mk
+ 66:e9:a1:2a:7f:9d:46:b2:71:3f:1e:eb:a8:95:9f:c3:f6:ce:c7:38
+
+ -
+ my_ssa
+ f8:f0:55:b5:48:67:f5:af:96:c4:96:8d:bd:0e:27:48:f8:b7:61:7f
+
+ -
+ rpo
+ e6:c0:d7:a2:f8:dd:62:8d:76:36:7d:ca:d5:df:5f:a4:e9:bd:28:2c
+
+ -
+ simaishi
+ a1:d5:87:c3:87:6a:51:15:a9:50:79:15:49:c6:6e:67:70:17:a3:47
+
+ -
+ simaishi2
+ ca:8d:be:35:2e:be:bd:35:87:2b:b0:11:ff:50:32:58:19:36:07:77
+
+ -
+ smartstate-0a8b0ecf-320d-4f7c-ad28-1aae106a196b
+ 2d:98:ac:50:52:75:05:01:a2:33:92:03:78:43:96:94:64:80:29:84
+
+ -
+ smartstate-1bd0c674-5ea4-4a26-8970-054d19c8520a
+ 1d:cd:a7:b9:92:47:eb:cc:c7:58:33:f8:4e:4c:9a:a7:4d:79:76:58
+
+ -
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 2e:e2:62:00:bf:ef:de:87:3c:7e:37:c9:b8:3b:12:8c:a8:35:be:6a
+
+ -
+ smartstate-2d1d26a2-1852-44ed-b8aa-8f1697e0d2f0
+ f9:02:aa:24:bb:0e:70:51:d8:2e:c5:e1:d0:d4:1a:75:7a:b7:5c:94
+
+ -
+ smartstate-40193ce5-1459-4fdb-96d1-6128860ec235
+ 8d:3c:f4:ef:de:1c:8e:ec:22:06:52:2e:0b:b5:35:00:33:aa:70:b8
+
+ -
+ smartstate-7033fdde-6845-4d32-9e30-72d1b8599fa1
+ ba:fb:6c:f5:98:88:9c:c3:77:29:36:4c:a7:af:2d:f4:82:65:cb:ae
+
+ -
+ smartstate-70ceca4e-996f-47d5-9030-fd55a7910520
+ 65:cc:f4:64:ea:c3:34:63:19:5e:01:29:0e:4a:e6:53:b6:92:a1:f0
+
+ -
+ smartstate-74374e7e-6b63-421d-a1c5-3dcbd0b071e6
+ 60:36:1e:bf:75:da:23:60:76:5e:80:9f:b6:97:d0:1d:27:82:16:4e
+
+ -
+ smartstate-b5a73b24-f39e-11e6-b537-000c292c066c
+ fb:53:ce:0a:23:d8:7a:5c:25:32:74:e5:27:11:4b:e4:07:45:ef:44
+
+ -
+ smartstate-b88991cf-78cc-4e62-b775-72ad740d6ef1
+ 9c:bd:b7:f6:23:e8:ab:2c:d4:12:46:33:f7:7e:9c:10:64:c7:26:01
+
+ -
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ fd:bc:55:f2:b5:2e:4d:49:cc:21:12:64:7d:6a:4f:72:5b:d3:52:be
+
+ -
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0f:45:3d:81:81:1c:e6:93:eb:f2:7f:70:4b:51:86:69:47:85:d6:42
+
+ -
+ ssa
+ 72:79:2e:fc:7e:67:ee:af:14:f5:5e:e1:cf:a8:9a:39:04:3a:91:84
+
+ -
+ ssa_1
+ 31:8f:c1:bc:0b:5c:ba:8a:df:b7:4c:24:12:6e:82:0f:6b:66:ff:e0
+
+ -
+ stomsa
+ 9a:82:b7:d1:ce:b3:96:71:0b:b0:af:5d:db:89:ea:af:66:69:54:9e
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 15:00:02 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeAvailabilityZones&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T150002Z
+ X-Amz-Content-Sha256:
+ - 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f262fdb240d367689019e2ab4a78aa04de4ab739fed90d8b3433463eb84d576c
+ Content-Length:
+ - '51'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Content-Length:
+ - '1437'
+ Date:
+ - Tue, 04 Sep 2018 15:00:02 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 78a1a9b8-5776-44d5-a70a-ec32578128d8
+
+ -
+ us-east-1a
+ available
+ us-east-1
+
+
+ -
+ us-east-1b
+ available
+ us-east-1
+
+
+ -
+ us-east-1c
+ available
+ us-east-1
+
+
+ -
+ us-east-1d
+ available
+ us-east-1
+
+
+ -
+ us-east-1e
+ available
+ us-east-1
+
+
+ -
+ us-east-1f
+ available
+ us-east-1
+
+
+
+
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 15:00:02 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeVpcs&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180904T150002Z
+ X-Amz-Content-Sha256:
+ - d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5a14537c3d986ce69f5363aabc3b73143ca15b02ec5c20c4666d91bdda19e88b
+ Content-Length:
+ - '38'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Tue, 04 Sep 2018 15:00:02 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 65b09c0a-1722-4ed6-9172-6b0b20a91824
+
+ -
+ vpc-ff49ff91
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-2e6daa47
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ EmsRefreshSpec-VPC
+
+
+ default
+ false
+
+ -
+ vpc-c3d2f1a5
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-add98fc5
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ aws:cloudformation:logical-id
+ VPC
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+
+ default
+ false
+
+ -
+ vpc-36cad24e
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-1c435976
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ Bronagh-network
+
+
+ default
+ false
+
+ -
+ vpc-aee2a6ca
+ available
+ 172.30.0.0/16
+
+
-
+ 172.30.0.0/16
+ vpc-cidr-assoc-674ab80e
+
+ associated
+
+
+
+ dopt-f24ff99c
+ default
+ false
+
+ -
+ vpc-8cf117f5
+ available
+ 10.2.0.0/16
+
+
-
+ 10.2.0.0/16
+ vpc-cidr-assoc-6dbdaa05
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ aws:cloudformation:logical-id
+ VPC
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+
+ default
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:56 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:03 GMT
- request:
method: post
- uri: https://cloudformation.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ string: Action=DescribeSubnets&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080856Z
+ - 20180904T150003Z
X-Amz-Content-Sha256:
- - a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
+ - 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e277682b5eb4304869b3e04088a195212f0d3749081d612004d6b22091690046
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9f2d913adc23d09587dca4916b65ebea67042b34db667c14041546be2a96e3a6
Content-Length:
- - '97'
+ - '41'
Accept:
- "*/*"
response:
@@ -33742,257 +48609,223 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - eef72017-a291-11e7-bc81-33cafa69f5e8
Content-Type:
- - text/xml
- Content-Length:
- - '7096'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:51 GMT
- body:
- encoding: UTF-8
- string: |
-
-
-
-
- 2017-03-27T12:21:09.758Z
- EmsRe-Gatew-1LHVB7WCBDH2J
- CREATE_COMPLETE
- GatewayToInternet
- AWS::EC2::VPCGatewayAttachment
-
-
- 2017-03-27T12:21:18.408Z
- EmsRe-Inbou-114C8QHJD1A0
- CREATE_COMPLETE
- InboundDynamicPortPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:17.491Z
- EmsRe-Inbou-10A1RE6O5U1OG
- CREATE_COMPLETE
- InboundHTTPPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:18.284Z
- EmsRe-Inbou-NCOLEFTRFR80
- CREATE_COMPLETE
- InboundSSHPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:20:47.040Z
- igw-f3b65295
- CREATE_COMPLETE
- InternetGateway
- AWS::EC2::InternetGateway
-
-
- 2017-03-27T12:21:17.267Z
- EmsRe-Outbo-GYCVGUJ9J26R
- CREATE_COMPLETE
- OutboundPublicNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-03-27T12:21:19.063Z
- EmsRefres-PublicEl-15YIQXDK2TNOF
- CREATE_COMPLETE
- PublicElasticLoadBalancer
- AWS::ElasticLoadBalancing::LoadBalancer
-
-
- 2017-03-27T12:21:12.098Z
- sg-5946c626
- CREATE_COMPLETE
- PublicLoadBalancerSecurityGroup
- AWS::EC2::SecurityGroup
-
-
- 2017-03-27T12:20:55.848Z
- acl-e98b7590
- CREATE_COMPLETE
- PublicNetworkAcl
- AWS::EC2::NetworkAcl
-
-
- 2017-03-27T12:21:30.588Z
- EmsRe-Publi-13PVGYUA7QQU3
- CREATE_COMPLETE
- PublicRoute
- AWS::EC2::Route
-
-
- 2017-03-27T12:20:54.594Z
- rtb-93067bea
- CREATE_COMPLETE
- PublicRouteTable
- AWS::EC2::RouteTable
-
-
- 2017-03-27T12:21:09.517Z
- subnet-de2363bb
- CREATE_COMPLETE
- PublicSubnet
- AWS::EC2::Subnet
-
-
- 2017-03-27T12:21:35.209Z
- aclassoc-4471fa35
- CREATE_COMPLETE
- PublicSubnetNetworkAclAssociation
- AWS::EC2::SubnetNetworkAclAssociation
-
-
- 2017-03-27T12:21:31.953Z
- rtbassoc-1f3b2c67
- CREATE_COMPLETE
- PublicSubnetRouteTableAssociation
- AWS::EC2::SubnetRouteTableAssociation
-
-
- 2017-03-27T12:20:47.805Z
- vpc-c3d2f1a5
- CREATE_COMPLETE
- VPC
- AWS::EC2::VPC
-
-
- 2017-03-27T12:23:33.873Z
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
- CREATE_COMPLETE
- WebServerFleet
- AWS::AutoScaling::AutoScalingGroup
-
-
- 2017-03-27T12:21:41.260Z
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
- CREATE_COMPLETE
- WebServerLaunchConfig
- AWS::AutoScaling::LaunchConfiguration
-
-
- 2017-03-27T12:21:35.209Z
- sg-9242c2ed
- CREATE_COMPLETE
- WebServerSecurityGroup
- AWS::EC2::SecurityGroup
-
-
-
-
- eef72017-a291-11e7-bc81-33cafa69f5e8
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:58 GMT
-- request:
- method: post
- uri: https://cloudformation.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStackWithAutoscalingGroup2&Version=2010-05-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080858Z
- X-Amz-Content-Sha256:
- - cf1ad38a5e121d365a76501102e3a4a993d4244281ebab672dff531c33021b59
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6519a667a6cda1eea8f8fdd99fc33e0b1912e8fd47cd0b4dba7bee5528203580
- Content-Length:
- - '95'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- X-Amzn-Requestid:
- - efcac3c0-a291-11e7-8c22-0f70c769eedc
- Content-Type:
- - text/xml
- Content-Length:
- - '1993'
- Date:
- - Tue, 26 Sep 2017 08:08:53 GMT
+ - Tue, 04 Sep 2018 15:00:02 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
- 2017-03-27T11:33:42.596Z
- EmsRefres-ElasticL-UPI0RRUFR3HI
- CREATE_COMPLETE
- ElasticLoadBalancer
- AWS::ElasticLoadBalancing::LoadBalancer
-
-
- 2017-03-27T11:34:04.759Z
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
- CREATE_COMPLETE
- InstanceSecurityGroup
- AWS::EC2::SecurityGroup
-
-
- 2017-03-27T11:34:09.927Z
- EmsRefreshSpecStackWithAutoscalingGroup2-LaunchConfig-TS2701Z3OAJM
- CREATE_COMPLETE
- LaunchConfig
- AWS::AutoScaling::LaunchConfiguration
-
-
- 2017-03-27T11:35:43.230Z
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
- CREATE_COMPLETE
- WebServerGroup
- AWS::AutoScaling::AutoScalingGroup
-
-
-
-
- efcac3c0-a291-11e7-8c22-0f70c769eedc
-
-
+ string: |-
+
+
+ 959b13d2-ba0d-412e-a10a-667a88d96f62
+
+ -
+ subnet-16c70477
+ available
+ vpc-ff49ff91
+ 10.0.1.0/24
+
+ 243
+ us-east-1d
+ false
+ false
+
+
-
+ Name
+ EmsRefreshSpec-Subnet2
+
+
+ false
+
+ -
+ subnet-bc418ce4
+ available
+ vpc-aee2a6ca
+ 172.30.3.0/24
+
+ 250
+ us-east-1d
+ false
+ true
+ false
+
+ -
+ subnet-5f5a9670
+ available
+ vpc-ff49ff91
+ 10.0.8.0/24
+
+ 246
+ us-east-1e
+ false
+ false
+
+
-
+ Name
+ LadasTest
+
+
+ false
+
+ -
+ subnet-2190b144
+ available
+ vpc-8cf117f5
+ 10.2.0.0/24
+
+ 249
+ us-east-1c
+ false
+ false
+
+
-
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ Subnet
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+
+ false
+
+ -
+ subnet-de2363bb
+ available
+ vpc-c3d2f1a5
+ 10.0.0.0/24
+
+ 247
+ us-east-1c
+ false
+ false
+
+
-
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ PublicSubnet
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+
+ false
+
+ -
+ subnet-56f55f20
+ available
+ vpc-aee2a6ca
+ 172.30.1.0/24
+
+ 250
+ us-east-1b
+ false
+ true
+ false
+
+ -
+ subnet-5f639a75
+ available
+ vpc-aee2a6ca
+ 172.30.4.0/24
+
+ 251
+ us-east-1e
+ false
+ true
+ false
+
+ -
+ subnet-e88815d5
+ available
+ vpc-aee2a6ca
+ 172.30.0.0/24
+
+ 247
+ us-east-1a
+ false
+ true
+ false
+
+ -
+ subnet-f849ff96
+ available
+ vpc-ff49ff91
+ 10.0.0.0/24
+
+ 241
+ us-east-1e
+ false
+ true
+
+
-
+ Name
+ EmsRefreshSpec-Subnet1
+
+
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:08:59 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:03 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeKeyPairs&Version=2016-11-15
+ string: Action=DescribeVolumes&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080859Z
+ - 20180904T150003Z
X-Amz-Content-Sha256:
- - e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
+ - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e9b66fe00a7cdabee4435bdb3e56a53041c44eba8d3b453743c1a46e134441d3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a4eec81eb7a7434922fbccdd4a21f7ad24687f8b79d041f89f85eb20b96f1b8e
Content-Length:
- - '42'
+ - '41'
Accept:
- "*/*"
response:
@@ -34007,723 +48840,1019 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:08:54 GMT
+ - Tue, 04 Sep 2018 15:00:04 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
string: |-
-
- 0ccff6b1-85aa-45c3-bada-f56d3d7af144
-
+
+ 294fb7a8-87ce-471f-bcc2-96a6c9bcc71b
+
+ -
+ vol-834804c4
+ 50
+
+ us-east-1d
+ available
+ 2015-04-21T13:54:22.140Z
+
+
+
-
+ Name
+ cfme-raw-vmdb
+
+
+ gp2
+ 150
+ false
+
-
- api-create
- ea:02:49:75:22:5d:fc:8d:c2:6e:38:64:73:68:6a:bb:c8:c3:18:0a
+ vol-d40b2c93
+ 30
+
+ us-east-1d
+ available
+ 2015-04-28T12:21:59.090Z
+
+
+
-
+ Name
+ cfme2-raw-vmdb
+
+
+ gp2
+ 100
+ false
-
- aws-test
- 79:08:15:01:71:3a:37:74:ba:b5:f0:f0:ac:35:bd:9f:7f:22:c8:40
+ vol-68af0c92
+ 40
+
+ us-east-1d
+ available
+ 2015-09-29T21:36:13.514Z
+
+
+
-
+ Name
+ cfme55
+
+
+ standard
+ false
-
- aws-test-1
- cb:c9:8d:70:8e:4c:d5:9a:bd:a9:32:bb:73:90:af:09:67:31:ce:b9
+ vol-ee3a9614
+ 50
+
+ us-east-1d
+ available
+ 2015-09-30T15:57:16.028Z
+
+
+
-
+ Name
+ cfme55vmdb
+
+
+ gp2
+ 150
+ false
-
- bd
- 38:ac:a0:23:29:3b:0a:a8:0d:13:8c:d1:78:d7:9d:a8:cf:c9:42:03
+ vol-0d3587406018a8205
+ 10
+ snap-0822784885cd20aff
+ us-east-1d
+ in-use
+ 2017-12-13T14:43:34.969Z
+
+
-
+ vol-0d3587406018a8205
+ i-0510954911e45949b
+ /dev/sda1
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
+
+
+
+ -
+ name
+ bronagh
+
+
+ gp2
+ 100
+ false
-
- bill
- eb:13:8d:19:b1:9d:9f:8b:ea:e0:9b:0b:eb:ea:46:a7:b3:a9:76:99
+ vol-07be95279f27e791f
+ 8
+ snap-055cf1cfc1dda99fe
+ us-east-1d
+ in-use
+ 2017-12-13T15:04:35.520Z
+
+
-
+ vol-07be95279f27e791f
+ i-02007c8f386e74470
+ /dev/xvda
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
+
+ -
+ Name
+ bronagh1213
+
+
+ gp2
+ 100
+ false
-
- bmclaugh
- 1a:03:3d:32:1f:74:25:52:f1:5e:17:b3:10:82:b6:28:76:f1:e0:8b
+ vol-0b80eb1a867cd27f8
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-02-28T16:08:25.573Z
+
+
-
+ vol-0b80eb1a867cd27f8
+ i-0a67c549558c9c392
+ /dev/sda1
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+ gp2
+ 100
+ false
-
- bsorota
- be:2e:fb:10:34:51:f6:eb:fb:1d:fe:af:47:56:69:5c:ed:d2:25:67
+ vol-007e8c0663020ed1c
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-03-01T21:31:05.573Z
+
+
-
+ vol-007e8c0663020ed1c
+ i-0aa433595b855eeeb
+ /dev/sda1
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+
+ standard
+ false
-
- db
- dc:51:de:a0:74:de:8a:e1:c5:51:e6:d2:e2:d6:b8:0f
+ vol-09a10c5f98f2dd67c
+ 8
+ snap-0061a4a372352a41e
+ us-east-1d
+ in-use
+ 2018-03-06T05:28:40.473Z
+
+
-
+ vol-09a10c5f98f2dd67c
+ i-0a7aebaf459f1f9e7
+ /dev/sda1
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
+
+
+ gp2
+ 100
+ false
-
- dberger
- 2b:f3:69:12:e2:12:4b:7e:e2:9e:ff:ef:6f:df:c8:3e:77:e6:26:19
+ vol-00991e8e4231720cb
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-03-12T13:48:52.246Z
+
+
-
+ vol-00991e8e4231720cb
+ i-0d0cbf4c0a5e4f8fc
+ /dev/sda1
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
+
+
+ gp2
+ 100
+ false
-
- EmsRefreshSpec-KeyPair
- 49:9f:3f:a4:26:48:39:94:26:06:dd:25:73:e5:da:9b:4b:1b:6c:93
+ vol-0eb5ddcf735f22184
+ 10
+ snap-02196f4f8507c9598
+ us-east-1d
+ in-use
+ 2018-04-26T10:03:06.847Z
+
+
-
+ vol-0eb5ddcf735f22184
+ i-05d2313e6b9a42b16
+ /dev/sda1
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
+
+
+ gp2
+ 100
+ false
-
- EMSRefreshSpec-KeyPair-02
- 52:13:06:59:38:ef:97:58:ff:d4:46:f1:ad:60:ed:72:c0:63:aa:77
+ vol-044ae2b3615b12913
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T12:12:03.127Z
+
+
-
+ vol-044ae2b3615b12913
+ i-0e48bff566d8742b3
+ /dev/sda1
+ attached
+ 2018-09-04T12:12:03.000Z
+ true
+
+
+ standard
+ false
-
- gdb
- 7a:c7:44:04:62:0d:b6:a7:fe:90:45:7a:00:60:23:2f
+ vol-0eb026a02c6666ea0
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T13:39:05.557Z
+
+
-
+ vol-0eb026a02c6666ea0
+ i-03769bc6ccaba947a
+ /dev/sda1
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+ standard
+ false
-
- gm
- a5:cb:4a:5d:e4:c0:97:7e:2f:c8:cd:6d:f7:6c:ab:4c:17:6d:6e:83
+ vol-0ba19a687115bc9bc
+ 1
+
+ us-east-1f
+ available
+ 2017-12-01T14:23:28.862Z
+
+
+
-
+ Name
+
+
+
+ gp2
+ 100
+ false
-
- james
- a9:48:48:b4:51:b7:43:b7:c2:12:69:50:e7:74:48:08:10:8d:7d:0c
+ vol-07667df1666e2060a
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-03-14T21:43:12.985Z
+
+
-
+ vol-07667df1666e2060a
+ i-0235e2c2b4fcabeab
+ /dev/sda1
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+ standard
+ false
-
- jerryk
- 28:2f:64:b4:de:8a:fa:1b:65:3f:63:23:28:74:c3:a3:af:94:41:a6
+ vol-0e7609b478fe9ca91
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-04-05T10:08:23.032Z
+
+
-
+ vol-0e7609b478fe9ca91
+ i-0297a2b1075b3a2c6
+ /dev/sda1
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+
+ standard
+ false
-
- jf
- 22:54:06:f7:8b:f0:cf:90:8a:79:70:03:b3:0a:5e:37:28:14:a7:c4
+ vol-0d62d6706c88af498
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-07-25T10:56:16.973Z
+
+
-
+ vol-0d62d6706c88af498
+ i-0b2631823a0fdfc76
+ /dev/sda1
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+
+ standard
+ false
-
- ladas
- 00:38:89:b1:d5:42:a4:31:67:05:ea:b5:87:19:d7:dd:46:21:df:21
+ vol-0d8fcf26bf27ab650
+ 1
+
+ us-east-1a
+ available
+ 2017-01-27T15:36:00.023Z
+
+
+
-
+ Name
+ ladas_volume
+
+
+ gp2
+ 100
+ false
-
- ladas_test
- 48:62:3d:b9:56:be:98:d8:cd:4d:73:b0:fa:36:9b:ba:0c:94:6a:29
+ vol-0e6f4b53711466c8b
+ 1
+
+ us-east-1a
+ available
+ 2017-05-22T13:13:04.847Z
+
+
+
-
+ Name
+ test
+
+
+ gp2
+ 100
+ false
-
- mgf
- 99:7e:2b:12:64:da:47:1a:f2:26:40:ce:43:b1:be:77:f5:80:21:d1
+ vol-0395fe9f0370fabdf
+ 3
+
+ us-east-1a
+ available
+ 2017-06-22T20:36:16.182Z
+
+
+
-
+ Name
+ dberger-test
+
+ -
+ Owner
+ Dan
+
+ -
+ Joe
+ Smith
+
+
+ gp2
+ 100
+ false
-
- miq
- a0:78:37:d3:bb:f2:46:a0:e3:d6:9f:be:be:e3:0f:1b:36:14:ef:a8
+ vol-0a53d5f020485f470
+ 2
+
+ us-east-1a
+ available
+ 2017-06-30T16:27:26.909Z
+
+
+
-
+ Name
+ bronagh-volume-test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0acc4b093d87d2ecd
+ 1
+
+ us-east-1a
+ available
+ 2017-06-30T17:19:21.552Z
+
+
+
-
+ foo
+ bar
+
+ -
+ Name
+ dberger-test2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06c6dccf34b2a6c72
+ 1
+
+ us-east-1a
+ available
+ 2017-07-27T13:06:30.936Z
+
+
+
-
+ Name
+ ladas_delete_me_soon
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0c30961b3fd9686ba
+ 30
+ snap-ee7facf8
+ us-east-1a
+ available
+ 2017-10-10T20:35:12.867Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0ada13b443b5956c9
+ 7
+ snap-5ab0eb13
+ us-east-1a
+ available
+ 2017-10-26T19:36:58.511Z
+
+ standard
+ false
+
+ -
+ vol-0825f4636ce0d50c6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-26T20:33:13.973Z
+
+ standard
+ false
+
+ -
+ vol-0a4b814e71aa2f08f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T03:36:43.041Z
+
+ standard
+ false
+
+ -
+ vol-02806f4d20f3fc589
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T15:42:06.392Z
+
+ standard
+ false
+
+ -
+ vol-0541f73328859481d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:25:36.629Z
+
+ standard
+ false
+
+ -
+ vol-0492602d2209b004c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:47:46.434Z
+
+ standard
+ false
+
+ -
+ vol-0383713f5f8e9be6c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:17:39.566Z
+
+ standard
+ false
+
+ -
+ vol-0d09b14c9691b6132
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:45:58.188Z
+
+ standard
+ false
+
+ -
+ vol-073e00661f83e778e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T02:18:33.300Z
+
+ standard
+ false
+
+ -
+ vol-0fa0bf31000e6af8e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T21:00:39.451Z
+
+ standard
+ false
+
+ -
+ vol-00b35c4bcdacdf50e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-08T21:08:54.275Z
+
+ standard
+ false
+
+ -
+ vol-0635c4be77a59e8c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-27T19:14:59.505Z
+
+ standard
+ false
+
+ -
+ vol-08048f081712cdc55
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T19:53:15.507Z
+
+
+
-
+ Name
+ hsong-test_volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d923fe770ed2486c
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T21:24:26.112Z
+
+
+
-
+ Name
+ hsong-test-again
+
+
+ gp2
+ 100
+ false
-
- MIQ_SSA
- 2b:21:f4:b2:47:20:2e:91:4d:ef:5f:2f:48:90:5c:1a:da:ec:68:2d
+ vol-09fb101747e4d82e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:54:56.366Z
+
+ standard
+ false
-
- mk
- 66:e9:a1:2a:7f:9d:46:b2:71:3f:1e:eb:a8:95:9f:c3:f6:ce:c7:38
+ vol-090b6b64757ee0ab5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:57:09.931Z
+
+ standard
+ false
-
- my_ssa
- f8:f0:55:b5:48:67:f5:af:96:c4:96:8d:bd:0e:27:48:f8:b7:61:7f
+ vol-043b675604bfd5b9d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:58:47.700Z
+
+ standard
+ false
-
- rpo
- e6:c0:d7:a2:f8:dd:62:8d:76:36:7d:ca:d5:df:5f:a4:e9:bd:28:2c
+ vol-039bb19d656241cf6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:01:36.106Z
+
+ standard
+ false
-
- ssa
- 72:79:2e:fc:7e:67:ee:af:14:f5:5e:e1:cf:a8:9a:39:04:3a:91:84
+ vol-0121b629c98897491
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:03:15.107Z
+
+ standard
+ false
-
- ssa_1
- 31:8f:c1:bc:0b:5c:ba:8a:df:b7:4c:24:12:6e:82:0f:6b:66:ff:e0
+ vol-0e33a13f6eb3c1b36
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:10:28.797Z
+
+ standard
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:00 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeAvailabilityZones&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080900Z
- X-Amz-Content-Sha256:
- - 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e62fa647a24f95f16fd174749dc79ece7bc1f12c842db07e574dadabb99b3866
- Content-Length:
- - '51'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:54 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 7f3d8794-8821-4f4b-b125-71c130219bcc
-
-
- us-east-1a
- available
- us-east-1
-
+ vol-05d1be7deaae362cf
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:12:02.490Z
+
+ standard
+ false
-
- us-east-1b
- available
- us-east-1
-
+ vol-0a816acb234f64a78
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:13:39.472Z
+
+ standard
+ false
-
- us-east-1c
- available
- us-east-1
-
+ vol-0c37e69f9d3fac3c5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:15:20.103Z
+
+ standard
+ false
-
- us-east-1d
- available
- us-east-1
-
+ vol-029b208a26b33dd91
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:17:22.608Z
+
+ standard
+ false
-
- us-east-1e
- available
- us-east-1
-
+ vol-0a37c9cc3de01630b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:18:59.845Z
+
+ standard
+ false
-
- us-east-1f
- available
- us-east-1
-
+ vol-0f3df9946b6fb0a68
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:20:42.067Z
+
+ standard
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:00 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeVpcs&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080900Z
- X-Amz-Content-Sha256:
- - d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=cf84a51982015841b72af6cd319c1cb898cbc1a1d8cf84640d324278271cb3d1
- Content-Length:
- - '38'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:55 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- d1b9c109-d22e-49a5-a106-1fe932303743
-
-
- vpc-a06de3c5
- available
- 10.0.0.0/16
-
-
-
- 10.0.0.0/16
- vpc-cidr-assoc-57b3403e
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- Name
- DemoVPC
-
-
- default
- false
+ vol-0d3f5d40fd2cf1e21
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:22:52.734Z
+
+ standard
+ false
-
- vpc-ff49ff91
- available
- 10.0.0.0/16
-
-
-
- 10.0.0.0/16
- vpc-cidr-assoc-2e6daa47
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- Name
- EmsRefreshSpec-VPC
-
-
- default
- false
+ vol-09b9c89c88ba4e3f7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:25:02.249Z
+
+ standard
+ false
-
- vpc-c3d2f1a5
- available
- 10.0.0.0/16
-
-
-
- 10.0.0.0/16
- vpc-cidr-assoc-add98fc5
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- aws:cloudformation:logical-id
- VPC
-
- -
- Network
- Public
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
-
- default
- false
+ vol-091ef233d144e3a17
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:26:41.836Z
+
+ standard
+ false
-
- vpc-aee2a6ca
- available
- 172.30.0.0/16
-
-
-
- 172.30.0.0/16
- vpc-cidr-assoc-674ab80e
-
- associated
-
-
-
- dopt-f24ff99c
- default
- false
+ vol-0efcc35ea44fcecaa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:28:23.988Z
+
+ standard
+ false
-
- vpc-8cf117f5
- available
- 10.2.0.0/16
-
-
-
- 10.2.0.0/16
- vpc-cidr-assoc-6dbdaa05
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- aws:cloudformation:logical-id
- VPC
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
-
- default
- false
+ vol-06b692e14c3c37f3a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:30:01.994Z
+
+ standard
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:01 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeSubnets&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080901Z
- X-Amz-Content-Sha256:
- - 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=886baddbc6c306d812193c3af5a40893bd00c8fc6b5ed396a0b50a4e9eeadec9
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:56 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 51e1a70a-4a46-4ec2-84b6-0910eeb10f26
-
-
- subnet-16c70477
- available
- vpc-ff49ff91
- 10.0.1.0/24
-
- 248
- us-east-1d
- false
- false
-
-
-
- Name
- EmsRefreshSpec-Subnet2
-
-
- false
+ vol-0b88365a642da2f29
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:32:22.859Z
+
+ standard
+ false
-
- subnet-bc418ce4
- available
- vpc-aee2a6ca
- 172.30.3.0/24
-
- 251
- us-east-1d
- false
- true
- false
+ vol-0d5426adc427d73c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:34:27.210Z
+
+ standard
+ false
-
- subnet-2190b144
- available
- vpc-8cf117f5
- 10.2.0.0/24
-
- 248
- us-east-1c
- false
- false
-
-
-
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- Subnet
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
-
- false
+ vol-0e24a7be2ffb508e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:36:09.046Z
+
+ standard
+ false
-
- subnet-de2363bb
- available
- vpc-c3d2f1a5
- 10.0.0.0/24
-
- 248
- us-east-1c
- false
- false
-
-
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Network
- Public
-
- -
- aws:cloudformation:logical-id
- PublicSubnet
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
-
- false
+ vol-098a1ea9cad67dbda
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:37:48.770Z
+
+ standard
+ false
-
- subnet-56f55f20
- available
- vpc-aee2a6ca
- 172.30.1.0/24
-
- 251
- us-east-1b
- false
- true
- false
+ vol-0d359e258ee956241
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:39:23.622Z
+
+ standard
+ false
-
- subnet-5f639a75
- available
- vpc-aee2a6ca
- 172.30.4.0/24
-
- 251
- us-east-1e
- false
- true
- false
+ vol-00d6116a2ff86c5c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:41:02.339Z
+
+ standard
+ false
-
- subnet-ac904787
- available
- vpc-a06de3c5
- 10.0.1.0/24
-
- 240
- us-east-1e
- false
- false
-
-
-
- Name
- subnet2
-
-
- false
+ vol-03d8805971f766c18
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:42:40.583Z
+
+ standard
+ false
-
- subnet-e88815d5
- available
- vpc-aee2a6ca
- 172.30.0.0/24
-
- 246
+ vol-0b2e399696e2c0695
+ 10
+ snap-00b622fadac39e90b
us-east-1a
- false
- true
- false
+ available
+ 2017-12-20T15:44:20.845Z
+
+ standard
+ false
-
- subnet-f849ff96
- available
- vpc-ff49ff91
- 10.0.0.0/24
-
- 237
- us-east-1e
- false
- true
-
-
-
- Name
- EmsRefreshSpec-Subnet1
-
-
- false
+ vol-0418d857c44096bc4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:46:02.577Z
+
+ standard
+ false
-
- subnet-1852bb33
- available
- vpc-a06de3c5
- 10.0.0.0/24
-
- 250
- us-east-1e
- false
- true
+ vol-0840c53c9077e23e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T16:45:07.967Z
+
+ standard
+ false
+
+ -
+ vol-01cf4586194fa1d7a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T18:21:57.922Z
+
+ standard
+ false
+
+ -
+ vol-0dbdd7e27a94c2ddc
+ 4
+
+ us-east-1a
+ available
+ 2018-01-05T16:01:52.727Z
+
-
Name
- Subnet1
+ hsong-0105
- false
+ gp2
+ 100
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:02 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeVolumes&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T080902Z
- X-Amz-Content-Sha256:
- - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a0762bc531e00e92c4db03ff7a8e316318954474bfa9ce4df502d8c6da8b2ec7
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 08:08:57 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 8c6fad29-a4e3-4918-97e6-5db2b8f15b73
-
-
- vol-834804c4
- 50
+ vol-0cc8d9f54237b1fb5
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-04-21T13:54:22.140Z
+ 2018-01-10T16:00:30.795Z
-
Name
- cfme-raw-vmdb
+ hsong-1010
gp2
- 150
+ 100
false
-
- vol-d40b2c93
- 30
+ vol-02b314874ffa07e3f
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-04-28T12:21:59.090Z
+ 2018-01-10T16:04:41.425Z
-
Name
- cfme2-raw-vmdb
+ hsong-1010-1
gp2
@@ -34731,131 +49860,472 @@ http_interactions:
false
-
- vol-68af0c92
- 40
+ vol-09e31fed84773d1e1
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-09-29T21:36:13.514Z
+ 2018-01-10T16:18:25.321Z
-
Name
- cfme55
+ hsong-1010-2
- standard
+ gp2
+ 100
false
-
- vol-ee3a9614
- 50
+ vol-0212b7567bd16ab47
+ 4
- us-east-1d
+ us-east-1a
available
- 2015-09-30T15:57:16.028Z
+ 2018-01-19T15:45:33.725Z
-
Name
- cfme55vmdb
+ xxl01
- gp2
- 150
+ io1
+ 100
false
-
- vol-02a26016b0b7a9450
- 1
- snap-0fb2163b24646b146
- us-east-1d
- in-use
- 2017-05-05T14:04:33.747Z
-
-
-
- vol-02a26016b0b7a9450
- i-0b59b1d8461965bd1
- /dev/sda1
- attached
- 2017-05-05T14:04:33.000Z
- true
-
-
+ vol-03433068816328de4
+ 8
+
+ us-east-1a
+ available
+ 2018-01-22T15:04:31.163Z
+
gp2
100
false
-
- vol-05eb880e2e337b3f1
- 7
- snap-5f38cd0e
- us-east-1d
- in-use
- 2017-07-24T19:18:26.730Z
-
-
-
- vol-05eb880e2e337b3f1
- i-02c925747e07a8118
- /dev/sda1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
+ vol-0566cd9481a29ca23
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-25T22:19:12.182Z
+
standard
false
-
- vol-04eb2f294c5f9f7eb
- 8
- snap-4177dea1
- us-east-1d
- in-use
- 2017-08-31T00:02:52.693Z
-
-
-
- vol-04eb2f294c5f9f7eb
- i-025623c4c4e4f84a0
- /dev/sda1
- attached
- 2017-08-31T00:02:52.000Z
- true
-
-
+ vol-0c37b1a65e4f12968
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T20:46:09.789Z
+
+ standard
+ false
+
+ -
+ vol-025a3a234eeb31bc1
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:20:14.285Z
+
+ standard
+ false
+
+ -
+ vol-08afd3e598e5ba143
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:45:52.228Z
+
+ standard
+ false
+
+ -
+ vol-0653d1716dc49592b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:55:04.729Z
+
+ standard
+ false
+
+ -
+ vol-0917151960a77d439
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:13:45.861Z
+
+ standard
+ false
+
+ -
+ vol-0c68b01f4f260ee9c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:36:01.529Z
+
+ standard
+ false
+
+ -
+ vol-09801be5b750adc80
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:54:00.132Z
+
+ standard
+ false
+
+ -
+ vol-06806fc2f7d8b9119
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:34:00.998Z
+
+ standard
+ false
+
+ -
+ vol-072d8c0b33be81fe3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:50:53.129Z
+
+ standard
+ false
+
+ -
+ vol-02bf1f30ac38448e5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T14:07:08.909Z
+
+ standard
+ false
+
+ -
+ vol-0c84050c0e1b8b490
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:31:26.026Z
+
+ standard
+ false
+
+ -
+ vol-0dc4f98dac26b2378
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:49:57.483Z
+
+ standard
+ false
+
+ -
+ vol-0013e5ea3ee8d3beb
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:52:47.247Z
+
+ standard
+ false
+
+ -
+ vol-0358d9f4d3df869e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:06:15.454Z
+
+ standard
+ false
+
+ -
+ vol-03af96a7737e48aa3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:54:50.517Z
+
+ standard
+ false
+
+ -
+ vol-0e7878f03823f5399
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:36:16.140Z
+
+ standard
+ false
+
+ -
+ vol-011d0be8098d309ba
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:57:30.964Z
+
+ standard
+ false
+
+ -
+ vol-0ea9010df702fb698
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T18:24:22.381Z
+
+ standard
+ false
+
+ -
+ vol-0f7e01cd0c93de24d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T22:22:10.028Z
+
+ standard
+ false
+
+ -
+ vol-08efe048b975d586b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-31T01:26:41.851Z
+
+ standard
+ false
+
+ -
+ vol-0458322629d9caf55
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:20.477Z
+
+ standard
+ false
+
+ -
+ vol-0c4e2a7cbcfc11ee9
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:30.452Z
+
+ standard
+ false
+
+ -
+ vol-09f96563900ec5161
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:54:30.147Z
+
+ standard
+ false
+
+ -
+ vol-0c7dd7b270ca0edc5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T21:33:58.993Z
+
+ standard
+ false
+
+ -
+ vol-0a134a3a8b8cd294b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T14:23:56.709Z
+
+ standard
+ false
+
+ -
+ vol-03b363474b53b1556
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:36:31.229Z
+
+ standard
+ false
+
+ -
+ vol-0d700b01f53ba3984
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:44:08.614Z
+
+ standard
+ false
+
+ -
+ vol-02866b764ae673fb0
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T16:02:00.790Z
+
+ standard
+ false
+
+ -
+ vol-07b90d0adcf084f73
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-14T19:02:54.953Z
+
+ standard
+ false
+
+ -
+ vol-00eb40a0c3afd9957
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:08:31.757Z
+
+ standard
+ false
+
+ -
+ vol-076ea0e9b295eb129
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:25:47.490Z
+
+ standard
+ false
+
+ -
+ vol-097a11c8d6afcff70
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:32:27.518Z
+
+ standard
+ false
+
+ -
+ vol-0f4f9aa0a9e6f85af
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:58:39.950Z
+
+ standard
+ false
+
+ -
+ vol-0027ef821d9ae2173
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:17:46.361Z
+
+ standard
+ false
+
+ -
+ vol-030b95ecd4161a88c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:55:30.265Z
+
standard
false
-
- vol-0d8fcf26bf27ab650
- 1
-
+ vol-00a2c2b4b6931ed1f
+ 10
+ snap-00b622fadac39e90b
us-east-1a
available
- 2017-01-27T15:36:00.023Z
+ 2018-02-26T16:17:11.903Z
-
-
-
- Name
- ladas_volume
-
-
- gp2
- 100
+ standard
false
-
- vol-0e6f4b53711466c8b
- 1
+ vol-01eabd56e84c13a48
+ 4
us-east-1a
available
- 2017-05-22T13:13:04.847Z
+ 2018-02-26T16:49:48.790Z
-
Name
- test
+ hui_5_9_us_east
gp2
@@ -34863,43 +50333,48 @@ http_interactions:
false
-
- vol-0395fe9f0370fabdf
- 3
-
+ vol-04428bffbab60ac8f
+ 10
+ snap-00b622fadac39e90b
us-east-1a
available
- 2017-06-22T20:36:16.182Z
+ 2018-02-26T16:53:28.906Z
-
-
-
- Name
- dberger-test
-
- -
- Owner
- Dan
-
+ standard
+ false
+
+ -
+ vol-070d695244916edf4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-02-26T18:31:28.646Z
+
-
- Joe
- Smith
+ vol-070d695244916edf4
+ i-0fb9010fdcfe4d050
+ /dev/sda1
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
-
- gp2
- 100
+
+ standard
false
-
- vol-0a53d5f020485f470
- 2
+ vol-00df6ef3f504dcd0b
+ 4
us-east-1a
available
- 2017-06-30T16:27:26.909Z
+ 2018-02-26T19:56:09.856Z
-
Name
- bronagh-volume-test
+ hui_5_9_us_east_2nd
gp2
@@ -34907,125 +50382,97 @@ http_interactions:
false
-
- vol-0acc4b093d87d2ecd
- 1
+ vol-0472d9ed07f9b1a50
+ 4
us-east-1a
available
- 2017-06-30T17:19:21.552Z
+ 2018-02-28T21:06:30.166Z
-
-
- foo
- bar
-
-
Name
- dberger-test2
+ hui-console-test-us
- gp2
- 100
+ standard
false
-
- vol-0657f371b97c0f147
+ vol-0a184b5b739d382d8
10
- snap-b9a222c1
+ snap-00b622fadac39e90b
us-east-1a
in-use
- 2017-07-17T19:21:46.880Z
+ 2018-03-15T13:27:37.446Z
-
- vol-0657f371b97c0f147
- i-06c2e2feb85b5c8b2
+ vol-0a184b5b739d382d8
+ i-0015ec0007f4d13a7
/dev/sda1
attached
- 2017-07-17T19:21:46.000Z
- true
+ 2018-03-15T13:27:37.000Z
+ false
- gp2
- 100
+ standard
false
-
- vol-0ea3efc6f99654381
+ vol-0390b378515bffd1c
10
- snap-b9a222c1
+ snap-00b622fadac39e90b
us-east-1a
in-use
- 2017-07-26T15:15:30.182Z
+ 2018-04-05T18:29:10.338Z
-
- vol-0ea3efc6f99654381
- i-0951b95d6db76519d
+ vol-0390b378515bffd1c
+ i-02cc7ad4129cefe1b
/dev/sda1
attached
- 2017-07-26T15:15:30.000Z
- true
+ 2018-04-05T18:29:10.000Z
+ false
- gp2
- 100
+ standard
false
-
- vol-06c6dccf34b2a6c72
- 1
-
+ vol-0f7377bb13a8c843a
+ 8
+ snap-0b9a379373a50ff29
us-east-1a
available
- 2017-07-27T13:06:30.936Z
+ 2018-04-17T08:17:04.654Z
-
- Name
- ladas_delete_me_soon
+ Description
+ Smartstate extract volume for image: i-0a7aebaf459f1f9e7
-
- gp2
- 100
- false
-
- -
- vol-0f151bad0c041c2db
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-08-10T19:10:06.592Z
-
-
- vol-0f151bad0c041c2db
- i-02975d4eb8e53bafd
- /dev/sda1
- attached
- 2017-08-10T19:10:06.000Z
- true
+ Name
+ Smartstate extract volume
-
- gp2
- 100
+
+ standard
false
-
- vol-0d805ae0a434871aa
- 10
- snap-b9a222c1
+ vol-0e6fca3077833d8ac
+ 1
+
us-east-1a
- in-use
- 2017-09-23T18:24:22.738Z
-
+ available
+ 2018-04-19T14:57:17.344Z
+
+
-
- vol-0d805ae0a434871aa
- i-0b1ec6330e0180f75
- /dev/sda1
- attached
- 2017-09-23T18:24:22.000Z
- true
+ Name
+ dberger-test3
-
+
gp2
100
false
@@ -35082,27 +50529,6 @@ http_interactions:
standard
false
- -
- vol-3bc4d1ea
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-05-10T20:56:38.389Z
-
-
-
- vol-3bc4d1ea
- i-fb694e66
- /dev/sda1
- attached
- 2016-05-10T20:56:38.000Z
- true
-
-
- gp2
- 100
- false
-
-
vol-da190f08
10
@@ -35135,18 +50561,9 @@ http_interactions:
1
us-east-1e
- in-use
+ available
2017-01-27T15:58:07.337Z
-
-
-
- vol-0dda5ecf4b2b3dc57
- i-0a922b9826b3dfd0d
- /dev/sdf
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
+
-
Name
@@ -35175,69 +50592,6 @@ http_interactions:
100
false
- -
- vol-01aca96e22103f767
- 8
- snap-037f1f9e6c8ea4d65
- us-east-1e
- in-use
- 2017-02-14T16:18:29.762Z
-
-
-
- vol-01aca96e22103f767
- i-08c033357b433ea2c
- /dev/xvda
- attached
- 2017-02-14T16:18:29.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-0e251f8b387b2d87d
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:28:15.962Z
-
-
-
- vol-0e251f8b387b2d87d
- i-0a922b9826b3dfd0d
- /dev/sda1
- attached
- 2017-02-16T16:28:16.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-06c7662068fe81b92
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:40:47.792Z
-
-
-
- vol-06c7662068fe81b92
- i-0999c6f9b18ead5fc
- /dev/sda1
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- gp2
- 100
- false
-
-
vol-0e1613cacf4688009
1
@@ -35259,525 +50613,162 @@ http_interactions:
-
vol-0e4c86c12b28cead8
1
- snap-055095f47fab5e749
- us-east-1e
- in-use
- 2017-03-17T07:21:35.798Z
-
-
-
- vol-0e4c86c12b28cead8
- i-8b5739f2
- /dev/sdf
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
-
- -
- Name
- EmsRefreshSpecForVpcVm
-
-
- gp2
- 100
- false
-
- -
- vol-0acad09812d803c09
- 1
-
- us-east-1e
- in-use
- 2017-03-17T07:23:54.211Z
-
-
-
- vol-0acad09812d803c09
- i-c72af2f6
- /dev/sdf
- attached
- 2017-03-17T07:25:12.000Z
- false
-
-
-
- -
- Name
- EmsRefreshSpecForVpc1
-
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- -
- vol-0e9caee6ef7b23c31
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:51.246Z
-
-
-
- vol-0e9caee6ef7b23c31
- i-0347d4075310c21e6
- /dev/sda1
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- standard
- false
-
- -
- vol-059f5f4b2a5663e65
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:52.887Z
-
-
-
- vol-059f5f4b2a5663e65
- i-035fa3affa815d81d
- /dev/sda1
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- standard
- false
-
- -
- vol-098f6a0ae86c0bf2f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:51.351Z
-
-
-
- vol-098f6a0ae86c0bf2f
- i-0347d4075310c21e6
- /dev/sdf
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-03be1ddce0ee8a66f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:53.038Z
-
-
-
- vol-03be1ddce0ee8a66f
- i-035fa3affa815d81d
- /dev/sdf
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-035c47f5f5190ddc8
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:41:23.396Z
-
-
-
- vol-035c47f5f5190ddc8
- i-0c1542ba946875280
- /dev/sda1
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- standard
- false
-
- -
- vol-0c365b31acf12c5f0
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:41:23.491Z
-
-
-
- vol-0c365b31acf12c5f0
- i-0c1542ba946875280
- /dev/sdf
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-001c8985b0f091c9b
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-04-11T18:27:25.671Z
-
- gp2
- 150
- false
-
- -
- vol-03f74085d10e667e8
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-04-11T18:27:25.488Z
-
- standard
- false
-
- -
- vol-0dc50783929797846
- 30
-
- us-east-1e
- in-use
- 2017-04-12T18:17:02.946Z
-
-
-
- vol-0dc50783929797846
- i-0659dcbc66cb830e5
- /dev/sdb
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- gp2
- 100
- false
-
- -
- vol-0816f373502e8db24
- 40
- snap-249e4c6c
- us-east-1e
- in-use
- 2017-04-12T18:17:02.827Z
-
-
-
- vol-0816f373502e8db24
- i-0659dcbc66cb830e5
- /dev/sda1
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- gp2
- 120
- false
-
- -
- vol-0f5da4a455ff03c28
- 2
-
- us-east-1e
- available
- 2017-04-24T16:16:47.488Z
-
-
-
-
- Name
- bronaghs-test-volume
-
-
- gp2
- 100
- false
-
- -
- vol-097f300050f495d06
- 7
- snap-d23a95a1
- us-east-1e
- in-use
- 2017-05-02T19:39:50.053Z
-
-
-
- vol-097f300050f495d06
- i-0fca61ededa522f1a
- /dev/sda1
- attached
- 2017-05-02T19:39:50.000Z
- true
-
-
- standard
- false
-
- -
- vol-04a25be409ef70789
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:17:19.803Z
-
- standard
- false
-
- -
- vol-01a843e049100c874
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:17:19.775Z
-
- gp2
- 150
- false
-
- -
- vol-0330dfaa90ec5155f
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:35:13.310Z
-
- standard
- false
-
- -
- vol-033e5a7bf386767a0
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:35:13.320Z
-
- gp2
- 150
- false
-
- -
- vol-04fc5431c4edd9bb6
- 6
- snap-e159bf6a
- us-east-1e
- in-use
- 2017-05-16T18:19:22.353Z
-
-
-
- vol-04fc5431c4edd9bb6
- i-091fe7ccd76ddac3b
- /dev/sda1
- attached
- 2017-05-16T18:19:22.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-0ba3a2953d84534d2
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-17T18:40:13.269Z
-
- gp2
- 150
- false
-
- -
- vol-0c7a1e46f3e5596ca
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-17T18:40:13.127Z
-
- standard
- false
-
- -
- vol-05ff7a30b06f27ac5
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-22T20:22:02.773Z
-
- standard
- false
-
- -
- vol-035a92ec4bb5b53c8
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-22T20:22:02.894Z
-
- gp2
- 150
- false
-
- -
- vol-0ed526ebed417656f
- 50
- snap-9dd602d7
+ snap-055095f47fab5e749
us-east-1e
in-use
- 2017-05-22T20:35:57.755Z
+ 2017-03-17T07:21:35.798Z
-
- vol-0ed526ebed417656f
- i-0bad1e8ff60a6f29a
+ vol-0e4c86c12b28cead8
+ i-8b5739f2
/dev/sdf
attached
- 2017-05-22T20:35:57.000Z
+ 2017-03-17T07:22:23.000Z
false
+
+ -
+ Name
+ EmsRefreshSpecForVpcVm
+
+
gp2
- 150
+ 100
false
-
- vol-0385dfce3061ff5a9
- 40
- snap-1d177976
+ vol-0acad09812d803c09
+ 1
+
us-east-1e
in-use
- 2017-05-22T20:35:57.665Z
+ 2017-03-17T07:23:54.211Z
-
- vol-0385dfce3061ff5a9
- i-0bad1e8ff60a6f29a
- /dev/sda1
+ vol-0acad09812d803c09
+ i-c72af2f6
+ /dev/sdf
attached
- 2017-05-22T20:35:57.000Z
+ 2017-03-17T07:25:12.000Z
false
- standard
- false
+
+ -
+ Name
+ EmsRefreshSpecForVpc1
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-0344f9e572891ae90
- 8
- snap-0f9a8e1fc22263c6c
+ vol-0f5da4a455ff03c28
+ 2
+
us-east-1e
available
- 2017-06-16T20:19:18.000Z
+ 2017-04-24T16:16:47.488Z
+
+
-
+ Name
+ bronaghs-test-volume
+
+
gp2
100
false
-
- vol-0ef01a328c30eb4b2
- 8
- snap-0f9a8e1fc22263c6c
+ vol-01e50a745302d3299
+ 2
+
us-east-1e
available
- 2017-06-16T20:30:09.864Z
+ 2017-06-22T20:38:28.321Z
+
+
-
+ name
+ dberger-test2
+
+
gp2
100
false
-
- vol-0c66d91c30044f68f
- 8
- snap-0f9a8e1fc22263c6c
+ vol-0f1d1fbc7a35cdbab
+ 2
+
us-east-1e
available
- 2017-06-16T20:44:40.594Z
+ 2017-07-03T14:45:12.273Z
+
+
-
+ Name
+ bronagh-ebs-test
+
+
gp2
100
false
-
- vol-096d40746df01e27b
- 8
- snap-0f9a8e1fc22263c6c
+ vol-01ff7e549707b8e54
+ 1
+
us-east-1e
- in-use
- 2017-06-16T20:54:01.693Z
-
+ available
+ 2017-09-04T14:45:47.319Z
+
+
-
- vol-096d40746df01e27b
- i-03d706b95aa8b12ce
- /dev/sda1
- attached
- 2017-06-16T20:54:01.000Z
- false
+ Name
+ ladas_test_111_encrypted
-
+
gp2
100
- false
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-01e50a745302d3299
- 2
-
+ vol-01f455f7af32c1206
+ 10
+ snap-04b8acc66d50b9a7b
us-east-1e
available
- 2017-06-22T20:38:28.321Z
+ 2017-09-04T15:18:12.952Z
-
- name
- dberger-test2
+ Name
+ ladas_tesT_111_volume_from_snapshot_that_has_image
gp2
100
- false
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-0f1d1fbc7a35cdbab
- 2
+ vol-01d53264cef7468b5
+ 1
us-east-1e
available
- 2017-07-03T14:45:12.273Z
+ 2017-09-08T20:44:15.915Z
-
- Name
- bronagh-ebs-test
+ name
+ bronagh_sept
gp2
@@ -35785,105 +50776,114 @@ http_interactions:
false
-
- vol-000f77902b1a16428
- 80
- snap-05ef19f30ffe6ceaa
+ vol-00198c2e466b380ac
+ 10
+ snap-ba40cac8
us-east-1e
in-use
- 2017-08-29T19:14:36.922Z
+ 2018-02-06T09:49:36.942Z
-
- vol-000f77902b1a16428
- i-0c1eee2b86c7aa4a1
+ vol-00198c2e466b380ac
+ i-004f3bd30726946d1
/dev/sda1
attached
- 2017-08-29T19:14:36.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- -
- hsong-ssa
-
-
-
gp2
- 240
+ 100
false
-
- vol-00306cda05dec2db5
- 10
- snap-ba40cac8
+ vol-0b2d1d3b42eb03555
+ 7
+ snap-d23a95a1
us-east-1e
in-use
- 2017-09-04T13:26:01.140Z
+ 2018-03-15T13:28:48.475Z
-
- vol-00306cda05dec2db5
- i-099e794cfa830e9be
+ vol-0b2d1d3b42eb03555
+ i-0639022117944a668
/dev/sda1
attached
- 2017-09-04T13:26:01.000Z
+ 2018-03-15T13:28:48.000Z
true
- gp2
- 100
+ standard
false
-
- vol-01ff7e549707b8e54
- 1
-
+ vol-06bc83fa0e7bd77c4
+ 16
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-04T14:45:47.319Z
-
+ in-use
+ 2018-05-24T13:44:27.687Z
+
+
-
+ vol-06bc83fa0e7bd77c4
+ i-0c37a7d012922752e
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
-
Name
- ladas_test_111_encrypted
+ ladas_ansible_test_2
gp2
100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+ false
-
- vol-01f455f7af32c1206
- 10
- snap-04b8acc66d50b9a7b
+ vol-0875db6c16a8e9335
+ 16
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-04T15:18:12.952Z
-
+ in-use
+ 2018-05-24T13:44:27.698Z
+
+
-
+ vol-0875db6c16a8e9335
+ i-066465f361331dfa6
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
-
Name
- ladas_tesT_111_volume_from_snapshot_that_has_image
+ ladas_ansible_test_2
gp2
100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+ false
-
- vol-0ac7a66512bf0d20c
- 10
- snap-ba40cac8
+ vol-06e9ef72a99dcc223
+ 8
+ snap-0eea1ed47e203f3b8
us-east-1e
in-use
- 2017-09-07T12:23:46.502Z
+ 2018-06-06T18:52:17.961Z
-
- vol-0ac7a66512bf0d20c
- i-0b72e0b70e7fae3c9
+ vol-06e9ef72a99dcc223
+ i-0622ab75f5f2ba752
/dev/sda1
attached
- 2017-09-07T12:23:46.000Z
+ 2018-06-06T18:52:18.000Z
true
@@ -35892,37 +50892,40 @@ http_interactions:
false
-
- vol-01d53264cef7468b5
- 1
-
+ vol-096db62af3cb45d75
+ 8
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-08T20:44:15.915Z
-
-
+ in-use
+ 2018-06-06T18:52:17.961Z
+
-
- name
- bronagh_sept
+ vol-096db62af3cb45d75
+ i-002ca40492fff0e67
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
-
+
gp2
100
false
-
- vol-0c2aaf810c8925376
+ vol-076672a9b80ac2e25
7
snap-5f38cd0e
us-east-1e
in-use
- 2017-09-26T07:48:52.520Z
+ 2018-09-03T12:10:36.744Z
-
- vol-0c2aaf810c8925376
- i-047886b9fd2397967
+ vol-076672a9b80ac2e25
+ i-0e1752ff841801f65
/dev/sda1
attached
- 2017-09-26T07:48:52.000Z
+ 2018-09-03T12:10:36.000Z
true
@@ -35931,19 +50934,19 @@ http_interactions:
false
-
- vol-02e5c41d12060ab3b
+ vol-0628a6ce987d4cb6e
8
snap-25dd2ac1
us-east-1c
in-use
- 2017-05-02T19:39:37.154Z
+ 2017-05-03T10:47:07.722Z
-
- vol-02e5c41d12060ab3b
- i-0150ac66c83e0eae8
+ vol-0628a6ce987d4cb6e
+ i-0bca58e6e540ddc39
/dev/xvda
attached
- 2017-05-02T19:39:37.000Z
+ 2017-05-03T10:47:07.000Z
true
@@ -35952,19 +50955,58 @@ http_interactions:
false
-
- vol-0628a6ce987d4cb6e
+ vol-0d76e68ae71222b49
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2017-10-20T03:07:59.609Z
+
+
-
+ vol-0d76e68ae71222b49
+ i-0274ada368eb4da36
+ /dev/sda1
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d0c07b33b7dd990
+ 10
+ snap-015df5abbf8e2bd82
+ us-east-1c
+ available
+ 2018-02-01T19:13:07.286Z
+
+
+
-
+ docker 1801_01
+ docker 1801_01
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-080996fdeaee13caf
8
snap-25dd2ac1
us-east-1c
in-use
- 2017-05-03T10:47:07.722Z
+ 2018-03-01T21:31:42.122Z
-
- vol-0628a6ce987d4cb6e
- i-0bca58e6e540ddc39
+ vol-080996fdeaee13caf
+ i-0828f09c91ab89a97
/dev/xvda
attached
- 2017-05-03T10:47:07.000Z
+ 2018-03-01T21:31:42.000Z
true
@@ -35973,137 +51015,242 @@ http_interactions:
false
-
- vol-0da3845ae07b3f322
- 50
- snap-9dd602d7
+ vol-04030aeb76075632f
+ 40
+ snap-00b622fadac39e90b
us-east-1c
available
- 2017-05-18T16:20:08.073Z
+ 2018-03-06T16:33:40.840Z
+
+
-
+ centos-atomic
+ hsong-centos-atomic
+
+
gp2
- 150
+ 120
false
-
- vol-09d73576072fbf6ae
+ vol-006fabcff33ae5272
40
- snap-1d177976
+ snap-00b622fadac39e90b
us-east-1c
- available
- 2017-05-18T16:20:07.982Z
-
- standard
+ in-use
+ 2018-03-06T18:29:43.923Z
+
+
-
+ vol-006fabcff33ae5272
+ i-0125949f65c1e5528
+ /dev/sda1
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ -
+ Name
+ hsong-centos
+
+
+ gp2
+ 120
false
-
- vol-075964f66ea673e99
+ vol-08af70e95c9e06b9b
40
snap-1d177976
us-east-1c
available
- 2017-05-18T16:45:59.675Z
+ 2018-03-15T18:57:13.409Z
standard
false
-
- vol-07e8bc444d8e10c9c
+ vol-0d9e5539117b1d84e
50
snap-9dd602d7
us-east-1c
available
- 2017-05-18T16:45:59.776Z
+ 2018-03-15T18:57:13.508Z
gp2
150
false
-
- vol-0a3ad9ef6f4a178f3
- 40
- snap-1d177976
+ vol-0534ca90d5ec7c1fa
+ 10
+ snap-00b622fadac39e90b
us-east-1c
- in-use
- 2017-06-07T15:59:48.204Z
-
-
-
- vol-0a3ad9ef6f4a178f3
- i-013f45a83fd938928
- /dev/sda1
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
+ available
+ 2018-03-16T12:57:15.476Z
+
standard
false
-
- vol-0382343901be51311
- 50
- snap-9dd602d7
+ vol-05380a49009bd2bab
+ 10
+ snap-00b622fadac39e90b
us-east-1c
- in-use
- 2017-06-07T15:59:48.363Z
-
-
-
- vol-0382343901be51311
- i-013f45a83fd938928
- /dev/sdf
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
+ available
+ 2018-03-16T14:50:05.626Z
+
+ standard
+ false
+
+ -
+ vol-02a2daeffe573eb40
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:57:52.883Z
+
+ standard
+ false
+
+ -
+ vol-00a2450a0d4a75026
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:59:17.653Z
+
+ standard
+ false
+
+ -
+ vol-023585bdecf8787a8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:51:17.945Z
+
+ standard
+ false
+
+ -
+ vol-01501c252c6c17f64
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:14.035Z
+
+ standard
+ false
+
+ -
+ vol-0caa1d7281b4bce32
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:57.679Z
+
+ standard
+ false
+
+ -
+ vol-0780f89f8347bae57
+ 30
+
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.183Z
+
gp2
- 150
+ 100
false
-
- vol-0290849f78dccf167
+ vol-014a050c648da66fd
40
- snap-1d177976
+ snap-249e4c6c
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.104Z
+
+ gp2
+ 120
+ false
+
+ -
+ vol-0d3b1bfb00463ea5d
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:40:30.740Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0bd04af3b534fdde6
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:46:40.680Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d23aa0121812de9
+ 7
+ snap-5f38cd0e
us-east-1c
in-use
- 2017-06-09T15:00:47.137Z
+ 2018-07-25T11:01:38.351Z
-
- vol-0290849f78dccf167
- i-0d794150f7fd264c4
+ vol-04d23aa0121812de9
+ i-09b65a1400b9538ff
/dev/sda1
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2018-07-25T11:01:38.000Z
+ true
standard
false
-
- vol-083b1f1e71831ba7e
- 50
- snap-9dd602d7
+ vol-01fea15450fb7ba14
+ 8
+ snap-4177dea1
us-east-1c
in-use
- 2017-06-09T15:00:47.228Z
+ 2018-09-04T12:12:32.440Z
-
- vol-083b1f1e71831ba7e
- i-0d794150f7fd264c4
- /dev/sdf
+ vol-01fea15450fb7ba14
+ i-08be28f4282ed4ad4
+ /dev/sda1
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2018-09-04T12:12:32.000Z
+ true
- gp2
- 150
+ standard
false
http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:05 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:10 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -36116,14 +51263,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T080905Z
+ - 20180904T150010Z
X-Amz-Content-Sha256:
- 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e19204dc675fc1d97ca505587aefd8baba73f698ef0ff65cca6a2b5a3c0272f3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=94bfbd54aab1e16e77bd75812fb152c25316c88d967c72968737b69fb8a178d3
Content-Length:
- '56'
Accept:
@@ -36140,7 +51287,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:09:00 GMT
+ - Tue, 04 Sep 2018 15:00:11 GMT
Server:
- AmazonEC2
body:
@@ -36148,7 +51295,7 @@ http_interactions:
string: |-
- f0938be9-af5c-42bf-9cd0-f1b9ac294b37
+ 8e07e38a-7858-44f8-b903-a1ed69233b3e
-
snap-1d177976
@@ -36441,14 +51588,148 @@ http_interactions:
-
- snap-0e04c9c244477559b
+ snap-03e398e6e95827703
vol-ffffffff
completed
- 2017-07-03T15:40:06.000Z
+ 2018-08-31T14:29:15.000Z
+
+ 200278856672
+ 67
+ Created by AWS-VMImport service for import-ami-09bf69373591f57dc
+ false
+
+ -
+ snap-07e530b95d909f36d
+ vol-07be95279f27e791f
+ completed
+ 2018-08-27T21:46:31.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-02007c8f386e74470) for ami-0908219546812fe3e from vol-07be95279f27e791f
+ false
+
+ -
+ snap-0b9a379373a50ff29
+ vol-09a10c5f98f2dd67c
+ completed
+ 2018-04-17T08:16:19.000Z
+
+ 200278856672
+ 8
+ Smartstate extract snapshot for instance: i-0a7aebaf459f1f9e7
+ false
+
+
-
+ Name
+ Smartstate extract snapshot
+
+
+
+ -
+ snap-02094089d5ab75ded
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T20:40:13.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-05a7d88d5b5dec9e7
+ vol-0825f4636ce0d50c6
+ completed
+ 2018-03-29T20:15:18.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ test
+
+
+
+ -
+ snap-075f99be2814607c5
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T14:20:53.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-854a3bff from vol-00bda21753cf68784
+ false
+
+ -
+ snap-090b10966b3b3d0bf
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T01:48:39.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-db582ea1 from vol-00bda21753cf68784
+ false
+
+ -
+ snap-07ef84850550046dd
+ vol-08048f081712cdc55
+ completed
+ 2017-12-13T20:01:22.000Z
200278856672
2
- [Copied snap-034acb0cf077bc06c from us-east-1]
+
+ false
+
+
-
+ Name
+ hsong-snapshot-test
+
+
+
+ -
+ snap-0b1bfdb21caec2dcd
+ vol-ffffffff
+ completed
+ 2017-11-16T12:22:01.000Z
+
+ 200278856672
+ 10
+ [Copied snap-03d5e23022317b3a5 from us-east-1]
+ false
+
+ -
+ snap-02349dbbbf755f6af
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c58ddded84a9e8ba
+ vol-67606d2d
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-67606d2d
false
-
@@ -36564,8 +51845,70 @@ http_interactions:
+ -
+ snap-0400b13c0acfdffa9
+ vol-0b80eb1a867cd27f8
+ completed
+ 2018-07-17T15:29:53.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0a67c549558c9c392) for ami-cf96afb0 from vol-0b80eb1a867cd27f8
+ false
+
+ -
+ snap-08babfa12e1a6b948
+ vol-ffffffff
+ completed
+ 2018-05-02T22:50:21.000Z
+
+ 200278856672
+ 41
+ Created by AWS-VMImport service for import-ami-ffhlve05
+ false
+
+
-
+ Name
+ simaishi
+
+
+
+ -
+ snap-064b688768dd7a1a2
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T23:53:43.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-0c14d3a2d3706ffc4
+ vol-0d923fe770ed2486c
+ completed
+ 2017-12-13T21:26:35.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-test-again-snap
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:09:06 GMT
+ recorded_at: Tue, 04 Sep 2018 15:00:12 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_inventory_object.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_inventory_object.yml
index 16dbaf2f4..b70d20184 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_inventory_object.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_inventory_object.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075146Z
+ - 20180906T091400Z
X-Amz-Content-Sha256:
- 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ebd6c99d293938416c2fdf8b4073e9055171f7011af8c94a4527cab502393418
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7551e7b5fa3a718726483195ceaf20719f30a30d896f77e6abc98452a4221df5
Content-Length:
- '51'
Accept:
@@ -31,12 +31,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1437'
Date:
- - Tue, 26 Sep 2017 07:51:42 GMT
+ - Thu, 06 Sep 2018 09:13:59 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +42,7 @@ http_interactions:
string: |-
- df5e3977-3341-4bfd-87a3-3ec147c488a5
+ 1ef513f3-4f05-4204-8e64-ad948c061483
-
us-east-1a
@@ -85,7 +83,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:47 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:01 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -98,14 +96,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075148Z
+ - 20180906T091401Z
X-Amz-Content-Sha256:
- e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ec9f4777fc2e09334a0216df896c660ed256682d3dee85f82a4f03ccbe1692e0
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2ed5f6d587c2fc1d9918e3419b4cbc240b9af28f7318c70c7bbc8f74f26f7849
Content-Length:
- '42'
Accept:
@@ -122,15 +120,15 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:43 GMT
+ - Thu, 06 Sep 2018 09:14:06 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- 63e81b20-9f15-4985-867f-2a9b1ca58263
+ d9e652eb-811a-473a-ae33-963fe3017405
-
api-create
@@ -144,10 +142,18 @@ http_interactions:
aws-test-1
cb:c9:8d:70:8e:4c:d5:9a:bd:a9:32:bb:73:90:af:09:67:31:ce:b9
+ -
+ azagayno
+ d8:b4:60:b4:1d:a6:c5:68:b0:4c:55:a8:76:c4:53:c9:45:e5:8e:89
+
-
bd
38:ac:a0:23:29:3b:0a:a8:0d:13:8c:d1:78:d7:9d:a8:cf:c9:42:03
+ -
+ bdunne
+ 4b:49:72:eb:26:48:0f:93:d1:3b:3c:dc:f0:66:15:fa:a0:85:28:7e
+
-
bill
eb:13:8d:19:b1:9d:9f:8b:ea:e0:9b:0b:eb:ea:46:a7:b3:a9:76:99
@@ -156,6 +162,10 @@ http_interactions:
bmclaugh
1a:03:3d:32:1f:74:25:52:f1:5e:17:b3:10:82:b6:28:76:f1:e0:8b
+ -
+ BronaghsKeyPair
+ 1a:35:6a:3a:f1:fd:71:74:a1:d9:c3:2e:11:8e:64:c4:40:ad:7e:ba
+
-
bsorota
be:2e:fb:10:34:51:f6:eb:fb:1d:fe:af:47:56:69:5c:ed:d2:25:67
@@ -168,6 +178,14 @@ http_interactions:
dberger
2b:f3:69:12:e2:12:4b:7e:e2:9e:ff:ef:6f:df:c8:3e:77:e6:26:19
+ -
+ docker-test
+ 42:0c:f5:d8:26:96:c0:08:96:ac:2f:18:d2:c4:b9:ec:7d:3e:e4:e5
+
+ -
+ docker_1801_01
+ b1:ad:a7:e6:6e:da:9e:07:b2:f6:47:cf:38:2a:cb:ed:c2:e8:7b:0e
+
-
EmsRefreshSpec-KeyPair
49:9f:3f:a4:26:48:39:94:26:06:dd:25:73:e5:da:9b:4b:1b:6c:93
@@ -176,6 +194,10 @@ http_interactions:
EMSRefreshSpec-KeyPair-02
52:13:06:59:38:ef:97:58:ff:d4:46:f1:ad:60:ed:72:c0:63:aa:77
+ -
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 69:aa:aa:41:83:c2:dc:13:27:7a:c0:91:b9:b2:94:73:33:04:bd:58
+
-
gdb
7a:c7:44:04:62:0d:b6:a7:fe:90:45:7a:00:60:23:2f
@@ -184,10 +206,34 @@ http_interactions:
gm
a5:cb:4a:5d:e4:c0:97:7e:2f:c8:cd:6d:f7:6c:ab:4c:17:6d:6e:83
+ -
+ GregB-Minishift-keypair
+ 1e:33:8b:5f:ea:63:a0:87:82:67:e0:ad:96:f8:67:95:03:68:ab:35
+
+ -
+ hsong-keypair
+ e4:56:fb:0f:ae:21:15:2e:c1:2d:e4:35:ab:7c:12:be:46:ee:8c:30
+
+ -
+ hsong_centos_atomic
+ f3:88:fe:83:55:bd:5c:84:8b:c1:8b:fa:7b:5b:02:c9:77:03:4c:a0
+
+ -
+ hui_test
+ 35:8c:12:c8:63:1c:1f:a1:29:8f:98:74:6f:f3:12:92:e5:46:be:70
+
-
james
a9:48:48:b4:51:b7:43:b7:c2:12:69:50:e7:74:48:08:10:8d:7d:0c
+ -
+ james2
+ d3:db:86:19:03:50:fc:67:84:0b:92:f1:3b:15:13:c9:a9:86:20:9d
+
+ -
+ jcfoo
+ b7:5a:d2:4e:ef:86:6e:82:69:8d:8c:92:54:ec:39:e7:14:77:49:3b
+
-
jerryk
28:2f:64:b4:de:8a:fa:1b:65:3f:63:23:28:74:c3:a3:af:94:41:a6
@@ -201,8 +247,8 @@ http_interactions:
00:38:89:b1:d5:42:a4:31:67:05:ea:b5:87:19:d7:dd:46:21:df:21
-
- ladas_test
- 48:62:3d:b9:56:be:98:d8:cd:4d:73:b0:fa:36:9b:ba:0c:94:6a:29
+ ladas_ansible
+ 6b:6f:8b:c0:6f:0d:bf:62:2a:71:8d:5d:47:51:e0:22:e7:e9:9a:5e
-
mgf
@@ -216,6 +262,14 @@ http_interactions:
MIQ_SSA
2b:21:f4:b2:47:20:2e:91:4d:ef:5f:2f:48:90:5c:1a:da:ec:68:2d
+ -
+ MIQ_SSA-7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 75:e4:72:c9:d7:59:92:ca:14:68:32:b4:f1:b1:e2:b4:34:8b:34:ff
+
+ -
+ MIQ_SSA7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 27:f0:c9:fc:41:9f:e3:8a:bf:d6:7d:ed:69:6a:8a:3a:6f:3b:04:4b
+
-
mk
66:e9:a1:2a:7f:9d:46:b2:71:3f:1e:eb:a8:95:9f:c3:f6:ce:c7:38
@@ -228,6 +282,62 @@ http_interactions:
rpo
e6:c0:d7:a2:f8:dd:62:8d:76:36:7d:ca:d5:df:5f:a4:e9:bd:28:2c
+ -
+ simaishi
+ a1:d5:87:c3:87:6a:51:15:a9:50:79:15:49:c6:6e:67:70:17:a3:47
+
+ -
+ simaishi2
+ ca:8d:be:35:2e:be:bd:35:87:2b:b0:11:ff:50:32:58:19:36:07:77
+
+ -
+ smartstate-0a8b0ecf-320d-4f7c-ad28-1aae106a196b
+ 2d:98:ac:50:52:75:05:01:a2:33:92:03:78:43:96:94:64:80:29:84
+
+ -
+ smartstate-1bd0c674-5ea4-4a26-8970-054d19c8520a
+ 1d:cd:a7:b9:92:47:eb:cc:c7:58:33:f8:4e:4c:9a:a7:4d:79:76:58
+
+ -
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 2e:e2:62:00:bf:ef:de:87:3c:7e:37:c9:b8:3b:12:8c:a8:35:be:6a
+
+ -
+ smartstate-2d1d26a2-1852-44ed-b8aa-8f1697e0d2f0
+ f9:02:aa:24:bb:0e:70:51:d8:2e:c5:e1:d0:d4:1a:75:7a:b7:5c:94
+
+ -
+ smartstate-40193ce5-1459-4fdb-96d1-6128860ec235
+ 8d:3c:f4:ef:de:1c:8e:ec:22:06:52:2e:0b:b5:35:00:33:aa:70:b8
+
+ -
+ smartstate-7033fdde-6845-4d32-9e30-72d1b8599fa1
+ ba:fb:6c:f5:98:88:9c:c3:77:29:36:4c:a7:af:2d:f4:82:65:cb:ae
+
+ -
+ smartstate-70ceca4e-996f-47d5-9030-fd55a7910520
+ 65:cc:f4:64:ea:c3:34:63:19:5e:01:29:0e:4a:e6:53:b6:92:a1:f0
+
+ -
+ smartstate-74374e7e-6b63-421d-a1c5-3dcbd0b071e6
+ 60:36:1e:bf:75:da:23:60:76:5e:80:9f:b6:97:d0:1d:27:82:16:4e
+
+ -
+ smartstate-b5a73b24-f39e-11e6-b537-000c292c066c
+ fb:53:ce:0a:23:d8:7a:5c:25:32:74:e5:27:11:4b:e4:07:45:ef:44
+
+ -
+ smartstate-b88991cf-78cc-4e62-b775-72ad740d6ef1
+ 9c:bd:b7:f6:23:e8:ab:2c:d4:12:46:33:f7:7e:9c:10:64:c7:26:01
+
+ -
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ fd:bc:55:f2:b5:2e:4d:49:cc:21:12:64:7d:6a:4f:72:5b:d3:52:be
+
+ -
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0f:45:3d:81:81:1c:e6:93:eb:f2:7f:70:4b:51:86:69:47:85:d6:42
+
-
ssa
72:79:2e:fc:7e:67:ee:af:14:f5:5e:e1:cf:a8:9a:39:04:3a:91:84
@@ -236,10 +346,14 @@ http_interactions:
ssa_1
31:8f:c1:bc:0b:5c:ba:8a:df:b7:4c:24:12:6e:82:0f:6b:66:ff:e0
+ -
+ stomsa
+ 9a:82:b7:d1:ce:b3:96:71:0b:b0:af:5d:db:89:ea:af:66:69:54:9e
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:49 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:07 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -252,14 +366,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075149Z
+ - 20180906T091407Z
X-Amz-Content-Sha256:
- 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5f9a5c080652167cce847e6377278d61b33aa44b9983bca1b5e91f71bf436e2c
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a3f391a93e0a318ecdc0cf796bf40b707b8f3167fe0c83f2fa86d34be94b6fba
Content-Length:
- '40'
Accept:
@@ -270,21 +384,217 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8ac81196-a28f-11e7-bde0-59bd17526325
+ - 358c6468-b1b5-11e8-a50c-a7840c3b962c
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '19857'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:44 GMT
+ - Thu, 06 Sep 2018 09:14:07 GMT
body:
encoding: UTF-8
string: |
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:19:15.403Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+ SC-200278856672-pp-gato4drzgerpy
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:18:53.202Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+ SC-200278856672-pp-u2tepcnttldko
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
@@ -316,6 +626,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -372,6 +685,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -410,6 +726,9 @@ http_interactions:
true
+
+ NOT_CHECKED
+
KeyName
@@ -453,6 +772,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -471,33 +793,33 @@ http_interactions:
- 8ac81196-a28f-11e7-bde0-59bd17526325
+ 358c6468-b1b5-11e8-a50c-a7840c3b962c
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:51 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:08 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-gato4drzgerpy&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075151Z
+ - 20180906T091408Z
X-Amz-Content-Sha256:
- - f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
+ - ed78828e8f29e2adc5eb9ee8ece873dac08fbedd20b88b1727be1ab3ef1a46d4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7d6135f64807d52283bc768296cd0bba9b09e61ee8fa1309ebd18577e15f507c
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=95d0970b8339450cadf05e4a03e648d3bf43e251ae66bcdb778e417ce87f3d2f
Content-Length:
- - '99'
+ - '80'
Accept:
- "*/*"
response:
@@ -506,314 +828,54 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8b985a26-a28f-11e7-957f-83c96f7544e8
+ - 36798304-b1b5-11e8-af46-c97c71653944
Content-Type:
- text/xml
Content-Length:
- - '23157'
+ - '21739'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:46 GMT
+ - Thu, 06 Sep 2018 09:14:09 GMT
body:
encoding: UTF-8
- string: "\n
- \ \n {\n "AWSTemplateFormatVersion"
- : "2010-09-09",\n\n "Description" : "AWS CloudFormation
- Sample Template VPC_Single_Instance_In_Subnet: 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.",\n\n
- \ "Parameters" : {\n\n "InstanceType" : {\n "Description"
- : "WebServer EC2 instance type",\n "Type" : "String",\n
- \ "Default" : "t2.small",\n "AllowedValues"
- : [ "t1.micro", "t2.nano", "t2.micro", "t2.small",
- "t2.medium", "t2.large", "m1.small", "m1.medium",
- "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge",
- "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge",
- "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge",
- "m4.4xlarge", "m4.10xlarge", "c1.medium", "c1.xlarge",
- "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge",
- "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge",
- "c4.4xlarge", "c4.8xlarge", "g2.2xlarge", "g2.8xlarge",
- "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge",
- "r3.8xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge",
- "i2.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge",
- "d2.8xlarge", "hi1.4xlarge", "hs1.8xlarge",
- "cr1.8xlarge", "cc2.8xlarge", "cg1.4xlarge"]\n,\n
- \ "ConstraintDescription" : "must be a valid EC2 instance
- type."\n },\n\n "KeyName": {\n "Description"
- : "Name of an existing EC2 KeyPair to enable SSH access to the instance",\n
- \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription"
- : "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
- {\n "Description": "Db password",\n "Type":
- "String",\n "NoEcho": "true", \n "Default":
- "adminadmin"\n },\t\n \n "SSHLocation" : {\n
- \ "Description" : " The IP address range that can be used
- to SSH to the EC2 instances",\n "Type": "String",\n
- \ "MinLength": "9",\n "MaxLength":
- "18",\n "Default": "0.0.0.0/0",\n "AllowedPattern":
- "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
- \ "ConstraintDescription": "must be a valid IP CIDR range
- of the form x.x.x.x/x."\n },\n\n "InstanceSecurityGroupID":
- {\n "Description": "Security Group ID",\n "Type":
- "AWS::EC2::SecurityGroup::Id",\n "ConstraintDescription":
- "must be the id of an existing VPC SecurityGroup."\n },\n \n
- \ "SubnetID": {\n "Description": "Subnet ID",\n
- \ "Type": "AWS::EC2::Subnet::Id",\n "ConstraintDescription":
- "must be the id of an existing VPC Subnet."\n }\n },\n\n "Mappings"
- : {\n "Region2Examples" : {\n "us-east-1" :
- { "Examples" : "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
- },\n "us-west-2" : { "Examples" : "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
- },\n "us-west-1" : { "Examples" : "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
- },\n "eu-west-1" : { "Examples" : "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
- },\n "eu-west-2" : { "Examples" : "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
- },\n "eu-central-1" : { "Examples" : "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
- },\n "ap-southeast-1" : { "Examples" : "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
- },\n "ap-northeast-1" : { "Examples" : "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
- },\n "ap-northeast-2" : { "Examples" : "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
- },\n "ap-southeast-2" : { "Examples" : "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
- },\n "ap-south-1" : { "Examples" : "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
- },\n "us-east-2" : { "Examples" : "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
- },\n "ca-central-1" : { "Examples" : "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
- },\n "sa-east-1" : { "Examples" : "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
- },\n "cn-north-1" : { "Examples" : "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
- }\n }\n,\n "AWSInstanceType2Arch" : {\n "t1.micro"
- \ : { "Arch" : "PV64" },\n "t2.nano"
- \ : { "Arch" : "HVM64" },\n "t2.micro"
- \ : { "Arch" : "HVM64" },\n "t2.small"
- \ : { "Arch" : "HVM64" },\n "t2.medium"
- \ : { "Arch" : "HVM64" },\n "t2.large"
- \ : { "Arch" : "HVM64" },\n "m1.small"
- \ : { "Arch" : "PV64" },\n "m1.medium"
- \ : { "Arch" : "PV64" },\n "m1.large"
- \ : { "Arch" : "PV64" },\n "m1.xlarge"
- \ : { "Arch" : "PV64" },\n "m2.xlarge"
- \ : { "Arch" : "PV64" },\n "m2.2xlarge"
- \ : { "Arch" : "PV64" },\n "m2.4xlarge"
- \ : { "Arch" : "PV64" },\n "m3.medium"
- \ : { "Arch" : "HVM64" },\n "m3.large"
- \ : { "Arch" : "HVM64" },\n "m3.xlarge"
- \ : { "Arch" : "HVM64" },\n "m3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.large"
- \ : { "Arch" : "HVM64" },\n "m4.xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.2xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.4xlarge"
- \ : { "Arch" : "HVM64" },\n "m4.10xlarge"
- : { "Arch" : "HVM64" },\n "c1.medium"
- \ : { "Arch" : "PV64" },\n "c1.xlarge"
- \ : { "Arch" : "PV64" },\n "c3.large"
- \ : { "Arch" : "HVM64" },\n "c3.xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.4xlarge"
- \ : { "Arch" : "HVM64" },\n "c3.8xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.large"
- \ : { "Arch" : "HVM64" },\n "c4.xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.2xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.4xlarge"
- \ : { "Arch" : "HVM64" },\n "c4.8xlarge"
- \ : { "Arch" : "HVM64" },\n "g2.2xlarge"
- \ : { "Arch" : "HVMG2" },\n "g2.8xlarge"
- \ : { "Arch" : "HVMG2" },\n "r3.large"
- \ : { "Arch" : "HVM64" },\n "r3.xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.2xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.4xlarge"
- \ : { "Arch" : "HVM64" },\n "r3.8xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.2xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.4xlarge"
- \ : { "Arch" : "HVM64" },\n "i2.8xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.2xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.4xlarge"
- \ : { "Arch" : "HVM64" },\n "d2.8xlarge"
- \ : { "Arch" : "HVM64" },\n "hi1.4xlarge"
- : { "Arch" : "HVM64" },\n "hs1.8xlarge"
- : { "Arch" : "HVM64" },\n "cr1.8xlarge"
- : { "Arch" : "HVM64" },\n "cc2.8xlarge"
- : { "Arch" : "HVM64" }\n },\n\n "AWSInstanceType2NATArch"
- : {\n "t1.micro" : { "Arch" : "NATPV64"
- \ },\n "t2.nano" : { "Arch" : "NATHVM64"
- \ },\n "t2.micro" : { "Arch" : "NATHVM64"
- \ },\n "t2.small" : { "Arch" : "NATHVM64"
- \ },\n "t2.medium" : { "Arch" : "NATHVM64"
- \ },\n "t2.large" : { "Arch" : "NATHVM64"
- \ },\n "m1.small" : { "Arch" : "NATPV64"
- \ },\n "m1.medium" : { "Arch" : "NATPV64"
- \ },\n "m1.large" : { "Arch" : "NATPV64"
- \ },\n "m1.xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.2xlarge" : { "Arch" : "NATPV64"
- \ },\n "m2.4xlarge" : { "Arch" : "NATPV64"
- \ },\n "m3.medium" : { "Arch" : "NATHVM64"
- \ },\n "m3.large" : { "Arch" : "NATHVM64"
- \ },\n "m3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.large" : { "Arch" : "NATHVM64"
- \ },\n "m4.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "m4.10xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c1.medium" : { "Arch" : "NATPV64"
- \ },\n "c1.xlarge" : { "Arch" : "NATPV64"
- \ },\n "c3.large" : { "Arch" : "NATHVM64"
- \ },\n "c3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c3.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.large" : { "Arch" : "NATHVM64"
- \ },\n "c4.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "c4.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "g2.2xlarge" : { "Arch" : "NATHVMG2"
- \ },\n "g2.8xlarge" : { "Arch" : "NATHVMG2"
- \ },\n "r3.large" : { "Arch" : "NATHVM64"
- \ },\n "r3.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "r3.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "i2.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.2xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "d2.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "hi1.4xlarge" : { "Arch" : "NATHVM64"
- \ },\n "hs1.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "cr1.8xlarge" : { "Arch" : "NATHVM64"
- \ },\n "cc2.8xlarge" : { "Arch" : "NATHVM64"
- \ }\n }\n,\n "AWSRegionArch2AMI" : {\n "us-east-1"
- \ : {"PV64" : "ami-2a69aa47", "HVM64"
- : "ami-6869aa05", "HVMG2" : "ami-bb18efad"},\n
- \ "us-west-2" : {"PV64" : "ami-7f77b31f",
- "HVM64" : "ami-7172b611", "HVMG2" : "ami-31912f51"},\n
- \ "us-west-1" : {"PV64" : "ami-a2490dc2",
- "HVM64" : "ami-31490d51", "HVMG2" : "ami-0a9dcf6a"},\n
- \ "eu-west-1" : {"PV64" : "ami-4cdd453f",
- "HVM64" : "ami-f9dd458a", "HVMG2" : "ami-873e61e1"},\n
- \ "eu-west-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-886369ec", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "eu-central-1" : {"PV64" : "ami-6527cf0a",
- "HVM64" : "ami-ea26ce85", "HVMG2" : "ami-a16ba4ce"},\n
- \ "ap-northeast-1" : {"PV64" : "ami-3e42b65f",
- "HVM64" : "ami-374db956", "HVMG2" : "ami-6b443f0c"},\n
- \ "ap-northeast-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-2b408b45", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "ap-southeast-1" : {"PV64" : "ami-df9e4cbc",
- "HVM64" : "ami-a59b49c6", "HVMG2" : "ami-1c0ba17f"},\n
- \ "ap-southeast-2" : {"PV64" : "ami-63351d00",
- "HVM64" : "ami-dc361ebf", "HVMG2" : "ami-bf0d0adc"},\n
- \ "ap-south-1" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-ffbdd790", "HVMG2" : "ami-6135440e"},\n
- \ "us-east-2" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-f6035893", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "ca-central-1" : {"PV64" : "NOT_SUPPORTED",
- "HVM64" : "ami-730ebd17", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "sa-east-1" : {"PV64" : "ami-1ad34676",
- "HVM64" : "ami-6dd04501", "HVMG2" : "NOT_SUPPORTED"},\n
- \ "cn-north-1" : {"PV64" : "ami-77559f1a",
- "HVM64" : "ami-8e6aa0e3", "HVMG2" : "NOT_SUPPORTED"}\n
- \ }\n\n },\n\n "Resources" : {\n "IPAddress" :
- {\n "Type" : "AWS::EC2::EIP",\n "Properties"
- : {\n "Domain" : "vpc",\n "InstanceId"
- : { "Ref" : "WebServerInstance" }\n }\n },\n\n
- \ "WebServerInstance" : {\n "Type" : "AWS::EC2::Instance",\n
- \ "Metadata" : {\n "Comment" : "Install
- a simple application",\n "AWS::CloudFormation::Init"
- : {\n "config" : {\n "packages" :
- {\n "yum" : {\n "httpd" :
- []\n }\n },\n\n "files" : {\n
- \ "/var/www/html/index.html" : {\n "content"
- : { "Fn::Join" : ["\\n", [\n "<img
- src=\\"", {"Fn::FindInMap" : ["Region2Examples",
- {"Ref" : "AWS::Region"}, "Examples"]}, "/cloudformation_graphic.png\\"
- alt=\\"AWS CloudFormation Logo\\"/>",\n "<h1>Congratulations,
- you have successfully launched the AWS CloudFormation sample.</h1>"\n
- \ ]]},\n "mode" : "000644",\n
- \ "owner" : "root",\n "group"
- \ : "root"\n },\n\n "/etc/cfn/cfn-hup.conf"
- : {\n "content" : { "Fn::Join" : ["",
- [\n "[main]\\n",\n "stack=",
- { "Ref" : "AWS::StackId" }, "\\n",\n "region=",
- { "Ref" : "AWS::Region" }, "\\n"\n ]]},\n
- \ "mode" : "000400",\n "owner"
- \ : "root",\n "group" : "root"\n
- \ },\n\n "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
- : {\n "content": { "Fn::Join" : ["",
- [\n "[cfn-auto-reloader-hook]\\n",\n "triggers=post.update\\n",\n
- \ "path=Resources.WebServerInstance.Metadata.AWS::CloudFormation::Init\\n",\n
- \ "action=/opt/aws/bin/cfn-init -v ",\n "
- \ --stack ", { "Ref" : "AWS::StackName" },\n
- \ " --resource WebServerInstance ",\n "
- \ --region ", { "Ref" : "AWS::Region" }, "\\n",\n
- \ "runas=root\\n"\n ]]}\n }\n
- \ },\n\n "services" : {\n "sysvinit"
- : {\n "httpd" : { "enabled" : "true",
- "ensureRunning" : "true" },\n "cfn-hup"
- : { "enabled" : "true", "ensureRunning" : "true",
- \n "files" : ["/etc/cfn/cfn-hup.conf",
- "/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}\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 "KeyName" : { "Ref"
- : "KeyName" },\n "Tags" : [ {"Key" :
- "Application", "Value" : { "Ref" : "AWS::StackId"}
- } ],\n "NetworkInterfaces" : [{\n "GroupSet"
- \ : [{ "Ref" : "InstanceSecurityGroupID"
- }],\n "AssociatePublicIpAddress" : "true",\n
- \ "DeviceIndex" : "0",\n "DeleteOnTermination"
- \ : "true",\n "SubnetId" :
- { "Ref" : "SubnetID" }\n }],\n "UserData"
- \ : { "Fn::Base64" : { "Fn::Join" : ["",
- [\n "#!/bin/bash -xe\\n",\n "yum update
- -y aws-cfn-bootstrap\\n",\n\n "/opt/aws/bin/cfn-init
- -v ",\n " --stack ", { "Ref"
- : "AWS::StackName" },\n " --resource WebServerInstance
- ",\n " --region ", { "Ref" :
- "AWS::Region" }, "\\n",\n\n "/opt/aws/bin/cfn-signal
- -e $? ",\n " --stack ", { "Ref"
- : "AWS::StackName" },\n " --resource WebServerInstance
- ",\n " --region ", { "Ref" :
- "AWS::Region" }, "\\n"\n ]]}}\n },\n "CreationPolicy"
- : {\n "ResourceSignal" : {\n "Timeout"
- : "PT15M"\n }\n }\n }\n },\n\n "Outputs"
- : {\n "URL" : {\n "Value" : { "Fn::Join"
- : [ "", ["http://", { "Fn::GetAtt" : ["WebServerInstance",
- "PublicIp"] }]]},\n "Description" : "Newly created
- application URL"\n }\n }\n}\n\n\n \n
- \ Original\n Processed\n \n
- \ \n \n 8b985a26-a28f-11e7-957f-83c96f7544e8\n
- \ \n\n"
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. 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":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{}}
+
+ Original
+ Processed
+
+
+
+ 36798304-b1b5-11e8-af46-c97c71653944
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:52 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:10 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-gato4drzgerpy&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075152Z
+ - 20180906T091410Z
X-Amz-Content-Sha256:
- - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
+ - a7ac4ff8a8bfc80b6a75d4fa2fd39693d4438b5075825897c639aa9fa2d03d7c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ed5913a95f99a12620487ee5b2d5bdd02f16773cd906518615bca0b99a2d54f4
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=96b515c8c1f42361bc17ddb1865533f58774aa6537eaeac53dd832adfb7be3e2
Content-Length:
- - '106'
+ - '87'
Accept:
- "*/*"
response:
@@ -822,13 +884,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8c3f21b6-a28f-11e7-af30-3bd6529823da
+ - 3705e46f-b1b5-11e8-a13c-ddcb40457984
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '2487'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:47 GMT
+ - Thu, 06 Sep 2018 09:14:09 GMT
body:
encoding: UTF-8
string: |
@@ -836,49 +900,373 @@ http_interactions:
- 2017-05-03T10:49:32.560Z
- 34.202.178.10
+ 2018-09-06T08:19:20.925Z
+ SC-200278-ElasticL-G69XH7HDIQ0J
CREATE_COMPLETE
- IPAddress
- AWS::EC2::EIP
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
- 2017-05-03T10:48:56.988Z
- i-0bca58e6e540ddc39
+ 2018-09-06T08:19:28.959Z
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
CREATE_COMPLETE
- WebServerInstance
- AWS::EC2::Instance
-
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-06T08:19:32.678Z
+ SC-200278856672-pp-gato4drzgerpy-LaunchConfig-XG9MSNGN8QLR
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-06T08:22:44.813Z
+ SC-200278856672-pp-gato4drzgerpy-WebServerGroup-UPQDGUBBE1FL
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
- 8c3f21b6-a28f-11e7-af30-3bd6529823da
+ 3705e46f-b1b5-11e8-a13c-ddcb40457984
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:53 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:11 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecStack&Version=2010-05-15
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-u2tepcnttldko&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075153Z
+ - 20180906T091411Z
X-Amz-Content-Sha256:
- - 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
+ - 99bc9f60b667c89c0e51d65d4b3fd8f662fa8e6e3f68b734959a57c51171d49b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e78b5bfc15b5243fd97e90c7d24b0a2f34443ac1fa46ca1f7b638d62cd14b3a2
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=999b8e114f53a5e3c9dc2901743d40ba6073f3e44274af1753da0d6fb674e5d9
Content-Length:
- - '67'
+ - '80'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3ae6538e-b1b5-11e8-b29e-199be7c151cf
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '22014'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:16 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. 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":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{"Rule1":{"Assertions":[{"Assert":{"Fn::Contains":[["t1.micro","m1.small"],{"Ref":"InstanceType"}]},"AssertDescription":"Instance type should be either t1.micro or m1.small"}]}}}
+
+ Original
+ Processed
+
+
+
+ 3ae6538e-b1b5-11e8-b29e-199be7c151cf
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:18 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-u2tepcnttldko&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091418Z
+ X-Amz-Content-Sha256:
+ - 4f43bc59765197c421f867034ad10dae7c36341e83e445d0bbf7112c55c493cf
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d2016dcd0bb3bf86fd7e372811463ea409c7a949e1908a4bc378a4f6a89d8d34
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3b826c77-b1b5-11e8-af46-c97c71653944
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:17 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-06T08:18:58.415Z
+ SC-200278-ElasticL-OHBTSYAE8C89
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-06T08:19:06.128Z
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-06T08:19:09.211Z
+ SC-200278856672-pp-u2tepcnttldko-LaunchConfig-1SSE0GMS00N3T
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-06T08:21:59.191Z
+ SC-200278856672-pp-u2tepcnttldko-WebServerGroup-1JRWA7TZE4G12
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 3b826c77-b1b5-11e8-af46-c97c71653944
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:18 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091418Z
+ X-Amz-Content-Sha256:
+ - 4f67554d7040771121e681be30a59711c4619a8f6ffde0e5e1e841b4e59e73a4
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=072dab5d97679fb8e222544e00084dfffcdbbb4df656acc2505fc7008bff09f8
+ Content-Length:
+ - '80'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3c03a9be-b1b5-11e8-892b-c7e377aeb1ad
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '22726'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:18 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {"AWSTemplateFormatVersion":"2010-09-09","Description":"AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.","Parameters":{"Environment":{"Description":"Environment type","Type":"String","Default":"prod","AllowedValues":["test","prod"]},"InstanceType":{"Description":"WebServer EC2 instance type","Type":"String","Default":"t2.small","AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","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":{"Region2Examples":{"us-east-1":{"Examples":"https://s3.amazonaws.com/cloudformation-examples-us-east-1"},"us-west-2":{"Examples":"https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"},"us-west-1":{"Examples":"https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"},"eu-west-1":{"Examples":"https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"},"eu-west-2":{"Examples":"https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"},"eu-central-1":{"Examples":"https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"},"ap-southeast-1":{"Examples":"https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"},"ap-northeast-1":{"Examples":"https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"},"ap-northeast-2":{"Examples":"https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"},"ap-southeast-2":{"Examples":"https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"},"ap-south-1":{"Examples":"https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"},"us-east-2":{"Examples":"https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"},"ca-central-1":{"Examples":"https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"},"sa-east-1":{"Examples":"https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"},"cn-north-1":{"Examples":"https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"}},"AWSInstanceType2Arch":{"t1.micro":{"Arch":"PV64"},"t2.nano":{"Arch":"HVM64"},"t2.micro":{"Arch":"HVM64"},"t2.small":{"Arch":"HVM64"},"t2.medium":{"Arch":"HVM64"},"t2.large":{"Arch":"HVM64"},"m1.small":{"Arch":"PV64"},"m1.medium":{"Arch":"PV64"},"m1.large":{"Arch":"PV64"},"m1.xlarge":{"Arch":"PV64"},"m2.xlarge":{"Arch":"PV64"},"m2.2xlarge":{"Arch":"PV64"},"m2.4xlarge":{"Arch":"PV64"},"m3.medium":{"Arch":"HVM64"},"m3.large":{"Arch":"HVM64"},"m3.xlarge":{"Arch":"HVM64"},"m3.2xlarge":{"Arch":"HVM64"},"m4.large":{"Arch":"HVM64"},"m4.xlarge":{"Arch":"HVM64"},"m4.2xlarge":{"Arch":"HVM64"},"m4.4xlarge":{"Arch":"HVM64"},"m4.10xlarge":{"Arch":"HVM64"},"c1.medium":{"Arch":"PV64"},"c1.xlarge":{"Arch":"PV64"},"c3.large":{"Arch":"HVM64"},"c3.xlarge":{"Arch":"HVM64"},"c3.2xlarge":{"Arch":"HVM64"},"c3.4xlarge":{"Arch":"HVM64"},"c3.8xlarge":{"Arch":"HVM64"},"c4.large":{"Arch":"HVM64"},"c4.xlarge":{"Arch":"HVM64"},"c4.2xlarge":{"Arch":"HVM64"},"c4.4xlarge":{"Arch":"HVM64"},"c4.8xlarge":{"Arch":"HVM64"},"g2.2xlarge":{"Arch":"HVMG2"},"g2.8xlarge":{"Arch":"HVMG2"},"r3.large":{"Arch":"HVM64"},"r3.xlarge":{"Arch":"HVM64"},"r3.2xlarge":{"Arch":"HVM64"},"r3.4xlarge":{"Arch":"HVM64"},"r3.8xlarge":{"Arch":"HVM64"},"i2.xlarge":{"Arch":"HVM64"},"i2.2xlarge":{"Arch":"HVM64"},"i2.4xlarge":{"Arch":"HVM64"},"i2.8xlarge":{"Arch":"HVM64"},"d2.xlarge":{"Arch":"HVM64"},"d2.2xlarge":{"Arch":"HVM64"},"d2.4xlarge":{"Arch":"HVM64"},"d2.8xlarge":{"Arch":"HVM64"},"hi1.4xlarge":{"Arch":"HVM64"},"hs1.8xlarge":{"Arch":"HVM64"},"cr1.8xlarge":{"Arch":"HVM64"},"cc2.8xlarge":{"Arch":"HVM64"}},"AWSInstanceType2NATArch":{"t1.micro":{"Arch":"NATPV64"},"t2.nano":{"Arch":"NATHVM64"},"t2.micro":{"Arch":"NATHVM64"},"t2.small":{"Arch":"NATHVM64"},"t2.medium":{"Arch":"NATHVM64"},"t2.large":{"Arch":"NATHVM64"},"m1.small":{"Arch":"NATPV64"},"m1.medium":{"Arch":"NATPV64"},"m1.large":{"Arch":"NATPV64"},"m1.xlarge":{"Arch":"NATPV64"},"m2.xlarge":{"Arch":"NATPV64"},"m2.2xlarge":{"Arch":"NATPV64"},"m2.4xlarge":{"Arch":"NATPV64"},"m3.medium":{"Arch":"NATHVM64"},"m3.large":{"Arch":"NATHVM64"},"m3.xlarge":{"Arch":"NATHVM64"},"m3.2xlarge":{"Arch":"NATHVM64"},"m4.large":{"Arch":"NATHVM64"},"m4.xlarge":{"Arch":"NATHVM64"},"m4.2xlarge":{"Arch":"NATHVM64"},"m4.4xlarge":{"Arch":"NATHVM64"},"m4.10xlarge":{"Arch":"NATHVM64"},"c1.medium":{"Arch":"NATPV64"},"c1.xlarge":{"Arch":"NATPV64"},"c3.large":{"Arch":"NATHVM64"},"c3.xlarge":{"Arch":"NATHVM64"},"c3.2xlarge":{"Arch":"NATHVM64"},"c3.4xlarge":{"Arch":"NATHVM64"},"c3.8xlarge":{"Arch":"NATHVM64"},"c4.large":{"Arch":"NATHVM64"},"c4.xlarge":{"Arch":"NATHVM64"},"c4.2xlarge":{"Arch":"NATHVM64"},"c4.4xlarge":{"Arch":"NATHVM64"},"c4.8xlarge":{"Arch":"NATHVM64"},"g2.2xlarge":{"Arch":"NATHVMG2"},"g2.8xlarge":{"Arch":"NATHVMG2"},"r3.large":{"Arch":"NATHVM64"},"r3.xlarge":{"Arch":"NATHVM64"},"r3.2xlarge":{"Arch":"NATHVM64"},"r3.4xlarge":{"Arch":"NATHVM64"},"r3.8xlarge":{"Arch":"NATHVM64"},"i2.xlarge":{"Arch":"NATHVM64"},"i2.2xlarge":{"Arch":"NATHVM64"},"i2.4xlarge":{"Arch":"NATHVM64"},"i2.8xlarge":{"Arch":"NATHVM64"},"d2.xlarge":{"Arch":"NATHVM64"},"d2.2xlarge":{"Arch":"NATHVM64"},"d2.4xlarge":{"Arch":"NATHVM64"},"d2.8xlarge":{"Arch":"NATHVM64"},"hi1.4xlarge":{"Arch":"NATHVM64"},"hs1.8xlarge":{"Arch":"NATHVM64"},"cr1.8xlarge":{"Arch":"NATHVM64"},"cc2.8xlarge":{"Arch":"NATHVM64"}},"AWSRegionArch2AMI":{"us-east-1":{"PV64":"ami-2a69aa47","HVM64":"ami-6869aa05","HVMG2":"ami-bb18efad"},"us-west-2":{"PV64":"ami-7f77b31f","HVM64":"ami-7172b611","HVMG2":"ami-31912f51"},"us-west-1":{"PV64":"ami-a2490dc2","HVM64":"ami-31490d51","HVMG2":"ami-0a9dcf6a"},"eu-west-1":{"PV64":"ami-4cdd453f","HVM64":"ami-f9dd458a","HVMG2":"ami-873e61e1"},"eu-west-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-886369ec","HVMG2":"NOT_SUPPORTED"},"eu-central-1":{"PV64":"ami-6527cf0a","HVM64":"ami-ea26ce85","HVMG2":"ami-a16ba4ce"},"ap-northeast-1":{"PV64":"ami-3e42b65f","HVM64":"ami-374db956","HVMG2":"ami-6b443f0c"},"ap-northeast-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-2b408b45","HVMG2":"NOT_SUPPORTED"},"ap-southeast-1":{"PV64":"ami-df9e4cbc","HVM64":"ami-a59b49c6","HVMG2":"ami-1c0ba17f"},"ap-southeast-2":{"PV64":"ami-63351d00","HVM64":"ami-dc361ebf","HVMG2":"ami-bf0d0adc"},"ap-south-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-ffbdd790","HVMG2":"ami-6135440e"},"us-east-2":{"PV64":"NOT_SUPPORTED","HVM64":"ami-f6035893","HVMG2":"NOT_SUPPORTED"},"ca-central-1":{"PV64":"NOT_SUPPORTED","HVM64":"ami-730ebd17","HVMG2":"NOT_SUPPORTED"},"sa-east-1":{"PV64":"ami-1ad34676","HVM64":"ami-6dd04501","HVMG2":"NOT_SUPPORTED"},"cn-north-1":{"PV64":"ami-77559f1a","HVM64":"ami-8e6aa0e3","HVMG2":"NOT_SUPPORTED"}}},"Resources":{"WebServerGroup":{"Type":"AWS::AutoScaling::AutoScalingGroup","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"LaunchConfigurationName":{"Ref":"LaunchConfig"},"MinSize":"1","MaxSize":"4","LoadBalancerNames":[{"Ref":"ElasticLoadBalancer"}]},"CreationPolicy":{"ResourceSignal":{"Timeout":"PT15M"}},"UpdatePolicy":{"AutoScalingRollingUpdate":{"MinInstancesInService":"1","MaxBatchSize":"1","PauseTime":"PT15M","WaitOnResourceSignals":"true"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"6356820a-2472-4818-b70f-acfca47ee542"}}},"LaunchConfig":{"Type":"AWS::AutoScaling::LaunchConfiguration","Metadata":{"Comment":"Install a simple application","AWS::CloudFormation::Init":{"config":{"packages":{"yum":{"httpd":[]}},"files":{"/var/www/html/index.html":{"content":{"Fn::Join":["\n",["<img src=\"",{"Fn::FindInMap":["Region2Examples",{"Ref":"AWS::Region"},"Examples"]},"/cloudformation_graphic.png\" alt=\"AWS CloudFormation Logo\"/>","<h1>Congratulations, you have successfully launched the AWS CloudFormation sample.</h1>"]]},"mode":"000644","owner":"root","group":"root"},"/etc/cfn/cfn-hup.conf":{"content":{"Fn::Join":["",["[main]\n","stack=",{"Ref":"AWS::StackId"},"\n","region=",{"Ref":"AWS::Region"},"\n"]]},"mode":"000400","owner":"root","group":"root"},"/etc/cfn/hooks.d/cfn-auto-reloader.conf":{"content":{"Fn::Join":["",["[cfn-auto-reloader-hook]\n","triggers=post.update\n","path=Resources.LaunchConfig.Metadata.AWS::CloudFormation::Init\n","action=/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","runas=root\n"]]}}},"services":{"sysvinit":{"httpd":{"enabled":"true","ensureRunning":"true"},"cfn-hup":{"enabled":"true","ensureRunning":"true","files":["/etc/cfn/cfn-hup.conf","/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}}}}},"AWS::CloudFormation::Designer":{"id":"65fa704f-2abf-4c89-b3d4-7d9c54272872"}},"Properties":{"ImageId":{"Fn::FindInMap":["AWSRegionArch2AMI",{"Ref":"AWS::Region"},{"Fn::FindInMap":["AWSInstanceType2Arch",{"Ref":"InstanceType"},"Arch"]}]},"SecurityGroups":[{"Ref":"InstanceSecurityGroup"}],"InstanceType":{"Ref":"InstanceType"},"KeyName":{"Ref":"KeyName"},"UserData":{"Fn::Base64":{"Fn::Join":["",["#!/bin/bash -xe\n","yum update -y aws-cfn-bootstrap\n","/opt/aws/bin/cfn-init -v "," --stack ",{"Ref":"AWS::StackName"}," --resource LaunchConfig "," --region ",{"Ref":"AWS::Region"},"\n","/opt/aws/bin/cfn-signal -e $? "," --stack ",{"Ref":"AWS::StackName"}," --resource WebServerGroup "," --region ",{"Ref":"AWS::Region"},"\n"]]}}}},"ElasticLoadBalancer":{"Type":"AWS::ElasticLoadBalancing::LoadBalancer","Properties":{"AvailabilityZones":["us-east-1c","us-east-1d"],"CrossZone":"true","Listeners":[{"LoadBalancerPort":"80","InstancePort":"80","Protocol":"HTTP"}],"HealthCheck":{"Target":"HTTP:80/","HealthyThreshold":"3","UnhealthyThreshold":"5","Interval":"30","Timeout":"5"}},"Metadata":{"AWS::CloudFormation::Designer":{"id":"d734fbb5-46b9-46e6-8905-e95d19b8e184"}}},"InstanceSecurityGroup":{"Type":"AWS::EC2::SecurityGroup","Properties":{"GroupDescription":"Enable SSH access and HTTP access on the inbound port","SecurityGroupIngress":[{"IpProtocol":"tcp","FromPort":"80","ToPort":"80","SourceSecurityGroupOwnerId":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.OwnerAlias"]},"SourceSecurityGroupName":{"Fn::GetAtt":["ElasticLoadBalancer","SourceSecurityGroup.GroupName"]}},{"IpProtocol":"tcp","FromPort":"22","ToPort":"22","CidrIp":{"Ref":"SSHLocation"}}]},"Metadata":{"AWS::CloudFormation::Designer":{"id":"02d7e550-1606-4cab-854b-8e875e8781c4"}}}},"Outputs":{"URL":{"Description":"URL of the website","Value":{"Fn::Join":["",["http://",{"Fn::GetAtt":["ElasticLoadBalancer","DNSName"]}]]}}},"Metadata":{"AWS::CloudFormation::Designer":{"d734fbb5-46b9-46e6-8905-e95d19b8e184":{"size":{"width":60,"height":60},"position":{"x":60,"y":90},"z":1,"embeds":[]},"02d7e550-1606-4cab-854b-8e875e8781c4":{"size":{"width":60,"height":60},"position":{"x":180,"y":90},"z":1,"embeds":[],"isrelatedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"]},"65fa704f-2abf-4c89-b3d4-7d9c54272872":{"size":{"width":60,"height":60},"position":{"x":60,"y":210},"z":1,"embeds":[],"ismemberof":["02d7e550-1606-4cab-854b-8e875e8781c4"]},"6356820a-2472-4818-b70f-acfca47ee542":{"size":{"width":60,"height":60},"position":{"x":180,"y":210},"z":1,"embeds":[],"isconnectedto":["d734fbb5-46b9-46e6-8905-e95d19b8e184"],"isassociatedwith":["65fa704f-2abf-4c89-b3d4-7d9c54272872"]}}},"Rules":{"testInstanceType":{"RuleCondition":{"Fn::Equals":[{"Ref":"Environment"},"test"]},"Assertions":[{"Assert":{"Fn::Contains":[["t1.micro"],{"Ref":"InstanceType"}]},"AssertDescription":"For the test environment, the instance type must be t1.micro"}]},"prodInstanceType":{"RuleCondition":{"Fn::Equals":[{"Ref":"Environment"},"prod"]},"Assertions":[{"Assert":{"Fn::Contains":[["m1.large"],{"Ref":"InstanceType"}]},"AssertDescription":"For the prod environment, the instance type must be m1.large"}]}}}
+
+ Original
+ Processed
+
+
+
+ 3c03a9be-b1b5-11e8-892b-c7e377aeb1ad
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:19 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091419Z
+ X-Amz-Content-Sha256:
+ - 175dd3563745e0edd920aa5e1186c1ecc417142c8754ad55b6fefb0d78da9a7f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=be1041358445909753575c1ecd32059fd0cd0a0b20dc4fd3ad6348bdfbf49129
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3c87cdd4-b1b5-11e8-902a-b131a669a8d5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:19 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-04T13:38:44.922Z
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-04T13:38:53.347Z
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T13:38:56.729Z
+ SC-200278856672-pp-5pyltbgyzheqm-LaunchConfig-1KRBYT65PYDJY
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T13:41:25.707Z
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 3c87cdd4-b1b5-11e8-902a-b131a669a8d5
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:20 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=billy1&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091420Z
+ X-Amz-Content-Sha256:
+ - dcba2d4ed390c1e50d4fa2d45182dc900c47ee0ec2cd28a43797819dcb30536b
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d2271ce0d6da068e258cac63ea04bcdc565cb84a959a7a76b002a3af87ea0a95
+ Content-Length:
+ - '54'
Accept:
- "*/*"
response:
@@ -887,7 +1275,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8ccb5bcc-a28f-11e7-bde0-59bd17526325
+ - 3d120c74-b1b5-11e8-9cdb-69236bc4bef1
Content-Type:
- text/xml
Content-Length:
@@ -895,7 +1283,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:48 GMT
+ - Thu, 06 Sep 2018 09:14:20 GMT
body:
encoding: UTF-8
string: "\n
@@ -1034,32 +1422,32 @@ http_interactions:
: "IP Address of the host",\n "Value" : { "Ref"
: "WebServerInstance" }\n }\n }\n}\n\n \n
\ Original\n Processed\n \n
- \ \n \n 8ccb5bcc-a28f-11e7-bde0-59bd17526325\n
+ \ \n \n 3d120c74-b1b5-11e8-9cdb-69236bc4bef1\n
\ \n\n"
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:55 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:21 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=ListStackResources&StackName=EmsRefreshSpecStack&Version=2010-05-15
+ string: Action=ListStackResources&StackName=billy1&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075155Z
+ - 20180906T091421Z
X-Amz-Content-Sha256:
- - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
+ - 0ac8d282d9bebb8cc9d81b3ad8cd95d1ea7a5deb39aeae4502f26b44e5053da4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b133de60f3a9a09c4c86b06e39c0d9557ea12a85419ffc90e00e86cbb75cc8c7
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=426ac949d0b21378792e461e3a25116609a037b949c9b52e5080499ab195aaf4
Content-Length:
- - '74'
+ - '61'
Accept:
- "*/*"
response:
@@ -1068,170 +1456,48 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8ddc7d8f-a28f-11e7-b092-79b79ecdb3e9
+ - 3d94d0e4-b1b5-11e8-bc6d-c9b14c1022e6
Content-Type:
- text/xml
Content-Length:
- - '6667'
- Vary:
- - Accept-Encoding
+ - '315'
Date:
- - Tue, 26 Sep 2017 07:51:50 GMT
+ - Thu, 06 Sep 2018 09:14:20 GMT
body:
encoding: UTF-8
string: |
-
-
- 2017-05-03T10:46:51.634Z
- EmsRe-Attac-18IYH2NXW163I
- CREATE_COMPLETE
- AttachGateway
- AWS::EC2::VPCGatewayAttachment
-
-
- 2017-05-03T10:46:59.572Z
- EmsRe-Inbou-1M80E3XJX5ZG6
- CREATE_COMPLETE
- InboundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.467Z
- EmsRe-Inbou-E8UR0I5STC4V
- CREATE_COMPLETE
- InboundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:55.099Z
- EmsRe-Inbou-1E29UZ91J3L0R
- CREATE_COMPLETE
- InboundSSHNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:51.481Z
- sg-76c10f08
- CREATE_COMPLETE
- InstanceSecurityGroup
- AWS::EC2::SecurityGroup
-
-
- 2017-05-03T10:46:29.550Z
- igw-64924d02
- CREATE_COMPLETE
- InternetGateway
- AWS::EC2::InternetGateway
-
-
- 2017-05-03T10:46:34.869Z
- acl-e616ad9f
- CREATE_COMPLETE
- NetworkAcl
- AWS::EC2::NetworkAcl
-
-
- 2017-05-03T10:46:56.226Z
- EmsRe-OutBo-1NZIAZJB04JPV
- CREATE_COMPLETE
- OutBoundHTTPNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:56.162Z
- EmsRe-OutBo-11CPJOERKOC1S
- CREATE_COMPLETE
- OutBoundHTTPSNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:46:57.712Z
- EmsRe-OutBo-1VCOFXN25WKE2
- CREATE_COMPLETE
- OutBoundResponsePortsNetworkAclEntry
- AWS::EC2::NetworkAclEntry
-
-
- 2017-05-03T10:47:11.450Z
- EmsRe-Route-CE90KA6C89YL
- CREATE_COMPLETE
- Route
- AWS::EC2::Route
-
-
- 2017-05-03T10:46:35.945Z
- rtb-d37690ab
- CREATE_COMPLETE
- RouteTable
- AWS::EC2::RouteTable
-
-
- 2017-05-03T10:46:51.908Z
- subnet-2190b144
- CREATE_COMPLETE
- Subnet
- AWS::EC2::Subnet
-
-
- 2017-05-03T10:47:12.194Z
- aclassoc-5960cf29
- CREATE_COMPLETE
- SubnetNetworkAclAssociation
- AWS::EC2::SubnetNetworkAclAssociation
-
-
- 2017-05-03T10:47:11.882Z
- rtbassoc-d35ff3a8
- CREATE_COMPLETE
- SubnetRouteTableAssociation
- AWS::EC2::SubnetRouteTableAssociation
-
-
- 2017-05-03T10:46:30.347Z
- vpc-8cf117f5
- CREATE_COMPLETE
- VPC
- AWS::EC2::VPC
-
-
- 2017-05-03T10:49:38.256Z
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
- CREATE_COMPLETE
- WebServerInstance
- AWS::CloudFormation::Stack
-
-
+
- 8ddc7d8f-a28f-11e7-b092-79b79ecdb3e9
+ 3d94d0e4-b1b5-11e8-bc6d-c9b14c1022e6
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:55 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:22 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=GetTemplate&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ string: Action=GetTemplate&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075155Z
+ - 20180906T091422Z
X-Amz-Content-Sha256:
- - d196f07c8d09b8b0ccee298e3e6f0e4e89593cbeea565c8601f126be53b544a8
+ - f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d99fddc3a8d177ee9571db3fc72bbd8e07b2399e33d7b413d7e2f927838edcd5
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e8d1cd572310a5de36294f68daf622041322b0b5fabc06c780fd854a856b6149
Content-Length:
- - '90'
+ - '99'
Accept:
- "*/*"
response:
@@ -1240,169 +1506,960 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8e5aae2e-a28f-11e7-9c99-5de26489d656
+ - 3e1217dc-b1b5-11e8-87ad-afa8a3af4a81
Content-Type:
- text/xml
Content-Length:
- - '49484'
+ - '23157'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:50 GMT
+ - Thu, 06 Sep 2018 09:14:22 GMT
body:
encoding: UTF-8
- string: |
-
-
- {
- "AWSTemplateFormatVersion": "2010-09-09",
- "Description": "AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.",
- "Parameters": {
- "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": "Lockdown SSH access to the bastion host (default can be accessed from anywhere)",
- "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 CIDR range of the form x.x.x.x/x."
- },
- "WebServerInstanceType": {
- "Description": "WebServer Server EC2 instance type",
- "Type": "String",
- "Default": "t2.small",
- "AllowedValues": [
- "t1.micro",
- "t2.nano",
- "t2.micro",
- "t2.small",
- "t2.medium",
- "t2.large",
- "m1.small",
- "m1.medium",
- "m1.large",
- "m1.xlarge",
- "m2.xlarge",
- "m2.2xlarge",
- "m2.4xlarge",
- "m3.medium",
- "m3.large",
- "m3.xlarge",
- "m3.2xlarge",
- "m4.large",
- "m4.xlarge",
- "m4.2xlarge",
- "m4.4xlarge",
- "m4.10xlarge",
- "c1.medium",
- "c1.xlarge",
- "c3.large",
- "c3.xlarge",
- "c3.2xlarge",
- "c3.4xlarge",
- "c3.8xlarge",
- "c4.large",
- "c4.xlarge",
- "c4.2xlarge",
- "c4.4xlarge",
- "c4.8xlarge",
- "g2.2xlarge",
- "g2.8xlarge",
- "r3.large",
- "r3.xlarge",
- "r3.2xlarge",
- "r3.4xlarge",
- "r3.8xlarge",
- "i2.xlarge",
- "i2.2xlarge",
- "i2.4xlarge",
- "i2.8xlarge",
- "d2.xlarge",
- "d2.2xlarge",
- "d2.4xlarge",
- "d2.8xlarge",
- "hi1.4xlarge",
- "hs1.8xlarge",
- "cr1.8xlarge",
- "cc2.8xlarge",
- "cg1.4xlarge"
- ],
- "ConstraintDescription": "must be a valid EC2 instance type."
- },
- "WebServerCount": {
- "Description": "Number of EC2 instances to launch for the WebServer server",
- "Type": "Number",
- "Default": "1"
- }
- },
- "Mappings": {
- "SubnetConfig": {
- "VPC": {
- "CIDR": "10.0.0.0/16"
- },
- "Public": {
- "CIDR": "10.0.0.0/24"
- }
- },
- "Region2Examples": {
- "us-east-1": {
- "Examples": "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
- },
- "us-west-2": {
- "Examples": "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
- },
- "us-west-1": {
- "Examples": "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
- },
- "eu-west-1": {
- "Examples": "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
- },
- "eu-west-2": {
- "Examples": "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
- },
- "eu-central-1": {
- "Examples": "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
- },
- "ap-southeast-1": {
- "Examples": "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
- },
- "ap-northeast-1": {
- "Examples": "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
- },
- "ap-northeast-2": {
- "Examples": "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
- },
- "ap-southeast-2": {
- "Examples": "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
- },
- "ap-south-1": {
- "Examples": "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
- },
- "us-east-2": {
- "Examples": "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
- },
- "ca-central-1": {
- "Examples": "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
- },
- "sa-east-1": {
- "Examples": "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
- },
- "cn-north-1": {
- "Examples": "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
- }
- },
- "AWSInstanceType2Arch": {
- "t1.micro": {
- "Arch": "PV64"
- },
- "t2.nano": {
- "Arch": "HVM64"
- },
+ string: "\n
+ \ \n {\n "AWSTemplateFormatVersion"
+ : "2010-09-09",\n\n "Description" : "AWS CloudFormation
+ Sample Template VPC_Single_Instance_In_Subnet: 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.",\n\n
+ \ "Parameters" : {\n\n "InstanceType" : {\n "Description"
+ : "WebServer EC2 instance type",\n "Type" : "String",\n
+ \ "Default" : "t2.small",\n "AllowedValues"
+ : [ "t1.micro", "t2.nano", "t2.micro", "t2.small",
+ "t2.medium", "t2.large", "m1.small", "m1.medium",
+ "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge",
+ "m2.4xlarge", "m3.medium", "m3.large", "m3.xlarge",
+ "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge",
+ "m4.4xlarge", "m4.10xlarge", "c1.medium", "c1.xlarge",
+ "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge",
+ "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge",
+ "c4.4xlarge", "c4.8xlarge", "g2.2xlarge", "g2.8xlarge",
+ "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge",
+ "r3.8xlarge", "i2.xlarge", "i2.2xlarge", "i2.4xlarge",
+ "i2.8xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge",
+ "d2.8xlarge", "hi1.4xlarge", "hs1.8xlarge",
+ "cr1.8xlarge", "cc2.8xlarge", "cg1.4xlarge"]\n,\n
+ \ "ConstraintDescription" : "must be a valid EC2 instance
+ type."\n },\n\n "KeyName": {\n "Description"
+ : "Name of an existing EC2 KeyPair to enable SSH access to the instance",\n
+ \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription"
+ : "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
+ {\n "Description": "Db password",\n "Type":
+ "String",\n "NoEcho": "true", \n "Default":
+ "adminadmin"\n },\t\n \n "SSHLocation" : {\n
+ \ "Description" : " The IP address range that can be used
+ to SSH to the EC2 instances",\n "Type": "String",\n
+ \ "MinLength": "9",\n "MaxLength":
+ "18",\n "Default": "0.0.0.0/0",\n "AllowedPattern":
+ "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
+ \ "ConstraintDescription": "must be a valid IP CIDR range
+ of the form x.x.x.x/x."\n },\n\n "InstanceSecurityGroupID":
+ {\n "Description": "Security Group ID",\n "Type":
+ "AWS::EC2::SecurityGroup::Id",\n "ConstraintDescription":
+ "must be the id of an existing VPC SecurityGroup."\n },\n \n
+ \ "SubnetID": {\n "Description": "Subnet ID",\n
+ \ "Type": "AWS::EC2::Subnet::Id",\n "ConstraintDescription":
+ "must be the id of an existing VPC Subnet."\n }\n },\n\n "Mappings"
+ : {\n "Region2Examples" : {\n "us-east-1" :
+ { "Examples" : "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
+ },\n "us-west-2" : { "Examples" : "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
+ },\n "us-west-1" : { "Examples" : "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
+ },\n "eu-west-1" : { "Examples" : "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
+ },\n "eu-west-2" : { "Examples" : "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
+ },\n "eu-central-1" : { "Examples" : "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
+ },\n "ap-southeast-1" : { "Examples" : "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
+ },\n "ap-northeast-1" : { "Examples" : "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
+ },\n "ap-northeast-2" : { "Examples" : "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
+ },\n "ap-southeast-2" : { "Examples" : "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
+ },\n "ap-south-1" : { "Examples" : "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
+ },\n "us-east-2" : { "Examples" : "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
+ },\n "ca-central-1" : { "Examples" : "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
+ },\n "sa-east-1" : { "Examples" : "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
+ },\n "cn-north-1" : { "Examples" : "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
+ }\n }\n,\n "AWSInstanceType2Arch" : {\n "t1.micro"
+ \ : { "Arch" : "PV64" },\n "t2.nano"
+ \ : { "Arch" : "HVM64" },\n "t2.micro"
+ \ : { "Arch" : "HVM64" },\n "t2.small"
+ \ : { "Arch" : "HVM64" },\n "t2.medium"
+ \ : { "Arch" : "HVM64" },\n "t2.large"
+ \ : { "Arch" : "HVM64" },\n "m1.small"
+ \ : { "Arch" : "PV64" },\n "m1.medium"
+ \ : { "Arch" : "PV64" },\n "m1.large"
+ \ : { "Arch" : "PV64" },\n "m1.xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.2xlarge"
+ \ : { "Arch" : "PV64" },\n "m2.4xlarge"
+ \ : { "Arch" : "PV64" },\n "m3.medium"
+ \ : { "Arch" : "HVM64" },\n "m3.large"
+ \ : { "Arch" : "HVM64" },\n "m3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "m3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.large"
+ \ : { "Arch" : "HVM64" },\n "m4.xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "m4.10xlarge"
+ : { "Arch" : "HVM64" },\n "c1.medium"
+ \ : { "Arch" : "PV64" },\n "c1.xlarge"
+ \ : { "Arch" : "PV64" },\n "c3.large"
+ \ : { "Arch" : "HVM64" },\n "c3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "c3.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.large"
+ \ : { "Arch" : "HVM64" },\n "c4.xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "c4.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "g2.2xlarge"
+ \ : { "Arch" : "HVMG2" },\n "g2.8xlarge"
+ \ : { "Arch" : "HVMG2" },\n "r3.large"
+ \ : { "Arch" : "HVM64" },\n "r3.xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "r3.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "i2.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.2xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.4xlarge"
+ \ : { "Arch" : "HVM64" },\n "d2.8xlarge"
+ \ : { "Arch" : "HVM64" },\n "hi1.4xlarge"
+ : { "Arch" : "HVM64" },\n "hs1.8xlarge"
+ : { "Arch" : "HVM64" },\n "cr1.8xlarge"
+ : { "Arch" : "HVM64" },\n "cc2.8xlarge"
+ : { "Arch" : "HVM64" }\n },\n\n "AWSInstanceType2NATArch"
+ : {\n "t1.micro" : { "Arch" : "NATPV64"
+ \ },\n "t2.nano" : { "Arch" : "NATHVM64"
+ \ },\n "t2.micro" : { "Arch" : "NATHVM64"
+ \ },\n "t2.small" : { "Arch" : "NATHVM64"
+ \ },\n "t2.medium" : { "Arch" : "NATHVM64"
+ \ },\n "t2.large" : { "Arch" : "NATHVM64"
+ \ },\n "m1.small" : { "Arch" : "NATPV64"
+ \ },\n "m1.medium" : { "Arch" : "NATPV64"
+ \ },\n "m1.large" : { "Arch" : "NATPV64"
+ \ },\n "m1.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.2xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m2.4xlarge" : { "Arch" : "NATPV64"
+ \ },\n "m3.medium" : { "Arch" : "NATHVM64"
+ \ },\n "m3.large" : { "Arch" : "NATHVM64"
+ \ },\n "m3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.large" : { "Arch" : "NATHVM64"
+ \ },\n "m4.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "m4.10xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c1.medium" : { "Arch" : "NATPV64"
+ \ },\n "c1.xlarge" : { "Arch" : "NATPV64"
+ \ },\n "c3.large" : { "Arch" : "NATHVM64"
+ \ },\n "c3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c3.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.large" : { "Arch" : "NATHVM64"
+ \ },\n "c4.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "c4.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "g2.2xlarge" : { "Arch" : "NATHVMG2"
+ \ },\n "g2.8xlarge" : { "Arch" : "NATHVMG2"
+ \ },\n "r3.large" : { "Arch" : "NATHVM64"
+ \ },\n "r3.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "r3.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "i2.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.2xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "d2.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "hi1.4xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "hs1.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "cr1.8xlarge" : { "Arch" : "NATHVM64"
+ \ },\n "cc2.8xlarge" : { "Arch" : "NATHVM64"
+ \ }\n }\n,\n "AWSRegionArch2AMI" : {\n "us-east-1"
+ \ : {"PV64" : "ami-2a69aa47", "HVM64"
+ : "ami-6869aa05", "HVMG2" : "ami-bb18efad"},\n
+ \ "us-west-2" : {"PV64" : "ami-7f77b31f",
+ "HVM64" : "ami-7172b611", "HVMG2" : "ami-31912f51"},\n
+ \ "us-west-1" : {"PV64" : "ami-a2490dc2",
+ "HVM64" : "ami-31490d51", "HVMG2" : "ami-0a9dcf6a"},\n
+ \ "eu-west-1" : {"PV64" : "ami-4cdd453f",
+ "HVM64" : "ami-f9dd458a", "HVMG2" : "ami-873e61e1"},\n
+ \ "eu-west-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-886369ec", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "eu-central-1" : {"PV64" : "ami-6527cf0a",
+ "HVM64" : "ami-ea26ce85", "HVMG2" : "ami-a16ba4ce"},\n
+ \ "ap-northeast-1" : {"PV64" : "ami-3e42b65f",
+ "HVM64" : "ami-374db956", "HVMG2" : "ami-6b443f0c"},\n
+ \ "ap-northeast-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-2b408b45", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "ap-southeast-1" : {"PV64" : "ami-df9e4cbc",
+ "HVM64" : "ami-a59b49c6", "HVMG2" : "ami-1c0ba17f"},\n
+ \ "ap-southeast-2" : {"PV64" : "ami-63351d00",
+ "HVM64" : "ami-dc361ebf", "HVMG2" : "ami-bf0d0adc"},\n
+ \ "ap-south-1" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-ffbdd790", "HVMG2" : "ami-6135440e"},\n
+ \ "us-east-2" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-f6035893", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "ca-central-1" : {"PV64" : "NOT_SUPPORTED",
+ "HVM64" : "ami-730ebd17", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "sa-east-1" : {"PV64" : "ami-1ad34676",
+ "HVM64" : "ami-6dd04501", "HVMG2" : "NOT_SUPPORTED"},\n
+ \ "cn-north-1" : {"PV64" : "ami-77559f1a",
+ "HVM64" : "ami-8e6aa0e3", "HVMG2" : "NOT_SUPPORTED"}\n
+ \ }\n\n },\n\n "Resources" : {\n "IPAddress" :
+ {\n "Type" : "AWS::EC2::EIP",\n "Properties"
+ : {\n "Domain" : "vpc",\n "InstanceId"
+ : { "Ref" : "WebServerInstance" }\n }\n },\n\n
+ \ "WebServerInstance" : {\n "Type" : "AWS::EC2::Instance",\n
+ \ "Metadata" : {\n "Comment" : "Install
+ a simple application",\n "AWS::CloudFormation::Init"
+ : {\n "config" : {\n "packages" :
+ {\n "yum" : {\n "httpd" :
+ []\n }\n },\n\n "files" : {\n
+ \ "/var/www/html/index.html" : {\n "content"
+ : { "Fn::Join" : ["\\n", [\n "<img
+ src=\\"", {"Fn::FindInMap" : ["Region2Examples",
+ {"Ref" : "AWS::Region"}, "Examples"]}, "/cloudformation_graphic.png\\"
+ alt=\\"AWS CloudFormation Logo\\"/>",\n "<h1>Congratulations,
+ you have successfully launched the AWS CloudFormation sample.</h1>"\n
+ \ ]]},\n "mode" : "000644",\n
+ \ "owner" : "root",\n "group"
+ \ : "root"\n },\n\n "/etc/cfn/cfn-hup.conf"
+ : {\n "content" : { "Fn::Join" : ["",
+ [\n "[main]\\n",\n "stack=",
+ { "Ref" : "AWS::StackId" }, "\\n",\n "region=",
+ { "Ref" : "AWS::Region" }, "\\n"\n ]]},\n
+ \ "mode" : "000400",\n "owner"
+ \ : "root",\n "group" : "root"\n
+ \ },\n\n "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
+ : {\n "content": { "Fn::Join" : ["",
+ [\n "[cfn-auto-reloader-hook]\\n",\n "triggers=post.update\\n",\n
+ \ "path=Resources.WebServerInstance.Metadata.AWS::CloudFormation::Init\\n",\n
+ \ "action=/opt/aws/bin/cfn-init -v ",\n "
+ \ --stack ", { "Ref" : "AWS::StackName" },\n
+ \ " --resource WebServerInstance ",\n "
+ \ --region ", { "Ref" : "AWS::Region" }, "\\n",\n
+ \ "runas=root\\n"\n ]]}\n }\n
+ \ },\n\n "services" : {\n "sysvinit"
+ : {\n "httpd" : { "enabled" : "true",
+ "ensureRunning" : "true" },\n "cfn-hup"
+ : { "enabled" : "true", "ensureRunning" : "true",
+ \n "files" : ["/etc/cfn/cfn-hup.conf",
+ "/etc/cfn/hooks.d/cfn-auto-reloader.conf"]}\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 "KeyName" : { "Ref"
+ : "KeyName" },\n "Tags" : [ {"Key" :
+ "Application", "Value" : { "Ref" : "AWS::StackId"}
+ } ],\n "NetworkInterfaces" : [{\n "GroupSet"
+ \ : [{ "Ref" : "InstanceSecurityGroupID"
+ }],\n "AssociatePublicIpAddress" : "true",\n
+ \ "DeviceIndex" : "0",\n "DeleteOnTermination"
+ \ : "true",\n "SubnetId" :
+ { "Ref" : "SubnetID" }\n }],\n "UserData"
+ \ : { "Fn::Base64" : { "Fn::Join" : ["",
+ [\n "#!/bin/bash -xe\\n",\n "yum update
+ -y aws-cfn-bootstrap\\n",\n\n "/opt/aws/bin/cfn-init
+ -v ",\n " --stack ", { "Ref"
+ : "AWS::StackName" },\n " --resource WebServerInstance
+ ",\n " --region ", { "Ref" :
+ "AWS::Region" }, "\\n",\n\n "/opt/aws/bin/cfn-signal
+ -e $? ",\n " --stack ", { "Ref"
+ : "AWS::StackName" },\n " --resource WebServerInstance
+ ",\n " --region ", { "Ref" :
+ "AWS::Region" }, "\\n"\n ]]}}\n },\n "CreationPolicy"
+ : {\n "ResourceSignal" : {\n "Timeout"
+ : "PT15M"\n }\n }\n }\n },\n\n "Outputs"
+ : {\n "URL" : {\n "Value" : { "Fn::Join"
+ : [ "", ["http://", { "Fn::GetAtt" : ["WebServerInstance",
+ "PublicIp"] }]]},\n "Description" : "Newly created
+ application URL"\n }\n }\n}\n\n\n \n
+ \ Original\n Processed\n \n
+ \ \n \n 3e1217dc-b1b5-11e8-87ad-afa8a3af4a81\n
+ \ \n\n"
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:23 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091423Z
+ X-Amz-Content-Sha256:
+ - e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=51e8a4ef29de02eb2c8cdfbb78814e23ec751f0773ecef81509cc67bdc8fc6ee
+ Content-Length:
+ - '106'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3ebed21b-b1b5-11e8-b6aa-37fc68fe31ca
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '1297'
+ Date:
+ - Thu, 06 Sep 2018 09:14:22 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2017-05-03T10:49:32.560Z
+ 34.202.178.10
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ IPAddress
+ AWS::EC2::EIP
+
+
+ 2017-05-03T10:48:56.988Z
+ i-0bca58e6e540ddc39
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::EC2::Instance
+
+
+
+
+ 3ebed21b-b1b5-11e8-b6aa-37fc68fe31ca
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:24 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091424Z
+ X-Amz-Content-Sha256:
+ - 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=30afa9c7f1db90e383b816301fba1ea6dda283cd24fb1cfe9594c3020552bca8
+ Content-Length:
+ - '67'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3f3ae014-b1b5-11e8-9c4f-3f2efac56926
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '11953'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:24 GMT
+ body:
+ encoding: UTF-8
+ string: "\n
+ \ \n {\n "AWSTemplateFormatVersion"
+ : "2010-09-09",\n\n "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.",\n\n "Parameters" : {\n\n "InstanceType"
+ : {\n "Description" : "WebServer EC2 instance type",\n
+ \ "Type" : "String",\n "Default" :
+ "t2.nano",\n "AllowedValues" : [ "t2.nano",
+ "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 "KeyName": {\n "Description":
+ "Name of an existing EC2 KeyPair to enable SSH access to the instances",\n
+ \ "Type": "AWS::EC2::KeyPair::KeyName",\n "ConstraintDescription":
+ "must be the name of an existing EC2 KeyPair."\n },\n\n "DBRootPassword":
+ {\n "Description": "Db password",\n "Type":
+ "String",\n "NoEcho": "true", \n "Default":
+ "adminadmin"\n },\t\n\n "SSHLocation" : {\n "Description"
+ : " The IP address range that can be used to SSH to the EC2 instances",\n
+ \ "Type": "String",\n "MinLength":
+ "9",\n "MaxLength": "18",\n "Default":
+ "0.0.0.0/0",\n "AllowedPattern": "(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})\\\\.(\\\\d{1,3})/(\\\\d{1,2})",\n
+ \ "ConstraintDescription": "must be a valid IP CIDR range
+ of the form x.x.x.x/x."\n }\n },\n\n "Mappings" : {\n
+ \ "RegionMap" : {\n "us-east-1" : { "AMI"
+ : "ami-7f418316" },\n "us-west-1" : { "AMI"
+ : "ami-951945d0" },\n "us-west-2" : { "AMI"
+ : "ami-16fd7026" },\n "eu-west-1" : { "AMI"
+ : "ami-24506250" },\n "sa-east-1" : { "AMI"
+ : "ami-3e3be423" },\n "ap-southeast-1" : { "AMI"
+ : "ami-74dda626" },\n "ap-southeast-2" : { "AMI"
+ : "ami-b3990e89" },\n "ap-northeast-1" : { "AMI"
+ : "ami-dcfa4edd" }\n }\n },\n\n "Resources" : {\n\n
+ \ "VPC" : {\n "Type" : "AWS::EC2::VPC",\n
+ \ "Properties" : {\n "CidrBlock" : "10.2.0.0/16",\n
+ \ "Tags" : [ {"Key" : "Application", "Value"
+ : { "Ref" : "AWS::StackId"} } ]\n }\n },\n\n "Subnet"
+ : {\n "Type" : "AWS::EC2::Subnet",\n "Properties"
+ : {\n "VpcId" : { "Ref" : "VPC" },\n
+ \ "CidrBlock" : "10.2.0.0/24",\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "InternetGateway"
+ : {\n "Type" : "AWS::EC2::InternetGateway",\n "Properties"
+ : {\n "Tags" : [ {"Key" : "Application",
+ "Value" : { "Ref" : "AWS::StackId"} } ]\n }\n
+ \ },\n\n "AttachGateway" : {\n "Type" : "AWS::EC2::VPCGatewayAttachment",\n
+ \ "Properties" : {\n "VpcId" : { "Ref"
+ : "VPC" },\n "InternetGatewayId" : { "Ref"
+ : "InternetGateway" }\n }\n },\n\n "RouteTable"
+ : {\n "Type" : "AWS::EC2::RouteTable",\n "Properties"
+ : {\n "VpcId" : {"Ref" : "VPC"},\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "Route"
+ : {\n "Type" : "AWS::EC2::Route",\n "DependsOn"
+ : "AttachGateway",\n "Properties" : {\n "RouteTableId"
+ : { "Ref" : "RouteTable" },\n "DestinationCidrBlock"
+ : "0.0.0.0/0",\n "GatewayId" : { "Ref"
+ : "InternetGateway" }\n }\n },\n\n "SubnetRouteTableAssociation"
+ : {\n "Type" : "AWS::EC2::SubnetRouteTableAssociation",\n
+ \ "Properties" : {\n "SubnetId" : { "Ref"
+ : "Subnet" },\n "RouteTableId" : { "Ref"
+ : "RouteTable" }\n }\n },\n\n "NetworkAcl"
+ : {\n "Type" : "AWS::EC2::NetworkAcl",\n "Properties"
+ : {\n "VpcId" : {"Ref" : "VPC"},\n "Tags"
+ : [ {"Key" : "Application", "Value" : { "Ref"
+ : "AWS::StackId"} } ]\n }\n },\n\n "InboundHTTPNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "100",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "80", "To"
+ : "80"}\n }\n },\n\n "InboundSSHNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "101",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "22", "To"
+ : "22"}\n }\n },\n\n "InboundResponsePortsNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "102",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "false",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "1024", "To"
+ : "65535"}\n }\n },\n\n "OutBoundHTTPNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "100",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "80", "To"
+ : "80"}\n }\n },\n\n "OutBoundHTTPSNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "101",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "443", "To"
+ : "443"}\n }\n },\n\n "OutBoundResponsePortsNetworkAclEntry"
+ : {\n "Type" : "AWS::EC2::NetworkAclEntry",\n "Properties"
+ : {\n "NetworkAclId" : {"Ref" : "NetworkAcl"},\n
+ \ "RuleNumber" : "102",\n "Protocol"
+ : "6",\n "RuleAction" : "allow",\n "Egress"
+ : "true",\n "CidrBlock" : "0.0.0.0/0",\n
+ \ "PortRange" : {"From" : "1024", "To"
+ : "65535"}\n }\n },\n\n "SubnetNetworkAclAssociation"
+ : {\n "Type" : "AWS::EC2::SubnetNetworkAclAssociation",\n
+ \ "Properties" : {\n "SubnetId" : { "Ref"
+ : "Subnet" },\n "NetworkAclId" : { "Ref"
+ : "NetworkAcl" }\n }\n },\n\n "InstanceSecurityGroup"
+ : {\n "Type" : "AWS::EC2::SecurityGroup",\n "Properties"
+ : {\n "VpcId" : { "Ref" : "VPC" },\n
+ \ "GroupDescription" : "Enable SSH access via port 22",\n
+ \ "SecurityGroupIngress" : [\n {"IpProtocol"
+ : "tcp", "FromPort" : "22", "ToPort"
+ : "22", "CidrIp" : { "Ref" : "SSHLocation"}},\n
+ \ { "IpProtocol" : "tcp", "FromPort"
+ : "80", "ToPort" : "80", "CidrIp"
+ : "0.0.0.0/0"}\n ]\n }\n },\n\n\n "WebServerInstance"
+ : {\n "Type" : "AWS::CloudFormation::Stack",\n
+ \ "DependsOn" : "AttachGateway",\n "Properties"
+ : {\n "TemplateURL" : "https://s3.amazonaws.com/cf-templates-13wbkx0x8rgs2-us-east-1/EmsRefreshSpecStackTemplates/cf-vpc-template-for-vm",\n
+ \ "Parameters" : {\n "DBRootPassword"
+ : { "Ref" : "DBRootPassword" },\n "InstanceType"
+ : { "Ref" : "InstanceType" },\n "KeyName"
+ : { "Ref" : "KeyName" },\n "InstanceSecurityGroupID":
+ { "Ref" : "InstanceSecurityGroup" },\n "SubnetID"
+ : { "Ref" : "Subnet" }\n }\n }\n
+ \ }\n },\n\n "Outputs" : {\n "Bastion" : {\n "Description"
+ : "IP Address of the host",\n "Value" : { "Ref"
+ : "WebServerInstance" }\n }\n }\n}\n\n \n
+ \ Original\n Processed\n \n
+ \ \n \n 3f3ae014-b1b5-11e8-9c4f-3f2efac56926\n
+ \ \n\n"
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:25 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091425Z
+ X-Amz-Content-Sha256:
+ - 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5c1c2b50d7e834f7d23f93bbdf3101fa39b626f725ba4dc2780d900d0e33286b
+ Content-Length:
+ - '74'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 3fc82c5c-b1b5-11e8-aa39-2113ae73cc4f
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '8877'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:24 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2017-05-03T10:46:51.634Z
+ EmsRe-Attac-18IYH2NXW163I
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ AttachGateway
+ AWS::EC2::VPCGatewayAttachment
+
+
+ 2017-05-03T10:46:59.572Z
+ EmsRe-Inbou-1M80E3XJX5ZG6
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:56.467Z
+ EmsRe-Inbou-E8UR0I5STC4V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:55.099Z
+ EmsRe-Inbou-1E29UZ91J3L0R
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InboundSSHNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:51.481Z
+ sg-76c10f08
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2017-05-03T10:46:29.550Z
+ igw-64924d02
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InternetGateway
+ AWS::EC2::InternetGateway
+
+
+ 2017-05-03T10:46:34.869Z
+ acl-e616ad9f
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ NetworkAcl
+ AWS::EC2::NetworkAcl
+
+
+ 2017-05-03T10:46:56.226Z
+ EmsRe-OutBo-1NZIAZJB04JPV
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:56.162Z
+ EmsRe-OutBo-11CPJOERKOC1S
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundHTTPSNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:46:57.712Z
+ EmsRe-OutBo-1VCOFXN25WKE2
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ OutBoundResponsePortsNetworkAclEntry
+ AWS::EC2::NetworkAclEntry
+
+
+ 2017-05-03T10:47:11.450Z
+ EmsRe-Route-CE90KA6C89YL
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Route
+ AWS::EC2::Route
+
+
+ 2017-05-03T10:46:35.945Z
+ rtb-d37690ab
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ RouteTable
+ AWS::EC2::RouteTable
+
+
+ 2017-05-03T10:46:51.908Z
+ subnet-2190b144
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ Subnet
+ AWS::EC2::Subnet
+
+
+ 2017-05-03T10:47:12.194Z
+ aclassoc-5960cf29
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetNetworkAclAssociation
+ AWS::EC2::SubnetNetworkAclAssociation
+
+
+ 2017-05-03T10:47:11.882Z
+ rtbassoc-d35ff3a8
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ SubnetRouteTableAssociation
+ AWS::EC2::SubnetRouteTableAssociation
+
+
+ 2017-05-03T10:46:30.347Z
+ vpc-8cf117f5
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ VPC
+ AWS::EC2::VPC
+
+
+ 2017-05-03T10:49:38.256Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerInstance
+ AWS::CloudFormation::Stack
+
+
+
+
+ 3fc82c5c-b1b5-11e8-aa39-2113ae73cc4f
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:25 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=GetTemplate&StackName=EmsRefreshSpecVpcStackWithAutoscalingGroup&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091426Z
+ X-Amz-Content-Sha256:
+ - d196f07c8d09b8b0ccee298e3e6f0e4e89593cbeea565c8601f126be53b544a8
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=aa3fc78719cdb48d58a1c822522b876b53c4d49c6fd2c4cc888222a3af87c2a9
+ Content-Length:
+ - '90'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4048a67a-b1b5-11e8-b81d-0fe52008081f
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '49484'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:26 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+ {
+ "AWSTemplateFormatVersion": "2010-09-09",
+ "Description": "AWS CloudFormation Sample Template VPC_AutoScaling_With_Public_IPs.template: Sample template showing how to create a load balanced, auto scaled group in a VPC where the EC2 instances can directly access the internet. **WARNING** This template creates Elastic Load Balancers and Amazon EC2 instances. You will be billed for the AWS resources used if you create a stack from this template.",
+ "Parameters": {
+ "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": "Lockdown SSH access to the bastion host (default can be accessed from anywhere)",
+ "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 CIDR range of the form x.x.x.x/x."
+ },
+ "WebServerInstanceType": {
+ "Description": "WebServer Server EC2 instance type",
+ "Type": "String",
+ "Default": "t2.small",
+ "AllowedValues": [
+ "t1.micro",
+ "t2.nano",
+ "t2.micro",
+ "t2.small",
+ "t2.medium",
+ "t2.large",
+ "m1.small",
+ "m1.medium",
+ "m1.large",
+ "m1.xlarge",
+ "m2.xlarge",
+ "m2.2xlarge",
+ "m2.4xlarge",
+ "m3.medium",
+ "m3.large",
+ "m3.xlarge",
+ "m3.2xlarge",
+ "m4.large",
+ "m4.xlarge",
+ "m4.2xlarge",
+ "m4.4xlarge",
+ "m4.10xlarge",
+ "c1.medium",
+ "c1.xlarge",
+ "c3.large",
+ "c3.xlarge",
+ "c3.2xlarge",
+ "c3.4xlarge",
+ "c3.8xlarge",
+ "c4.large",
+ "c4.xlarge",
+ "c4.2xlarge",
+ "c4.4xlarge",
+ "c4.8xlarge",
+ "g2.2xlarge",
+ "g2.8xlarge",
+ "r3.large",
+ "r3.xlarge",
+ "r3.2xlarge",
+ "r3.4xlarge",
+ "r3.8xlarge",
+ "i2.xlarge",
+ "i2.2xlarge",
+ "i2.4xlarge",
+ "i2.8xlarge",
+ "d2.xlarge",
+ "d2.2xlarge",
+ "d2.4xlarge",
+ "d2.8xlarge",
+ "hi1.4xlarge",
+ "hs1.8xlarge",
+ "cr1.8xlarge",
+ "cc2.8xlarge",
+ "cg1.4xlarge"
+ ],
+ "ConstraintDescription": "must be a valid EC2 instance type."
+ },
+ "WebServerCount": {
+ "Description": "Number of EC2 instances to launch for the WebServer server",
+ "Type": "Number",
+ "Default": "1"
+ }
+ },
+ "Mappings": {
+ "SubnetConfig": {
+ "VPC": {
+ "CIDR": "10.0.0.0/16"
+ },
+ "Public": {
+ "CIDR": "10.0.0.0/24"
+ }
+ },
+ "Region2Examples": {
+ "us-east-1": {
+ "Examples": "https://s3.amazonaws.com/cloudformation-examples-us-east-1"
+ },
+ "us-west-2": {
+ "Examples": "https://s3-us-west-2.amazonaws.com/cloudformation-examples-us-west-2"
+ },
+ "us-west-1": {
+ "Examples": "https://s3-us-west-1.amazonaws.com/cloudformation-examples-us-west-1"
+ },
+ "eu-west-1": {
+ "Examples": "https://s3-eu-west-1.amazonaws.com/cloudformation-examples-eu-west-1"
+ },
+ "eu-west-2": {
+ "Examples": "https://s3-eu-west-2.amazonaws.com/cloudformation-examples-eu-west-2"
+ },
+ "eu-central-1": {
+ "Examples": "https://s3-eu-central-1.amazonaws.com/cloudformation-examples-eu-central-1"
+ },
+ "ap-southeast-1": {
+ "Examples": "https://s3-ap-southeast-1.amazonaws.com/cloudformation-examples-ap-southeast-1"
+ },
+ "ap-northeast-1": {
+ "Examples": "https://s3-ap-northeast-1.amazonaws.com/cloudformation-examples-ap-northeast-1"
+ },
+ "ap-northeast-2": {
+ "Examples": "https://s3-ap-northeast-2.amazonaws.com/cloudformation-examples-ap-northeast-2"
+ },
+ "ap-southeast-2": {
+ "Examples": "https://s3-ap-southeast-2.amazonaws.com/cloudformation-examples-ap-southeast-2"
+ },
+ "ap-south-1": {
+ "Examples": "https://s3-ap-south-1.amazonaws.com/cloudformation-examples-ap-south-1"
+ },
+ "us-east-2": {
+ "Examples": "https://s3-us-east-2.amazonaws.com/cloudformation-examples-us-east-2"
+ },
+ "ca-central-1": {
+ "Examples": "https://s3-ca-central-1.amazonaws.com/cloudformation-examples-ca-central-1"
+ },
+ "sa-east-1": {
+ "Examples": "https://s3-sa-east-1.amazonaws.com/cloudformation-examples-sa-east-1"
+ },
+ "cn-north-1": {
+ "Examples": "https://s3.cn-north-1.amazonaws.com.cn/cloudformation-examples-cn-north-1"
+ }
+ },
+ "AWSInstanceType2Arch": {
+ "t1.micro": {
+ "Arch": "PV64"
+ },
+ "t2.nano": {
+ "Arch": "HVM64"
+ },
"t2.micro": {
"Arch": "HVM64"
},
@@ -2708,11 +3765,11 @@ http_interactions:
- 8e5aae2e-a28f-11e7-9c99-5de26489d656
+ 4048a67a-b1b5-11e8-b81d-0fe52008081f
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:57 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:27 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -2725,14 +3782,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075157Z
+ - 20180906T091427Z
X-Amz-Content-Sha256:
- a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=871ec6b71aab2e8a9b250985178c8dc8a31f3a8ed1b5ef3e246930d068e7fa6b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b646ea97096810dd5d4d5a7f97d5ba35de6d5848dd1af631429d2959592b273e
Content-Length:
- '97'
Accept:
@@ -2743,15 +3800,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 8f72d589-a28f-11e7-941b-afed6fba442f
+ - 411fa5c8-b1b5-11e8-88f5-8d29502be0a1
Content-Type:
- text/xml
Content-Length:
- - '7096'
+ - '9436'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:52 GMT
+ - Thu, 06 Sep 2018 09:14:27 GMT
body:
encoding: UTF-8
string: |
@@ -2762,6 +3819,9 @@ http_interactions:
2017-03-27T12:21:09.758Z
EmsRe-Gatew-1LHVB7WCBDH2J
CREATE_COMPLETE
+
+ NOT_CHECKED
+
GatewayToInternet
AWS::EC2::VPCGatewayAttachment
@@ -2769,6 +3829,9 @@ http_interactions:
2017-03-27T12:21:18.408Z
EmsRe-Inbou-114C8QHJD1A0
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundDynamicPortPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -2776,6 +3839,9 @@ http_interactions:
2017-03-27T12:21:17.491Z
EmsRe-Inbou-10A1RE6O5U1OG
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundHTTPPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -2783,6 +3849,9 @@ http_interactions:
2017-03-27T12:21:18.284Z
EmsRe-Inbou-NCOLEFTRFR80
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundSSHPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -2790,6 +3859,9 @@ http_interactions:
2017-03-27T12:20:47.040Z
igw-f3b65295
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InternetGateway
AWS::EC2::InternetGateway
@@ -2797,6 +3869,9 @@ http_interactions:
2017-03-27T12:21:17.267Z
EmsRe-Outbo-GYCVGUJ9J26R
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutboundPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -2804,6 +3879,9 @@ http_interactions:
2017-03-27T12:21:19.063Z
EmsRefres-PublicEl-15YIQXDK2TNOF
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicElasticLoadBalancer
AWS::ElasticLoadBalancing::LoadBalancer
@@ -2811,6 +3889,9 @@ http_interactions:
2017-03-27T12:21:12.098Z
sg-5946c626
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicLoadBalancerSecurityGroup
AWS::EC2::SecurityGroup
@@ -2818,6 +3899,9 @@ http_interactions:
2017-03-27T12:20:55.848Z
acl-e98b7590
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicNetworkAcl
AWS::EC2::NetworkAcl
@@ -2825,6 +3909,9 @@ http_interactions:
2017-03-27T12:21:30.588Z
EmsRe-Publi-13PVGYUA7QQU3
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicRoute
AWS::EC2::Route
@@ -2832,6 +3919,9 @@ http_interactions:
2017-03-27T12:20:54.594Z
rtb-93067bea
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicRouteTable
AWS::EC2::RouteTable
@@ -2839,6 +3929,9 @@ http_interactions:
2017-03-27T12:21:09.517Z
subnet-de2363bb
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnet
AWS::EC2::Subnet
@@ -2846,6 +3939,9 @@ http_interactions:
2017-03-27T12:21:35.209Z
aclassoc-4471fa35
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnetNetworkAclAssociation
AWS::EC2::SubnetNetworkAclAssociation
@@ -2853,6 +3949,9 @@ http_interactions:
2017-03-27T12:21:31.953Z
rtbassoc-1f3b2c67
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnetRouteTableAssociation
AWS::EC2::SubnetRouteTableAssociation
@@ -2860,6 +3959,9 @@ http_interactions:
2017-03-27T12:20:47.805Z
vpc-c3d2f1a5
CREATE_COMPLETE
+
+ NOT_CHECKED
+
VPC
AWS::EC2::VPC
@@ -2867,6 +3969,9 @@ http_interactions:
2017-03-27T12:23:33.873Z
EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerFleet
AWS::AutoScaling::AutoScalingGroup
@@ -2874,6 +3979,9 @@ http_interactions:
2017-03-27T12:21:41.260Z
EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerLaunchConfig
AWS::AutoScaling::LaunchConfiguration
@@ -2881,17 +3989,20 @@ http_interactions:
2017-03-27T12:21:35.209Z
sg-9242c2ed
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerSecurityGroup
AWS::EC2::SecurityGroup
- 8f72d589-a28f-11e7-941b-afed6fba442f
+ 411fa5c8-b1b5-11e8-88f5-8d29502be0a1
http_version:
- recorded_at: Tue, 26 Sep 2017 07:51:58 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:28 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -2904,14 +4015,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075158Z
+ - 20180906T091428Z
X-Amz-Content-Sha256:
- 58ff96b898c867bf25034c5573221c35d0e0af4daa07f74edc786725101bc560
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=236e7832e8b485870ef026460bc2dfec55b4acd88cfb952481d2d9b75b3ef894
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0091d46e6149478da0d78237f1dc20ed0dde008bea57821c0fdeafb779d5e23d
Content-Length:
- '88'
Accept:
@@ -2922,7 +4033,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 9013346e-a28f-11e7-9beb-e3276b25cb9f
+ - 41a59e81-b1b5-11e8-83f9-d503a4f237c7
Content-Type:
- text/xml
Content-Length:
@@ -2930,7 +4041,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:53 GMT
+ - Thu, 06 Sep 2018 09:14:27 GMT
body:
encoding: UTF-8
string: |
@@ -3832,11 +4943,11 @@ http_interactions:
- 9013346e-a28f-11e7-9beb-e3276b25cb9f
+ 41a59e81-b1b5-11e8-83f9-d503a4f237c7
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:00 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:29 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -3849,14 +4960,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075200Z
+ - 20180906T091429Z
X-Amz-Content-Sha256:
- cf1ad38a5e121d365a76501102e3a4a993d4244281ebab672dff531c33021b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c3b95db65d905f1b896c251cb844d5e30ebb6992b59f2b197fed936fea7a37a1
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2812b76417ee6e08fd43079c6f5ede63bf3900c670cfcbdd84542f4059674ec1
Content-Length:
- '95'
Accept:
@@ -3867,13 +4978,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 90f3a8d2-a28f-11e7-87de-1de3910eb6f6
+ - 4256c61d-b1b5-11e8-b797-c3a5cc6ae3d7
Content-Type:
- text/xml
Content-Length:
- - '1993'
+ - '2513'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:54 GMT
+ - Thu, 06 Sep 2018 09:14:29 GMT
body:
encoding: UTF-8
string: |
@@ -3884,6 +4997,9 @@ http_interactions:
2017-03-27T11:33:42.596Z
EmsRefres-ElasticL-UPI0RRUFR3HI
CREATE_COMPLETE
+
+ NOT_CHECKED
+
ElasticLoadBalancer
AWS::ElasticLoadBalancing::LoadBalancer
@@ -3891,6 +5007,9 @@ http_interactions:
2017-03-27T11:34:04.759Z
EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -3898,6 +5017,9 @@ http_interactions:
2017-03-27T11:34:09.927Z
EmsRefreshSpecStackWithAutoscalingGroup2-LaunchConfig-TS2701Z3OAJM
CREATE_COMPLETE
+
+ NOT_CHECKED
+
LaunchConfig
AWS::AutoScaling::LaunchConfiguration
@@ -3905,39 +5027,1255 @@ http_interactions:
2017-03-27T11:35:43.230Z
EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerGroup
AWS::AutoScaling::AutoScalingGroup
- 90f3a8d2-a28f-11e7-87de-1de3910eb6f6
+ 4256c61d-b1b5-11e8-b797-c3a5cc6ae3d7
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:01 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:30 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=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091430Z
+ X-Amz-Content-Sha256:
+ - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d90ec2611ae26130f9712b9d37aaca18886d69699b46f364454dff59580fc115
+ 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, 06 Sep 2018 09:14:30 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 8dac35cb-91ee-4b4b-91f9-60fb2d31390b
+
+ -
+ ami-0908219546812fe3e
+ 200278856672/dberger-clone
+ available
+ 200278856672
+ 2018-08-27T21:46:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ dberger-clone
+ Clone of bronagh1213
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-07e530b95d909f36d
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-098d7f1f
+ 200278856672/lads_image_from_volume
+ available
+ 200278856672
+ 2017-01-27T15:52:29.000Z
+ false
+ x86_64
+ machine
+ lads_image_from_volume
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fb2163b24646b146
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-0b8474d3c25191349
+ 200278856672/import-ami-09bf69373591f57dc
+ available
+ 200278856672
+ 2018-08-31T14:30:06.000Z
+ false
+ x86_64
+ machine
+ import-ami-09bf69373591f57dc
+ AWS-VMImport service: Linux - CentOS Linux release 7.5.1804 (Core) - 3.10.0-862.11.6.el7.x86_64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03e398e6e95827703
+ 67
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ simaishi-g5
+
+
+ xen
+ true
+
+ -
+ ami-1b3cc30d
+ jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ available
+ 200278856672
+ 2017-01-30T22:12:24.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ jerryk_instance_store_ami01
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-204c8436
+ 200278856672/Ladas_test_5_image
+ available
+ 200278856672
+ 2017-02-16T15:23:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ Ladas_test_5_image
+ testing snapshot events
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-eafde662
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-20e90e49
+ jf-test-copy/jf-test-copy.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+
+
+
+ xen
+
+ -
+ ami-22470534
+ 200278856672/ssa-agent-0525
+ available
+ 200278856672
+ 2017-05-25T18:23:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-0525
+ working version 1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-08810574
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-25a81c4c
+ 200278856672/suse-11-server-64
+ available
+ 200278856672
+ 2012-08-22T01:42:54.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ suse-11-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6eee471d
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-64
+
+
+ xen
+
+ -
+ ami-320c005a
+ 200278856672/t2 rhel 7.1
+ available
+ 200278856672
+ 2015-04-28T17:25:53.000Z
+ false
+ x86_64
+ machine
+ t2 rhel 7.1
+ rhel
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8b289bec
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ mkanoor_t2_rhel
+
+
+ xen
+
+ -
+ ami-3bae1a52
+ 200278856672/ubuntu-11.10-server-32
+ available
+ 200278856672
+ 2012-08-22T00:31:49.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-11.10-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-968927e5
+ 8
+ false
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-32
+
+
+ xen
+
+ -
+ ami-3f0e495a
+ 200278856672/CFME5.5.0
+ available
+ 200278856672
+ 2015-09-30T16:31:07.000Z
+ false
+ x86_64
+ machine
+ CFME5.5.0
+ Red Hat CloudForms 5.5 AMI
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdf
+
+ snap-9dd602d7
+ 50
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sda1
+
+ snap-1d177976
+ 40
+ false
+ standard
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ cfme-5.5
+
+
+ xen
+
+ -
+ ami-45c9df3e
+ 200278856672/ladas_test_111_snapshot_image_sdd
+ available
+ 200278856672
+ 2017-09-04T15:05:02.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image_sdd
+
+ ebs
+ /dev/sdd
+
+
-
+ /dev/sdd
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-57318e3c
+ 200278856672/mkanoor_testing_vpc
+ available
+ 200278856672
+ 2015-08-24T15:36:54.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ mkanoor_testing_vpc
+ mkanoor_testing_vpc
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5ab0eb13
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-5769193e
+ 200278856672/EmsRefreshSpec-Image
+ available
+ 200278856672
+ 2013-06-22T02:28:44.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-Image
+ EmsRefreshSpec-Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5f38cd0e
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-5e86fe48
+ 200278856672/ssa-agent-hsong
+ available
+ 200278856672
+ 2017-05-18T14:44:02.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-hsong
+ [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a5070b29f3ddcd92
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-63026775
+ 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ available
+ 200278856672
+ 2017-04-26T15:30:36.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-PoweredOn-VPC_snapshot
+ EmsRefreshSpec-PoweredOn-VPC_description
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0001b68fed820fb79
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+
+ snap-0f1eb18bc955eb28a
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-63ac180a
+ 200278856672/redhat-6.3-32
+ available
+ 200278856672
+ 2012-08-21T23:30:21.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ redhat-6.3-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-d23a95a1
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-32
+
+
+ xen
+
+ -
+ ami-67bc0b0e
+ 200278856672/miq-extract-base-ubuntu-12.04
+ available
+ 200278856672
+ 2012-08-27T19:14:39.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ miq-extract-base-ubuntu-12.04
+ ubuntu 12.04 + rvm/Ruby1.9
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-d03941a3
+ 8
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ miq-extract-base-ubuntu-12.04
+
+
+ xen
+
+ -
+ ami-7c4aa86a
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2017-01-13T11:31:28.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+ [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6054c98a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7d85fd6b
+ 200278856672/hsong-ssa-agent-v1
+ available
+ 200278856672
+ 2017-05-18T14:21:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ hsong-ssa-agent-v1
+ [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05ef19f30ffe6ceaa
+ 80
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-8bf2e4f0
+ 200278856672/ladas_test_111_snapshot_image
+ available
+ 200278856672
+ 2017-09-04T15:04:28.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-95ad19fc
+ 200278856672/ubuntu-11.10-server-64
+ available
+ 200278856672
+ 2012-08-22T00:20:33.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ ubuntu-11.10-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sda1
+
+ snap-90bc12e3
+ 8
+ false
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-64
+
+
+ xen
+
+ -
+ ami-a7185ec2
+ 200278856672/CFME-55Image
+ available
+ 200278856672
+ 2015-10-01T15:35:55.000Z
+ false
+ x86_64
+ machine
+ CFME-55Image
+ CFME-55Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdb
+
+ 30
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sda1
+
+ snap-249e4c6c
+ 40
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-ad43a4c4
+ rpo-images/miq-ec2-proto.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+ extract-proto0
+
+
+ xen
+
+ -
+ ami-bbc9dac0
+ 200278856672/ladas_test111
+ available
+ 200278856672
+ 2017-09-06T15:25:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ ladas_test111
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09505262c29651f47
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-bda014d4
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2012-08-21T21:31:39.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sdg
+ ephemeral1
+
+ -
+ /dev/sda1
+
+ snap-5210bc21
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-64
+
+
+ xen
+
+ -
+ ami-c68639af
+ miq-extract-images/evm-extract.manifest.xml
+ available
+ 200278856672
+ 2012-10-11T20:34:52.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ evm-extract
+ instance-store
+
+
-
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ evm-extract
+
+
+ xen
+
+ -
+ ami-cd43a4a4
+ rpo-images/miq-ec2-extract.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+ extract-proto-old
+
+
+ xen
+
+ -
+ ami-cf08bda6
+ rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ available
+ 200278856672
+ 2012-08-19T18:43:47.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ extract-proto3
+
+
+ xen
+
+ -
+ ami-cf96afb0
+ 200278856672/dberger_test_image
+ available
+ 200278856672
+ 2018-07-17T15:29:53.000Z
+ true
+ x86_64
+ machine
+ simple
+ dberger_test_image
+ Just a test image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0400b13c0acfdffa9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ org
+ cfme
+
+
+ xen
+ true
+
+ -
+ ami-ebcb7e82
+ rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T02:47:43.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ ubuntu10.04-rvm-ruby1.9
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-10.04-rvm-ruby1.9
+
+
+ xen
+
+ -
+ ami-edaa1f84
+ rpo-work/miq-test.img.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T18:51:02.000Z
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ test-linux
+
+
+ xen
+
+ -
+ ami-edad1984
+ 200278856672/ubuntu-12.04-server-32
+ available
+ 200278856672
+ 2012-08-22T00:07:18.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-12.04-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8ec06efd
+ 8
+ true
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-12.04-server-32
+
+
+ xen
+
+ -
+ ami-f3a81c9a
+ 200278856672/suse-11-server-32
+ available
+ 200278856672
+ 2012-08-22T01:57:01.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ suse-11-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-baf35ac9
+ 10
+ false
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-32
+
+
+ xen
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:32 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=2016-11-15
+ string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075201Z
+ - 20180906T091432Z
X-Amz-Content-Sha256:
- - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1a0a05a05086e05822af33bd6d445497574e90bd8b831ffc32645b5d8f430498
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4f5650751ac0b8d9eb1c81cc6ea875eaa7f7ee4121ba529a84fa4a772df3c856
Content-Length:
- - '103'
+ - '110'
Accept:
- "*/*"
response:
@@ -3952,7 +6290,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:55 GMT
+ - Thu, 06 Sep 2018 09:14:33 GMT
Server:
- AmazonEC2
body:
@@ -3960,27 +6298,3361 @@ http_interactions:
string: |-
- ddc19391-bb7f-4497-935b-8b2bfeecb3e5
+ 2c50012a-fa6e-4a42-a2f0-9b6aa9180125
-
- ami-098d7f1f
- 200278856672/lads_image_from_volume
+ ami-0293da6a
+ 309956199498/RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T20:32:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4bfb05c4
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-02a9ce6b
+ 309956199498/RHEL-6.4_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-04-10T22:38:50.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.4_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c3be779a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-02ba6009c5e7a02ab
+ 309956199498/RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-11T01:14:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-01c28ef48fde91a74
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-036a036a
+ 309956199498/RHEL-6.1_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:23:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.1_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b9b870e4
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-03d01c6a
+ 309956199498/RHEL-5.5-Starter-EBS-i386-14-Access2
+ available
+ 309956199498
+ 2011-10-10T14:02:38.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.5-Starter-EBS-i386-14-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-9693f8f5
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-0456c465f72bd0c95
+ 309956199498/RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-15T15:58:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-01cc239ae078f91f5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0707307d
+ 309956199498/RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-23T02:44:16.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0474fffe1f2eded28
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-071c247d
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ available
+ 679593333241
+ 2018-01-29T11:05:45.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-06c7170eb18e5058c
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0845091f
+ 309956199498/RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-05T21:30:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-93baa0ea
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-086f9875
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ available
+ 679593333241
+ 2018-03-02T05:49:09.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-02-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0fd087ac74cf66429
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-09ae22a8a98cc4f9d
+ 309956199498/RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-16T19:16:22.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-074d480ddb740eb71
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0bd11d62
+ 309956199498/RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T15:11:49.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4c2d472f
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-0d70a070
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:42:07.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0e782571
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-25T17:10:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-010aa1159136454b2
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0fe82466
+ 309956199498/RHEL-6.1-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2011-10-10T21:32:39.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.1-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0292e761
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-10251c7a
+ 309956199498/RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:22:53.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7d72846a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-10663b78
+ 309956199498/RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-25T20:24:21.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bf56423e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-11322278
+ 309956199498/RHEL-6.5_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2014-04-01T13:58:44.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ed50b637
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-13d0f569
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ available
+ 679593333241
+ 2018-01-12T06:52:56.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-10
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-017d1cfcc9b402d3e
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-140eaf7d
+ 309956199498/RHEL-6.3-Starter-i386-1-Access2
+ available
+ 309956199498
+ 2012-06-04T19:10:28.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.3-Starter-i386-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-186d0067
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-14e9c76e
+ 309956199498/RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-18T21:29:08.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0f42b03b4565e957e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-179db56c
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ available
+ 679593333241
+ 2017-08-10T00:08:51.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-061b22038dcd055dd
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-180a540f
+ 309956199498/RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T20:06:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-88a0f200
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-1c43ff74
+ 309956199498/RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-09T20:00:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7d0526da
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-1def2374
+ 309956199498/RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T20:38:43.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-dc5227bf
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-227b0c4a
+ 309956199498/RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-05T22:18:23.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bb531132
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-261f5a4c
+ 309956199498/Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-17T16:53:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7a8a411b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-2a532b40
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-2facc546
+ 309956199498/RHEL-5.9_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T01:15:43.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.9_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-46973f1b
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-30185959
+ 309956199498/RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ available
+ 309956199498
+ 2013-08-13T20:39:20.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2cdf2b7b
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-3068da58
+ 309956199498/RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T13:23:21.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-008530a7
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-3368015a
+ 309956199498/RHEL-6.0_GA-x86_64-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:51:24.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.0_GA-x86_64-6-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3828e165
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-346b9c49
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ available
+ 679593333241
+ 2018-03-02T05:48:56.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-099825c0474cb713a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-3e6eb444
+ 309956199498/RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-24T16:16:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0d59b38500ea97665
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-416a7028
+ 309956199498/RHEL-6.5_GA-i386-4-Access2
+ available
+ 309956199498
+ 2014-04-22T14:35:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09e954d6
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-46a4f52e
+ 309956199498/RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-20T15:33:32.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1af51e9b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-46b9b62e
+ 309956199498/RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-30T15:38:01.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a93871dc
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4769732e
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2014-04-22T15:09:36.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d353ee0c
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4bf3d731
+ aws-marketplace/CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ available
+ 679593333241
+ 2018-01-12T20:33:32.000Z
+ false
+
+
-
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ x86_64
+ machine
+ aws-marketplace
+ CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ CentOS Linux 7 x86_64 HVM EBS 1801_01
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0061a4a372352a41e
+ 8
+ false
+ standard
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-4d752124
+ 309956199498/RHEL-5.10_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:50:01.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.10_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d2b5f1d2
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4d7a0f32
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ available
+ 679593333241
+ 2018-06-01T11:25:10.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0bbdb96a310a18f2a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-4eaf3758
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-24T15:22:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04ff5f6baaa0e6941
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-4f53dd26
+ 309956199498/RHEL-5.9_GLD-x86_64-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:12:36.000Z
+ false
+ x86_64
+ machine
+ aki-ecfa0185
+ RHEL-5.9_GLD-x86_64-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-52b6db1e
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4f85ec26
+ 309956199498/RHEL-5.6_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-19T16:36:21.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.6_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ef87c53
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4fe2fa58
+ 309956199498/RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-03T15:56:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05db0f9172aa4584a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-531c4a29
+ 309956199498/RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:33:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05276352df4811187
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-5328fe38
+ 309956199498/RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-07-17T02:08:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4a7c1639
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-563ca440
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-25T00:42:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02a781e1733af35eb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-5dff9c4a
+ 309956199498/RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-08-25T14:32:56.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c4e89758
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-5ebdda37
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ available
+ 309956199498
+ 2013-04-11T02:10:05.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c37bb19a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ hvm
+ xen
+
+ -
+ ami-6178480b
+ 309956199498/RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-19T23:05:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-af3b8ed0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-61b69108
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ available
+ 309956199498
+ 2013-11-20T21:42:28.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0db87915
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-61d4ac77
+ 309956199498/RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-05-18T18:23:45.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0bd1c49ec2e5f5faf
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-645bae0c
+ 309956199498/RHEL-7.0_GA_HVM-x86_64-3-Access2
+ available
+ 309956199498
+ 2014-05-28T19:16:58.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_GA_HVM-x86_64-3-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ac125df
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-68ee1915
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-01T23:39:39.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b9e559310af1cd36
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6ea1e806
+ 309956199498/RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T22:54:38.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6b906be4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6fc25c15
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ available
+ 679593333241
+ 2017-11-30T05:32:04.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0a17e753d76724406
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-7305bd18
+ 309956199498/RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2015-08-27T11:36:17.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f7944281
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-7368011a
+ 309956199498/RHEL-6.0_GA-i386-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:44:20.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.0_GA-i386-6-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4119d01c
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7375211a
+ 309956199498/RHEL-5.10-GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:48:28.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.10-GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2ea9ed2e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-73aac31a
+ 309956199498/RHEL-5.7_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:09:06.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.7_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ddfc5580
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-74b17c1c
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2
+ available
+ 309956199498
+ 2014-07-14T21:53:46.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-98227e33
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-766ad81e
+ 309956199498/RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T12:58:23.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1405afb3
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-78175611
+ 309956199498/RHEL-6.4_GA-i386-10-Access2
+ available
+ 309956199498
+ 2013-08-13T19:30:50.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-49bc491e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-78400710
+ 309956199498/RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-29T01:07:35.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2d5685a0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-79adc410
+ 309956199498/RHEL-5.8_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:44:18.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.8_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-fe3990a3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7a96b801
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:37:28.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0822784885cd20aff
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-7adcf900
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ available
+ 679593333241
+ 2018-01-12T06:51:53.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-03fbeeb66a6618d09
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-7b0c6312
+ 309956199498/RHEL-6.4_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:29.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03a50c59
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7dea2614
+ 309956199498/RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ available
+ 309956199498
+ 2011-10-10T23:01:40.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2ec9bc4d
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7f0c6316
+ 309956199498/RHEL-6.4_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7fa40d25
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7f6af100
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T12:44:23.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-057d3a00fab9a4150
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-81122afb
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ available
+ 679593333241
+ 2018-01-29T11:06:15.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-094d0e7007d8b3169
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-81573ee8
+ 309956199498/RHEL-5.7_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T21:56:07.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.7_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-7a0aa627
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-817bf7fe
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ available
+ 679593333241
+ 2018-05-09T17:44:39.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-04-23
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0399eb57c40c5f605
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-836c05ea
+ 309956199498/RHEL-6.2_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:20:34.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.2_GA-x86_64-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d7854e8a
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-89756fe0
+ 309956199498/RHEL-6.5_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2014-04-22T14:32:02.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-7-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c9ff4216
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8b52dce2
+ 309956199498/RHEL-5.9_GLD-i386-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:04:19.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.9_GLD-i386-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a04b26ec
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8cbd6de4
+ 309956199498/RHEL-5.11_Beta-i386-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:56.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_Beta-i386-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-bd864512
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8d0bdae4
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2012-01-31T16:22:44.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e6b3ab82
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8e502c98
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:58:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09a24861343c92e4a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-8e5a67e4
+ 309956199498/RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-25T00:30:40.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-10fb9f02
+ 5
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-90a8bbfa
+ 309956199498/RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-04-13T01:07:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-fcafc1e6
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-936a03fa
+ 309956199498/RHEL-6.1_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:31:04.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.1_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6bc60e36
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-93bdadfa
+ 309956199498/RHEL-6.5_GA-i386-1-Access2
+ available
+ 309956199498
+ 2014-04-02T17:52:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-1-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-29be68f3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-95005f82
+ 309956199498/RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-25T21:19:31.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3d4278c4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-950e95ea
+ 309956199498/RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T15:08:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b24b01fd1db26eeb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9819ad8e
+ 309956199498/RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-03-20T03:38:51.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0898973d25521cccd
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-990b64f0
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2013-05-10T00:09:00.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b1278eeb
+ 7
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-9ceabde6
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T01:55:41.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a1cfc902770c514d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9d2f098b
+ 309956199498/RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:15:03.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ee220de9f1633620
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a05415c9
+ 309956199498/RHEL-6.4_GA-x86_64-10-Access2
+ available
+ 309956199498
+ 2013-08-14T13:38:22.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-46dc1211
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a090b8db
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ available
+ 679593333241
+ 2017-08-10T00:09:12.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0520447773371dd49
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-a1563fc8
+ 309956199498/RHEL-5.8_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T22:28:38.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.8_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f48926a9
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a15a33c8
+ 309956199498/RHEL-6.3_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-18T14:27:58.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.3_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3bf75166
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a16eacc8
+ 309956199498/RHEL-6.0-Starter-EBS-i386-15-Access2
+ available
+ 309956199498
+ 2011-09-23T19:21:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.0-Starter-EBS-i386-15-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-54fb0b37
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a33668b4
+ 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T22:32:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b9a222c1
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a45cf6cc
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:55:37.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-efcdd344
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a5d21ecc
+ 309956199498/RHEL-5.6-Starter-EBS-i386-13-Access2
+ available
+ 309956199498
+ 2011-10-10T16:11:55.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.6-Starter-EBS-i386-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-76630915
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a82204be
+ 309956199498/RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:04:05.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06cad1de61450c3f0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a93531c3
+ 309956199498/RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-03-10T18:46:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d585efd0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-ac5ff5c4
+ 309956199498/RHEL-5.10_GA-i386-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:43:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.10_GA-i386-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b36b7318
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-ac910ed6
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-11-29T19:11:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-023ae83387e571ca7
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-acac51c4
+ 309956199498/RHEL-6.5_GA-i386-6-Access2
+ available
+ 309956199498
+ 2014-06-11T10:45:09.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-i386-6-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a0a94077
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-af5c35c6
+ 309956199498/RHEL-6.3_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-18T15:25:25.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.3_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1b08ae46
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-b1e0e7a6
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-12-06T19:09:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c4464775
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-b214e6da
+ 309956199498/RHEL-6.5_GA_HVM-x86_64-6-Access2
available
- 200278856672
- 2017-01-27T15:52:29.000Z
+ 309956199498
+ 2014-06-10T19:16:46.000Z
false
x86_64
machine
- lads_image_from_volume
-
+ RHEL-6.5_GA_HVM-x86_64-6-Access2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0fb2163b24646b146
- 1
+ snap-3baca6ef
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-b2bd6dda
+ 309956199498/RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4f8043e0
+ 10
true
gp2
false
@@ -3991,99 +9663,197 @@ http_interactions:
xen
-
- ami-1b3cc30d
- jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ ami-b35925a5
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
available
- 200278856672
- 2017-01-30T22:12:24.000Z
+ 309956199498
+ 2017-05-15T14:55:09.000Z
false
x86_64
machine
- aki-825ea7eb
- jerryk_instance_store_ami01
- instance-store
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-0fc148ef3438d1e04
+ 10
+ true
+ gp2
+ false
+
hvm
xen
-
- ami-204c8436
- 200278856672/Ladas_test_5_image
+ ami-b4a21ddc
+ 309956199498/RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
available
- 200278856672
- 2017-02-16T15:23:41.000Z
+ 309956199498
+ 2014-10-10T13:34:45.000Z
false
- i386
+ x86_64
machine
- aki-36ed075f
- Ladas_test_5_image
- testing snapshot events
+ RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-eafde662
- 7
+ snap-bbafa91c
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+
+ -
+ ami-b62589c9
+ 309956199498/RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-04-19T18:55:57.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
- ephemeral0
+ /dev/sda1
+
+ snap-02109fa20ec701636
+ 10
+ true
+ gp2
+ false
+
+
+ hvm
+ xen
+
+ -
+ ami-bb8c62d0
+ 309956199498/RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2015-06-04T17:30:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdg
- ephemeral1
+ /dev/sda1
+
+ snap-8d1009f8
+ 10
+ true
+ gp2
+ false
+
- paravirtual
+ hvm
xen
-
- ami-20e90e49
- jf-test-copy/jf-test-copy.img.manifest.xml
+ ami-bd8daeaa
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2016-11-08T17:14:19.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a4c8f515
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-be6a98d6
+ 309956199498/RHEL-6.5_GA-x86_64-9-Access2
+ available
+ 309956199498
+ 2014-06-11T03:08:30.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-x86_64-9-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-97627d43
+ 10
+ true
+ standard
+ false
+
+
+
paravirtual
xen
-
- ami-22470534
- 200278856672/ssa-agent-0525
+ ami-befed2d6
+ 309956199498/RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-25T18:23:14.000Z
+ 309956199498
+ 2015-03-19T21:05:30.000Z
false
x86_64
machine
simple
- ssa-agent-0525
- working version 1
+ RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-08810574
+ snap-bd88c7d5
10
true
gp2
@@ -4095,58 +9865,81 @@ http_interactions:
xen
-
- ami-25a81c4c
- 200278856672/suse-11-server-64
+ ami-c35767a9
+ 309956199498/RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
available
- 200278856672
- 2012-08-22T01:42:54.000Z
+ 309956199498
+ 2016-02-20T03:54:06.000Z
false
x86_64
machine
- aki-825ea7eb
- suse-11-server-64
-
+ simple
+ RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-6eee471d
+ snap-0b675a0f
10
true
- standard
+ gp2
false
- paravirtual
-
+ hvm
+ xen
+
+ -
+ ami-c56c05ac
+ 309956199498/RHEL-6.2_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:12:17.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.2_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- suse-11-server-64
+ /dev/sda1
+
+ snap-be7cb4e3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-320c005a
- 200278856672/t2 rhel 7.1
+ ami-c5a094bf
+ 309956199498/RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-04-28T17:25:53.000Z
+ 309956199498
+ 2018-01-22T17:34:06.000Z
false
x86_64
machine
- t2 rhel 7.1
- rhel
+ simple
+ RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8b289bec
+ snap-0fba1838228dc629f
10
true
gp2
@@ -4155,202 +9948,336 @@ http_interactions:
hvm
-
+ xen
+ true
+
+ -
+ ami-c63d82ae
+ 309956199498/RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-10T14:57:48.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- mkanoor_t2_rhel
+ /dev/sda1
+
+ snap-4d7a7aea
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
xen
-
- ami-3bae1a52
- 200278856672/ubuntu-11.10-server-32
+ ami-c787eeae
+ 309956199498/RHEL-5.5_GA-i386-4-Access2
available
- 200278856672
- 2012-08-22T00:31:49.000Z
+ 309956199498
+ 2013-05-19T18:39:37.000Z
false
i386
machine
- aki-805ea7e9
- ubuntu-11.10-server-32
-
+ aki-68ceaf01
+ RHEL-5.5_GA-i386-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-968927e5
- 8
- false
+ snap-0fdb5d52
+ 6
+ true
standard
false
+
+ paravirtual
+ xen
+
+ -
+ ami-cbd306a2
+ 309956199498/RHEL-6.2-Starter-EBS-i386-4-Access2
+ available
+ 309956199498
+ 2011-12-19T17:51:18.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.2-Starter-EBS-i386-4-Access2
+ ebs
+ /dev/sda1
+
-
- /dev/sda2
+ /dev/sda1
+
+ snap-75094510
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
ephemeral0
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
-
+ xen
+
+ -
+ ami-cd5b32a4
+ 309956199498/RHEL-5.9_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T13:21:46.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.9_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-11.10-server-32
+ /dev/sda1
+
+ snap-04f75059
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-3f0e495a
- 200278856672/CFME5.5.0
+ ami-cdc96aa6
+ 309956199498/RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-09-30T16:31:07.000Z
+ 309956199498
+ 2015-08-04T17:23:22.000Z
false
x86_64
machine
- CFME5.5.0
- Red Hat CloudForms 5.5 AMI
+ simple
+ RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-1d177976
- 40
- false
+ snap-91688ce5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-cfd31fa6
+ 309956199498/RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ available
+ 309956199498
+ 2011-10-10T17:09:26.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.6-Starter-EBS-x86_64-12-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-32a7cd51
+ 6
+ true
standard
false
-
/dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-d2d06aba
+ 309956199498/RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-10-17T20:41:16.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
- snap-9dd602d7
- 50
- false
+ snap-110804b7
+ 10
+ true
gp2
false
hvm
-
- -
- Name
- cfme-5.5
-
-
xen
-
- ami-45c9df3e
- 200278856672/ladas_test_111_snapshot_image_sdd
+ ami-d2d369ba
+ 309956199498/RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:05:02.000Z
+ 309956199498
+ 2014-10-17T20:29:05.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image_sdd
-
+ RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
- /dev/sdd
+ /dev/sda1
-
- /dev/sdd
+ /dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-de444878
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-57318e3c
- 200278856672/mkanoor_testing_vpc
+ ami-d97120a3
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-08-24T15:36:54.000Z
+ 309956199498
+ 2018-01-04T21:29:11.000Z
false
x86_64
machine
- aki-1eceaf77
- mkanoor_testing_vpc
- mkanoor_testing_vpc
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-5ab0eb13
- 7
+ snap-056379444619d757b
+ 10
true
- standard
+ gp2
false
- paravirtual
+ hvm
xen
+ true
-
- ami-5769193e
- 200278856672/EmsRefreshSpec-Image
+ ami-d9ed21b0
+ 309956199498/RHEL-5.7-Starter-EBS-x86_64-3-Access2
available
- 200278856672
- 2013-06-22T02:28:44.000Z
+ 309956199498
+ 2011-10-10T19:01:04.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-Image
- EmsRefreshSpec-Image
+ aki-08ed0761
+ RHEL-5.7-Starter-EBS-x86_64-3-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5f38cd0e
- 7
+ snap-a6dfb5c5
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
xen
-
- ami-5e86fe48
- 200278856672/ssa-agent-hsong
+ ami-dbb45dcd
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
available
- 200278856672
- 2017-05-18T14:44:02.000Z
+ 309956199498
+ 2017-01-17T19:59:58.000Z
false
x86_64
machine
simple
- ssa-agent-hsong
- [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0a5070b29f3ddcd92
+ snap-07e0629666eb37658
10
true
gp2
@@ -4362,151 +10289,171 @@ http_interactions:
xen
-
- ami-63026775
- 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ ami-def37ea1
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-04-26T15:30:36.000Z
+ 309956199498
+ 2018-05-08T21:48:36.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-PoweredOn-VPC_snapshot
- EmsRefreshSpec-PoweredOn-VPC_description
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0001b68fed820fb79
- 7
+ snap-0b8a46e49a52d14ee
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+ true
+
+ -
+ ami-e2c45a98
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ available
+ 679593333241
+ 2017-11-30T05:31:28.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
+ /dev/sda1
- snap-0f1eb18bc955eb28a
- 1
+ snap-0f90a5c0b7f575bf8
+ 8
true
gp2
false
+ -
+ /dev/sdb
+ ephemeral0
+
paravirtual
xen
+ false
-
- ami-63ac180a
- 200278856672/redhat-6.3-32
+ ami-e97bf796
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
available
- 200278856672
- 2012-08-21T23:30:21.000Z
+ 679593333241
+ 2018-05-09T17:38:24.000Z
false
- i386
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
machine
- aki-36ed075f
- redhat-6.3-32
-
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
ebs
/dev/sda1
-
/dev/sda1
-
- snap-d23a95a1
- 7
+
+ snap-05db1cc1fdb7d5484
+ 8
true
- standard
+ gp2
false
-
- /dev/sdf
+ /dev/sdb
ephemeral0
- -
- /dev/sdg
- ephemeral1
-
paravirtual
-
- -
- Name
- redhat-6.3-32
-
-
xen
+ false
-
- ami-67bc0b0e
- 200278856672/miq-extract-base-ubuntu-12.04
+ ami-e984ed80
+ 309956199498/RHEL-5.5_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-27T19:14:39.000Z
+ 309956199498
+ 2013-05-19T17:59:35.000Z
false
x86_64
machine
- aki-825ea7eb
- miq-extract-base-ubuntu-12.04
- ubuntu 12.04 + rvm/Ruby1.9
+ aki-30ceaf59
+ RHEL-5.5_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-d03941a3
- 8
+ snap-29b03774
+ 6
true
standard
false
- -
- /dev/sdb
- ephemeral0
-
paravirtual
-
- -
- Name
- miq-extract-base-ubuntu-12.04
-
-
xen
-
- ami-7c4aa86a
- 200278856672/redhat-6.3-64
+ ami-e9ec2080
+ 309956199498/RHEL-5.7-Starter-EBS-i386-5-Access2
available
- 200278856672
- 2017-01-13T11:31:28.000Z
+ 309956199498
+ 2011-10-10T18:04:32.000Z
false
- x86_64
+ i386
machine
- aki-08ed0761
- redhat-6.3-64
- [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ aki-36ed075f
+ RHEL-5.7-Starter-EBS-i386-5-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-6054c98a
- 7
+ snap-8e90faed
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
@@ -4516,25 +10463,25 @@ http_interactions:
xen
-
- ami-7d85fd6b
- 200278856672/hsong-ssa-agent-v1
+ ami-eb0a7694
+ 309956199498/RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:21:55.000Z
+ 309956199498
+ 2018-06-06T21:58:13.000Z
false
x86_64
machine
simple
- hsong-ssa-agent-v1
- [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-05ef19f30ffe6ceaa
- 80
+ snap-076491f21bfe39630
+ 10
true
gp2
false
@@ -4545,55 +10492,63 @@ http_interactions:
xen
-
- ami-8bf2e4f0
- 200278856672/ladas_test_111_snapshot_image
+ ami-ebba9e90
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:04:28.000Z
+ 309956199498
+ 2017-08-01T13:55:21.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image
-
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-05b0394bb3b8b42d0
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-95ad19fc
- 200278856672/ubuntu-11.10-server-64
+ ami-ec601593
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
available
- 200278856672
- 2012-08-22T00:20:33.000Z
+ 679593333241
+ 2018-06-01T11:50:23.000Z
false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
x86_64
machine
- aki-825ea7eb
- ubuntu-11.10-server-64
-
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-05-22
ebs
/dev/sda1
-
/dev/sda1
- snap-90bc12e3
+ snap-029167631d7dbab96
8
- false
- standard
+ true
+ gp2
false
@@ -4601,94 +10556,70 @@ http_interactions:
/dev/sdb
ephemeral0
-
- paravirtual
-
-
- Name
- ubuntu-11.10-server-64
+ /dev/sdc
+ ephemeral1
-
+
+ hvm
xen
+ true
-
- ami-a7185ec2
- 200278856672/CFME-55Image
+ ami-ee0eaf87
+ 309956199498/RHEL-6.3-Starter-x86_64-1-Access2
available
- 200278856672
- 2015-10-01T15:35:55.000Z
+ 309956199498
+ 2012-06-04T19:11:15.000Z
false
x86_64
machine
- CFME-55Image
- CFME-55Image
+ aki-ecfa0185
+ RHEL-6.3-Starter-x86_64-1-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-249e4c6c
- 40
- false
- gp2
+ snap-0a6f0275
+ 7
+ true
+ standard
false
-
- /dev/sdb
-
- 30
- false
- gp2
- false
-
+ /dev/sdf
+ ephemeral0
-
- hvm
- xen
-
- -
- ami-ad43a4c4
- rpo-images/miq-ec2-proto.img.manifest.xml
- available
- 200278856672
-
- false
- i386
- machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
-
- Name
- extract-proto0
+ /dev/sdg
+ ephemeral1
-
+
+ paravirtual
xen
-
- ami-bbc9dac0
- 200278856672/ladas_test111
+ ami-eea69e86
+ 309956199498/RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-06T15:25:11.000Z
+ 309956199498
+ 2015-04-14T16:05:15.000Z
false
x86_64
machine
simple
- ladas_test111
-
+ RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-09505262c29651f47
+ snap-f7bff783
10
true
gp2
@@ -4700,311 +10631,284 @@ http_interactions:
xen
-
- ami-bda014d4
- 200278856672/redhat-6.3-64
+ ami-ef0ddc86
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
available
- 200278856672
- 2012-08-21T21:31:39.000Z
+ 309956199498
+ 2012-01-31T17:25:19.000Z
false
x86_64
machine
- aki-08ed0761
- redhat-6.3-64
-
+ aki-ecfa0185
+ RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5210bc21
- 7
+ snap-a26c77c6
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- redhat-6.3-64
-
-
xen
-
- ami-c68639af
- miq-extract-images/evm-extract.manifest.xml
+ ami-f1c75d8e
+ 309956199498/RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-10-11T20:34:52.000Z
+ 309956199498
+ 2018-05-22T20:49:43.000Z
false
x86_64
machine
- aki-825ea7eb
- evm-extract
- instance-store
+ simple
+ RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
-
- /dev/sdb
- ephemeral0
+ /dev/sda1
+
+ snap-034ca7106de61d544
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- evm-extract
-
-
+ hvm
xen
-
- ami-cd43a4a4
- rpo-images/miq-ec2-extract.img.manifest.xml
+ ami-f22c838f
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2018-04-05T14:03:24.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- extract-proto-old
+ /dev/sda1
+
+ snap-082db2812440be4e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
+ true
-
- ami-cf08bda6
- rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ ami-f4f16b9d
+ 309956199498/RHEL-6.4_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-19T18:43:47.000Z
+ 309956199498
+ 2013-03-28T15:27:20.000Z
false
x86_64
machine
- aki-6a0cf803
- instance-store
+ aki-ecfa0185
+ RHEL-6.4_GA-x86_64-4-Access2
+ ebs
/dev/sda1
-
- sdb
+ /dev/sda1
+
+ snap-11a7ef56
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
ephemeral0
-
- sdc
+ /dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- extract-proto3
-
-
xen
-
- ami-ebcb7e82
- rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ ami-fb261f91
+ 309956199498/RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
available
- 200278856672
- 2012-08-15T02:47:43.000Z
+ 309956199498
+ 2016-03-02T16:35:59.000Z
false
x86_64
machine
- aki-6a0cf803
- ubuntu10.04-rvm-ruby1.9
- instance-store
+ simple
+ RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sdb
- ephemeral0
-
- -
- sdc
- ephemeral1
+ /dev/sda1
+
+ snap-493b545c
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- ubuntu-10.04-rvm-ruby1.9
-
-
+ hvm
xen
-
- ami-edaa1f84
- rpo-work/miq-test.img.manifest.xml
+ ami-fbc89880
+ 309956199498/RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-15T18:51:02.000Z
+ 309956199498
+ 2017-07-24T15:44:37.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
+ simple
+ RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-06b3fdee8ff92a35b
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- test-linux
-
-
+ hvm
xen
-
- ami-edad1984
- 200278856672/ubuntu-12.04-server-32
+ ami-fc94dd94
+ 309956199498/RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-22T00:07:18.000Z
+ 309956199498
+ 2015-02-09T21:01:42.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- ubuntu-12.04-server-32
-
+ aki-919dcaf8
+ RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8ec06efd
- 8
+ snap-4c738dc3
+ 6
true
- standard
+ gp2
false
- -
- /dev/sda2
- ephemeral0
-
paravirtual
-
+ xen
+
+ -
+ ami-ff13f292
+ 309956199498/RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-05-03T20:13:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-12.04-server-32
+ /dev/sda1
+
+ snap-5f073bba
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-f3a81c9a
- 200278856672/suse-11-server-32
+ ami-ff83ea96
+ 309956199498/RHEL-5.6_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-22T01:57:01.000Z
+ 309956199498
+ 2013-05-19T15:16:36.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- suse-11-server-32
-
+ aki-30ceaf59
+ RHEL-5.6_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-baf35ac9
- 10
- false
+ snap-0215af5f
+ 6
+ true
standard
false
paravirtual
-
- -
- Name
- suse-11-server-32
-
-
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:02 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075202Z
- X-Amz-Content-Sha256:
- - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=22e028c6aeade3ac62f713e225d28e6db0121f182b57593e0cfa7aff7df57e2d
- Content-Length:
- - '110'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:51:56 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 0f6f4a58-ad9b-41d6-97f2-a18245395bf1
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:03 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:35 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -5017,14 +10921,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075203Z
+ - 20180906T091435Z
X-Amz-Content-Sha256:
- 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a3acd3c045a8967c592be5c5c0712e3ef18534ee6c7820bbced98fd2f05609a8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=16e929f119780b6afa6a4bfa4261933828011edf9dfa6c631aacef6ade1620c6
Content-Length:
- '43'
Accept:
@@ -5041,7 +10945,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:51:58 GMT
+ - Thu, 06 Sep 2018 09:14:35 GMT
Server:
- AmazonEC2
body:
@@ -5049,46 +10953,183 @@ http_interactions:
string: |-
- 660b3c0d-8c1e-49c3-a063-4edf8dad109f
+ 870f898c-6d7e-4e32-b16c-8268310db8ca
-
- r-06329810cfd223fe6
+ r-0dece58a7cd92b3d1
+ 200278856672
+
+
+
-
+ i-0828f09c91ab89a97
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2018-03-01T21:31:41.000Z
+
+ us-east-1c
+
+ default
+
+
+ enabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
+ true
+
+ -
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-080996fdeaee13caf
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+
+ hvm
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+ xen
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
+ 200278856672
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+
-
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+
+ eni-attach-f41e8d30
+ 0
+ attached
+ 2018-03-01T21:31:41.000Z
+ true
+
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0d9d5788168db3796
200278856672
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-10-0-1-85.ec2.internal
+ ip-172-30-0-32.ec2.internal
-
- MIQ_SSA
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
0
t2.micro
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5096,100 +11137,112 @@ http_interactions:
-
/dev/sda1
- vol-000f77902b1a16428
+ vol-0390b378515bffd1c
attached
- 2017-08-29T19:14:36.000Z
- true
+ 2018-04-05T18:29:10.000Z
+ false
hvm
- ptDPo1504034075390
+
-
- hsong-ssa
-
+ Name
+ smartstate
xen
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+
200278856672
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
- eni-attach-075e6227
+ eni-attach-39fcca94
0
attached
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.85
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-003249dcbdd91448e
+ r-016047928b31890f5
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
+ i-0297a2b1075b3a2c6
+ ami-5769193e
80
stopped
- ip-10-0-1-87.ec2.internal
+
- User initiated (2017-06-07 16:32:25 GMT)
+ User initiated
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-22T20:35:56.000Z
+ t1.micro
+ 2018-04-05T10:08:22.000Z
- us-east-1e
+ us-east-1b
default
+ aki-1eceaf77
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
- true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
x86_64
ebs
@@ -5198,18 +11251,171 @@ http_interactions:
-
/dev/sda1
- vol-0385dfce3061ff5a9
+ vol-0e7609b478fe9ca91
attached
- 2017-05-22T20:35:57.000Z
- false
+ 2018-04-05T10:08:23.000Z
+ true
+
+ paravirtual
+
+
-
- /dev/sdf
+ Name
+ mslemr
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
48
+ terminated
+
+
+
+ User initiated (2018-09-06 08:15:57 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+
+ -
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0bc3ae5e3f08c8a44
+ 200278856672
+
+
+
-
+ i-0125949f65c1e5528
+ ami-70e8fd66
+
+
16
+ running
+
+ ip-10-2-0-152.ec2.internal
+
+
+ hsong_centos_atomic
+ 0
+
+ t2.micro
+ 2018-03-06T18:29:43.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.152
+ 52.3.221.140
+ true
+
+ -
+ sg-5c49922a
+ launch-wizard-26
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
- vol-0ed526ebed417656f
+ vol-006fabcff33ae5272
attached
- 2017-05-22T20:35:57.000Z
+ 2018-03-06T18:29:43.000Z
false
@@ -5219,88 +11425,103 @@ http_interactions:
-
Name
- test_billy_20170522_v2
+ hsong-centos
xen
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ Primary network interface
200278856672
in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-ff35f0d1
+ eni-attach-3be67cff
0
attached
- 2017-05-22T20:35:56.000Z
+ 2018-03-06T18:29:43.000Z
true
+
+ 52.3.221.140
+
+ amazon
+
-
- 10.0.1.87
+ 10.2.0.152
true
+
+ 52.3.221.140
+
+ amazon
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
false
+
+ 1
+ 1
+
-
- r-0e65ce29775f6d8fc
+ r-072fcf51c1deca398
200278856672
-
- i-0d794150f7fd264c4
- ami-3f0e495a
+ i-0510954911e45949b
+ ami-c998b6b2
-
80
- stopped
+ 16
+ running
- ip-10-2-0-191.ec2.internal
+ ip-10-0-1-66.ec2.internal
- User initiated (2017-06-26 19:23:18 GMT)
+
+ bronaghkeypair
0
- t2.small
- 2017-06-09T15:00:46.000Z
+ t2.micro
+ 2017-12-13T14:43:34.000Z
- us-east-1c
+ us-east-1d
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.191
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
true
-
- sg-4cc30d32
- default
+ sg-a5b994d0
+ launch-wizard-14
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -5308,19 +11529,10 @@ http_interactions:
-
/dev/sda1
- vol-0290849f78dccf167
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-083b1f1e71831ba7e
+ vol-0d3587406018a8205
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2017-12-13T14:43:35.000Z
+ true
@@ -5329,37 +11541,37 @@ http_interactions:
-
Name
- test_billy0002
+ bronagh
xen
-
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-4cc30d32
- default
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-877ba01f
+ eni-attach-0dbdb6d5
0
attached
- 2017-06-09T15:00:46.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 10.2.0.191
+ 10.0.1.66
true
@@ -5367,48 +11579,56 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-057ea81c4767b9a2a
+ r-066d4d1b049774f63
200278856672
-
- i-02975d4eb8e53bafd
- ami-b63769a1
+ i-0274ada368eb4da36
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
-
- MIQ_SSA
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
0
t2.micro
- 2017-09-25T18:21:15.000Z
+ 2017-10-30T21:20:33.000Z
- us-east-1a
+ us-east-1c
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.91
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-8dff68ff
+ launch-wizard-53
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5416,62 +11636,52 @@ http_interactions:
-
/dev/sda1
- vol-0f151bad0c041c2db
+ vol-0d76e68ae71222b49
attached
- 2017-08-10T19:10:06.000Z
- true
+ 2017-10-20T03:07:59.000Z
+ false
hvm
-
+ sbRkK1508468877905
-
Name
- MIQ_SSA
+ ssa-docker
xen
-
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ Primary network interface
200278856672
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-f902c21c
+ eni-attach-5fcc62c4
0
attached
- 2017-08-10T19:10:05.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
@@ -5479,288 +11689,342 @@ http_interactions:
arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
+ AIPAJB66KPP4NYH7OLI2I
false
+
+ 1
+ 1
+
-
- r-02b7af2df00a8de50
+ r-1842f370
200278856672
-
- i-0150ac66c83e0eae8
- ami-6869aa05
+ i-8b5739f2
+ ami-5769193e
16
running
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
+ ip-10-0-0-254.ec2.internal
+
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-02T19:39:36.000Z
+ t1.micro
+ 2017-09-13T16:07:19.000Z
- us-east-1c
+ us-east-1e
default
+ aki-1eceaf77
- enabled
+ disabled
- subnet-de2363bb
- vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-02e5c41d12060ab3b
+ vol-67606d2d
attached
- 2017-05-02T19:39:37.000Z
+ 2013-09-23T20:11:57.000Z
true
-
- hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
-
- -
- aws:cloudformation:logical-id
- WebServerFleet
-
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+ paravirtual
+ aPCzL1379967112359
+
-
- Network
- Public
+ Name
+ EmsRefreshSpec-PoweredOn-VPC
-
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ owner
+ UNKNOWN
xen
-
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
-
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-3a6592a2
+ eni-attach-05fac66f
0
attached
- 2017-05-02T19:39:36.000Z
+ 2013-09-23T20:11:52.000Z
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.254
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
+ -
+ 10.0.0.208
+
+ false
+
false
- true
+
+ 1
+ 1
+
- 226008221399
-
- r-083cc6d943a6cc2e8
+ r-0c0e56163429b9a46
200278856672
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
+ i-0bca58e6e540ddc39
+ ami-6869aa05
16
running
- ip-10-0-1-78.ec2.internal
+ ip-10-2-0-239.ec2.internal
- bsorota
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-13T14:58:47.000Z
+ t2.nano
+ 2017-05-03T10:47:06.000Z
- us-east-1e
+ us-east-1c
default
- enabled
+ disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-06c7662068fe81b92
+ vol-0628a6ce987d4cb6e
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:07.000Z
true
hvm
- IIQTn1487263246120
+ EmsRe-WebSe-1229KQXQO3HUK
-
- foo
- bar
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
Name
- bronagh-events-test
+ EmsRefreshSpecStack
-
- owner
- bronaghs
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
xen
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
200278856672
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-45f9a86f
+ eni-attach-cbd22453
0
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:06.000Z
true
+
+ 34.202.178.10
+
+ 200278856672
+
-
- 10.0.1.78
+ 10.2.0.239
true
+
+ 34.202.178.10
+
+ 200278856672
+
false
+ true
+
+ 1
+ 1
+
-
- r-063763c7bd0616325
+ r-076deaba20c4af747
200278856672
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
+ i-0e1752ff841801f65
+ ami-5769193e
-
16
- running
+ 80
+ stopped
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
-
- ladas_test
+
+
+ User initiated (2018-09-03 12:12:01 GMT)
+ EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-05T14:04:30.000Z
+ 2018-09-03T12:10:36.000Z
- us-east-1d
+ us-east-1e
default
+ aki-1eceaf77
disabled
- 10.233.77.119
- 54.81.241.87
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5768,61 +12032,77 @@ http_interactions:
-
/dev/sda1
- vol-02a26016b0b7a9450
+ vol-076672a9b80ac2e25
attached
- 2017-05-05T14:04:33.000Z
+ 2018-09-03T12:10:36.000Z
true
paravirtual
- qWVKg1493993070283
+
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOff
+
+
xen
false
+
+ 1
+ 1
+
-
- r-38bafd9b
+ r-05e4ba632b214dc1e
200278856672
-
- i-fb694e66
- ami-5769193e
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-109.ec2.internal
+ ip-10-0-8-55.ec2.internal
-
- EmsRefreshSpec-KeyPair
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
0
- t1.micro
- 2017-09-06T21:07:48.000Z
+ t2.nano
+ 2018-06-11T07:26:10.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -5830,93 +12110,85 @@ http_interactions:
-
/dev/sda1
- vol-3bc4d1ea
+ vol-06e9ef72a99dcc223
attached
- 2016-05-10T20:56:38.000Z
+ 2018-06-06T18:52:18.000Z
true
- paravirtual
- uBCLe1462913797292
+ hvm
+
-
Name
- VMstate-8
+ ladas_ansible_test_2__1
-
- owner
- UNKNOWN
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
xen
-
- eni-a3902b84
- subnet-f849ff96
+ eni-e404c272
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-12a4c3e2
+ eni-attach-838d7a26
0
attached
- 2016-05-10T20:56:37.000Z
- true
-
-
- 54.163.162.32
-
- amazon
-
+ 2018-06-06T18:52:17.000Z
+ true
+
-
- 10.0.0.109
+ 10.0.8.55
true
-
- 54.163.162.32
-
- amazon
-
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-0ce8dea404618f3a5
- 200278856672
-
-
-
- i-03d706b95aa8b12ce
- ami-271e7c31
+ i-002ca40492fff0e67
+ ami-a4dc46db
80
stopped
- ip-10-0-1-229.ec2.internal
+ ip-10-0-8-133.ec2.internal
- User initiated (2017-06-20 17:19:50 GMT)
- james
- 0
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
- t2.medium
- 2017-06-16T20:54:01.000Z
+ t2.nano
+ 2018-06-15T13:08:32.000Z
us-east-1e
@@ -5925,14 +12197,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
@@ -5946,49 +12218,57 @@ http_interactions:
-
/dev/sda1
- vol-096d40746df01e27b
+ vol-096db62af3cb45d75
attached
- 2017-06-16T20:54:01.000Z
- false
+ 2018-06-06T18:52:18.000Z
+ true
hvm
- DpMDq1497646440165
+
+ -
+ TestTag
+ test2__0
+
-
Name
- Ansible Tower Trial Instance
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
xen
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
+
200278856672
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-4735d966
+ eni-attach-828d7a27
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.229
+ 10.0.8.133
true
@@ -5996,50 +12276,55 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-02d2f89dd4a54f2de
+ r-00a2f9d88c2068981
200278856672
-
- i-013f45a83fd938928
- ami-3f0e495a
+ i-05d2313e6b9a42b16
+ ami-6871a115
-
80
- stopped
+ 16
+ running
- ip-10-2-0-15.ec2.internal
+ ip-10-0-1-192.ec2.internal
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
+
+ julian cheal
0
t2.micro
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
- us-east-1c
+ us-east-1d
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
@@ -6048,58 +12333,43 @@ http_interactions:
-
/dev/sda1
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
+ vol-0eb5ddcf735f22184
attached
- 2017-06-07T15:59:48.000Z
- false
+ 2018-04-26T10:03:06.000Z
+ true
hvm
-
- -
- Name
- test_billy0001
-
-
xen
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
-
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- eni-attach-63ae77fb
+ eni-attach-7e503066
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.2.0.15
+ 10.0.1.192
true
@@ -6107,50 +12377,53 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-04c0352eb6024667f
+ r-09188ea8e40a2b4d8
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-091fe7ccd76ddac3b
- ami-0092b117
+ i-09b65a1400b9538ff
+ ami-5769193e
16
running
- ip-10-0-1-239.ec2.internal
-
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
- bmclaugh
0
- t2.micro
- 2017-08-24T15:40:38.000Z
+ t1.micro
+ 2018-07-25T11:01:38.000Z
- us-east-1e
+ us-east-1c
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
- true
+ 10.149.203.110
+ 75.101.229.189
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
x86_64
@@ -6160,139 +12433,68 @@ http_interactions:
-
/dev/sda1
- vol-04fc5431c4edd9bb6
+ vol-04d23aa0121812de9
attached
- 2017-05-16T18:19:22.000Z
+ 2018-07-25T11:01:38.000Z
true
- hvm
- HqLiY1494958760362
+ paravirtual
+
-
Name
- bmclaugh_console_test
+ mslemr-test4
xen
-
- -
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
-
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-88392ea7
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- -
- 10.0.0.129
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-1842f370
+ r-0a1dcdbc4e3f20db0
200278856672
-
- i-8b5739f2
- ami-5769193e
+ i-004f3bd30726946d1
+ ami-2051294a
16
running
- ip-10-0-0-254.ec2.internal
+ ip-10-0-8-25.ec2.internal
- EmsRefreshSpec-KeyPair
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
0
t1.micro
- 2017-09-13T16:07:19.000Z
+ 2018-02-06T09:49:36.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
+ 10.0.8.25
true
+ -
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
@@ -6305,253 +12507,189 @@ http_interactions:
-
/dev/sda1
- vol-67606d2d
+ vol-00198c2e466b380ac
attached
- 2013-09-23T20:11:57.000Z
+ 2018-02-06T09:49:36.000Z
true
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
- paravirtual
- aPCzL1379967112359
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
+ ladas-test-foreman.ec2.internal
xen
-
- eni-ad25f7cc
- subnet-f849ff96
+ eni-88c5a245
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
+
-
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-05fac66f
+ eni-attach-d82c7915
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 54.208.119.197
-
- 200278856672
-
-
- 10.0.0.254
+ 10.0.8.25
true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
false
+
+ 1
+ 1
+
-
- r-0c0e56163429b9a46
+ r-18ca6cb0
200278856672
-
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
-
- i-0bca58e6e540ddc39
- ami-6869aa05
+ i-680071e9
+ ami-5769193e
16
running
- ip-10-2-0-239.ec2.internal
-
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-03T10:47:06.000Z
+ t1.micro
+ 2017-09-07T14:42:55.000Z
- us-east-1c
+ us-east-1e
default
+ aki-1eceaf77
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
- true
+ 10.91.143.248
+ 54.221.202.53
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-0628a6ce987d4cb6e
+ vol-b6fa656a
attached
- 2017-05-03T10:47:07.000Z
+ 2016-01-07T19:58:39.000Z
true
- hvm
- EmsRe-WebSe-1229KQXQO3HUK
+ paravirtual
+ JwNdr1452196715903
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
+ owner
+ UNKNOWN
-
- aws:cloudformation:logical-id
- WebServerInstance
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3
xen
-
- -
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
- true
-
-
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
-
- eni-attach-cbd22453
- 0
- attached
- 2017-05-03T10:47:06.000Z
- true
-
-
- 34.202.178.10
-
- 200278856672
-
-
- -
- 10.2.0.239
- true
-
- 34.202.178.10
-
- 200278856672
-
-
-
-
-
-
+
false
- true
+
+ 1
+ 1
+
-
- r-051854d34993ed969
+ r-052a327ea7fccec89
200278856672
-
- i-0347d4075310c21e6
- ami-3f0e495a
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
80
stopped
- ip-10-0-1-167.ec2.internal
+ ip-172-30-0-44.ec2.internal
- User initiated (2017-03-22 18:08:49 GMT)
- db
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
0
- t2.small
- 2017-03-21T19:39:50.000Z
+ t2.micro
+ 2018-03-15T13:27:36.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
@@ -6565,18 +12703,9 @@ http_interactions:
-
/dev/sda1
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
+ vol-0a184b5b739d382d8
attached
- 2017-03-21T19:39:51.000Z
+ 2018-03-15T13:27:37.000Z
false
@@ -6586,92 +12715,97 @@ http_interactions:
-
Name
- tina_test_march21001
+ smartstate
xen
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
200278856672
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
+ eni-attach-22e6878f
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 10.0.1.167
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-052a9ecb9d478b8d6
+ r-0cca17241eb40667c
200278856672
-
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
-
- i-099e794cfa830e9be
- ami-2051294a
+ i-03769bc6ccaba947a
+ ami-2a69aa47
16
running
- ip-10-0-0-4.ec2.internal
-
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
- ladas
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-04T13:26:00.000Z
+ t1.micro
+ 2018-09-04T13:39:05.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
enabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
- true
+ 10.231.214.59
+ 54.196.64.159
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
x86_64
@@ -6681,102 +12815,76 @@ http_interactions:
-
/dev/sda1
- vol-00306cda05dec2db5
+ vol-0eb026a02c6666ea0
attached
- 2017-09-04T13:26:01.000Z
+ 2018-09-04T13:39:05.000Z
true
- hvm
-
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
-
- Name
- ladas_test112
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
- xen
-
-
- eni-6933e6c9
- subnet-f849ff96
- vpc-ff49ff91
- test
- 200278856672
- in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
- true
-
-
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
-
- eni-attach-de56932b
- 0
- attached
- 2017-09-04T13:26:00.000Z
- true
-
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.4
- true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
-
-
-
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
-
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-0330333bbdf03e149
+ r-09dd2a3970815aaee
200278856672
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
+ i-066465f361331dfa6
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-236.ec2.internal
+ ip-10-0-8-108.ec2.internal
-
- ladas
- 0
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
t2.micro
- 2017-09-07T12:23:45.000Z
+ 2018-05-25T15:39:08.000Z
us-east-1e
@@ -6785,17 +12893,20 @@ http_interactions:
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
+ 10.0.8.108
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -6803,9 +12914,9 @@ http_interactions:
-
/dev/sda1
- vol-0ac7a66512bf0d20c
+ vol-0875db6c16a8e9335
attached
- 2017-09-07T12:23:46.000Z
+ 2018-05-24T13:44:27.000Z
true
@@ -6815,76 +12926,65 @@ http_interactions:
-
Name
- ladas_test_40
+ ladas_ansible_test_2
xen
-
- eni-b9cc7f19
- subnet-f849ff96
+ eni-47cd6fd0
+ subnet-5f5a9670
vpc-ff49ff91
-
+ Primary network interface
200278856672
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
- eni-attach-0b3482fe
+ eni-attach-b64f3e14
0
attached
- 2017-09-07T12:23:45.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 52.70.78.137
-
- 200278856672
-
-
- 10.0.0.236
+ 10.0.8.108
true
-
- 52.70.78.137
-
- 200278856672
-
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-03174ab388e42d485
- 200278856672
-
-
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
+ i-0c37a7d012922752e
+ ami-a4dc46db
80
stopped
- ip-10-0-1-70.ec2.internal
+ ip-10-0-8-189.ec2.internal
- User initiated (2017-05-02 13:12:28 GMT)
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
0
- t2.medium
- 2017-04-12T18:17:01.000Z
+ t2.micro
+ 2018-05-25T15:39:09.000Z
us-east-1e
@@ -6893,14 +12993,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.189
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
@@ -6914,19 +13014,10 @@ http_interactions:
-
/dev/sda1
- vol-0816f373502e8db24
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
+ vol-06bc83fa0e7bd77c4
attached
- 2017-04-12T18:17:03.000Z
- false
+ 2018-05-24T13:44:27.000Z
+ true
@@ -6935,37 +13026,37 @@ http_interactions:
-
Name
- tina_take_two002
+ ladas_ansible_test_2
xen
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
- eni-attach-59c6f675
+ eni-attach-494c3deb
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.70
+ 10.0.8.189
true
@@ -6973,97 +13064,109 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-01228013207b85dad
+ r-0b0ebf36d34acdaa6
200278856672
-
- i-08c033357b433ea2c
- ami-0b33d91d
+ i-0a67c549558c9c392
+ ami-26ebbc5c
-
16
- running
+ 80
+ stopped
- ip-10-0-1-155.ec2.internal
+ ip-10-0-1-165.ec2.internal
-
- bd
+ User initiated (2018-07-09 19:41:17 GMT)
0
- t2.nano
- 2017-09-05T13:28:00.000Z
+ t2.micro
+ 2018-04-24T18:47:14.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
true
-
- sg-65d59519
- launch-wizard-37
+ sg-b00affc6
+ launch-wizard-23
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-01aca96e22103f767
+ vol-0b80eb1a867cd27f8
attached
- 2017-02-14T16:18:29.000Z
+ 2018-02-28T16:08:25.000Z
true
hvm
- hPmBd1487089108162
+
-
Name
- mhild
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
xen
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-65d59519
- launch-wizard-37
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-2d92e207
+ eni-attach-87883f81
0
attached
- 2017-02-14T16:18:28.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.0.1.155
+ 10.0.1.165
true
@@ -7072,61 +13175,65 @@ http_interactions:
false
true
+
+ 1
+ 1
+
-
- r-0e0f81bfeea774100
+ r-0b5184e8fed7c403a
200278856672
-
- i-0951b95d6db76519d
- ami-b63769a1
+ i-02007c8f386e74470
+ ami-55ef662f
-
80
- stopped
+ 16
+ running
- ip-172-30-0-105.ec2.internal
+ ip-10-0-1-179.ec2.internal
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
+
+ bronaghkeypair1213
0
t2.micro
- 2017-08-29T15:52:11.000Z
+ 2017-12-13T15:04:34.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.105
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-2899b45d
+ launch-wizard-16
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-0ea3efc6f99654381
+ vol-07be95279f27e791f
attached
- 2017-07-26T15:15:30.000Z
+ 2017-12-13T15:04:35.000Z
true
@@ -7136,101 +13243,96 @@ http_interactions:
-
Name
- MIQ_SSA
+ bronagh1213
+
+ -
+ AWS_Tier
+ Gold
xen
-
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-4451b1a7
+ eni-attach-e6616b3e
0
attached
- 2017-07-26T15:15:29.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 10.0.1.179
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-18ca6cb0
+ r-0dbeaadfed0a4ba6a
200278856672
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
-
- i-680071e9
- ami-5769193e
+ i-00eda271fc8d71e7e
+ ami-2a69aa47
16
running
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
+ ip-10-182-106-171.ec2.internal
+ ec2-54-237-177-195.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-09-07T14:42:55.000Z
+ 2018-09-06T08:19:39.000Z
- us-east-1e
+ us-east-1c
default
- aki-1eceaf77
+ aki-919dcaf8
- disabled
+ enabled
- 10.91.143.248
- 54.221.202.53
+ 10.182.106.171
+ 54.237.177.195
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
x86_64
@@ -7240,77 +13342,92 @@ http_interactions:
-
/dev/sda1
- vol-b6fa656a
+ vol-0491256daac0cf880
attached
- 2016-01-07T19:58:39.000Z
+ 2018-09-06T08:19:39.000Z
true
paravirtual
- JwNdr1452196715903
+ bd2596b7-dc7c-e25d-b21e-8361e927627f_us-east-1c_1
-
- owner
- UNKNOWN
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
-
- Name
- EmsRefreshSpec-PoweredOn-Basic3
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-gato4drzgerpy
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-gato4drzgerpy-WebServerGroup-UPQDGUBBE1FL
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
xen
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-06a48602fb689eb1b
+ r-0dee19ffc1a9d96c4
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-047886b9fd2397967
- ami-5769193e
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
80
stopped
-
+ ip-172-30-0-213.ec2.internal
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
0
- t1.micro
- 2017-09-26T07:48:52.000Z
+ t2.micro
+ 2018-04-17T08:15:14.000Z
- us-east-1e
+ us-east-1a
default
- aki-1eceaf77
disabled
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.213
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-67541b15
+ smartstate
@@ -7324,51 +13441,89 @@ http_interactions:
-
/dev/sda1
- vol-0c2aaf810c8925376
+ vol-070d695244916edf4
attached
- 2017-09-26T07:48:52.000Z
- true
+ 2018-02-26T18:31:28.000Z
+ false
- paravirtual
- lGtNQ1506412131645
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
+ smartstate
xen
-
+
+ -
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-fbede525
+ 0
+ attached
+ 2018-02-26T18:31:27.000Z
+ true
+
+
+ -
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-0cac97e7f6d09c34a
+ r-08722bad9d42340ba
200278856672
-
- i-0fca61ededa522f1a
+ i-0639022117944a668
ami-63ac180a
16
running
- ip-10-0-0-36.ec2.internal
+ ip-10-0-0-98.ec2.internal
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
us-east-1e
@@ -7380,8 +13535,8 @@ http_interactions:
subnet-f849ff96
vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
+ 10.0.0.98
+ 54.172.168.193
true
-
@@ -7396,15 +13551,15 @@ http_interactions:
-
/dev/sda1
- vol-097f300050f495d06
+ vol-0b2d1d3b42eb03555
attached
- 2017-05-02T19:39:50.000Z
+ 2018-03-15T13:28:48.000Z
true
paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
-
aws:autoscaling:groupName
@@ -7414,14 +13569,14 @@ http_interactions:
xen
-
- eni-fe24b408
+ eni-17e6c4d8
subnet-f849ff96
vpc-ff49ff91
200278856672
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -7430,23 +13585,23 @@ http_interactions:
- eni-attach-0e5ec721
+ eni-attach-5225809d
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
true
- 54.145.134.133
+ 54.172.168.193
amazon
-
- 10.0.0.36
+ 10.0.0.98
true
- 54.145.134.133
+ 54.172.168.193
amazon
@@ -7456,46 +13611,50 @@ http_interactions:
false
+
+ 1
+ 1
+
226008221399
-
- r-045f6da0fe48accc5
+ r-0098192b5619646aa
200278856672
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
80
stopped
- ip-172-30-0-113.ec2.internal
+ ip-172-30-3-177.ec2.internal
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
0
t2.micro
- 2017-07-17T21:02:54.000Z
+ 2018-03-15T07:09:23.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
+ subnet-bc418ce4
vpc-aee2a6ca
- 172.30.0.113
+ 172.30.3.177
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
@@ -7509,9 +13668,9 @@ http_interactions:
-
/dev/sda1
- vol-0657f371b97c0f147
+ vol-00991e8e4231720cb
attached
- 2017-07-17T19:21:46.000Z
+ 2018-03-12T13:48:52.000Z
true
@@ -7521,80 +13680,81 @@ http_interactions:
-
Name
- MIQ_SSA
+ stomsa
xen
-
- eni-5836d558
- subnet-e88815d5
+ eni-44432b95
+ subnet-bc418ce4
vpc-aee2a6ca
-
+ Primary network interface
200278856672
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
- eni-attach-cd97a82d
+ eni-attach-2bb4992d
0
attached
- 2017-07-17T19:21:45.000Z
+ 2018-03-12T13:48:51.000Z
true
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-001ade0887ad9089f
+ r-0edfc71118172d410
200278856672
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
-
- i-025623c4c4e4f84a0
+ i-038bc46a57b2ad428
ami-2a69aa47
16
running
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
+ ip-10-88-183-52.ec2.internal
+ ec2-54-237-142-243.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-08-31T00:02:52.000Z
+ 2018-09-06T08:19:19.000Z
- us-east-1d
+ us-east-1c
default
@@ -7602,12 +13762,12 @@ http_interactions:
enabled
- 10.51.177.218
- 54.224.115.150
+ 10.88.183.52
+ 54.237.142.243
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
x86_64
@@ -7617,86 +13777,95 @@ http_interactions:
-
/dev/sda1
- vol-04eb2f294c5f9f7eb
+ vol-02bb1bb157d7f12de
attached
- 2017-08-31T00:02:52.000Z
+ 2018-09-06T08:19:19.000Z
true
paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
+ 452596b7-db43-25da-9bdf-1665323d18a3_us-east-1c_1
-
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
+ aws:autoscaling:groupName
+ SC-200278856672-pp-u2tepcnttldko-WebServerGroup-1JRWA7TZE4G12
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
-
aws:cloudformation:logical-id
WebServerGroup
-
- aws:autoscaling:groupName
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-u2tepcnttldko
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
-
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
xen
false
+
+ 1
+ 1
+
- 226008221399
+ 940372691376
-
- r-06c8896ff6d4d039d
+ r-094143b846043daef
200278856672
-
- i-0b1ec6330e0180f75
- ami-b63769a1
+ i-0b2631823a0fdfc76
+ ami-5769193e
-
80
- stopped
+ 16
+ running
- ip-172-30-0-103.ec2.internal
-
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
+
0
- t2.micro
- 2017-09-23T18:24:21.000Z
+ t1.micro
+ 2018-07-25T10:56:16.000Z
- us-east-1a
+ us-east-1b
default
+ aki-1eceaf77
disabled
- subnet-e88815d5
+ subnet-56f55f20
vpc-aee2a6ca
- 172.30.0.103
+ 172.30.1.91
+ 18.209.8.70
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -7704,62 +13873,66 @@ http_interactions:
-
/dev/sda1
- vol-0d805ae0a434871aa
+ vol-0d62d6706c88af498
attached
- 2017-09-23T18:24:22.000Z
+ 2018-07-25T10:56:17.000Z
true
- hvm
+ paravirtual
-
- -
- Name
- MIQ_SSA
-
-
xen
-
- eni-7b9a4078
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
200278856672
in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-aa928893
+ eni-attach-d57a046c
0
attached
- 2017-09-23T18:24:21.000Z
+ 2018-07-25T10:56:16.000Z
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+
+ 1
+ 1
+
@@ -7802,6 +13975,10 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
x86_64
ebs
/dev/sda1
@@ -7882,51 +14059,55 @@ http_interactions:
false
+
+ 1
+ 1
+
-
- r-00811be44fc3b2c8f
+ r-0afdcc8251cc93fd7
200278856672
-
+
+
-
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
+ i-0aa433595b855eeeb
+ ami-2a69aa47
-
80
- stopped
+ 16
+ running
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-03-13T12:10:54.000Z
+ t1.micro
+ 2018-03-01T21:31:04.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
+ 10.185.167.107
+ 54.161.0.45
-
- sg-82c99dfe
- launch-wizard-38
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -7934,118 +14115,89 @@ http_interactions:
-
/dev/sda1
- vol-0e251f8b387b2d87d
+ vol-007e8c0663020ed1c
attached
- 2017-02-16T16:28:16.000Z
+ 2018-03-01T21:31:05.000Z
true
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
- hvm
- Wewzf1487262494337
+ paravirtual
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
-
EmsRefreshSpecResourceGroupTag
EmsRefreshSpecResourceGroupTagValue
-
- owner
- Ladas
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
-
- Name
- ladas_test_5
+ aws:autoscaling:groupName
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
-
- xen
-
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
- attached
- 2017-02-16T16:28:15.000Z
- true
-
-
- -
- 10.0.1.86
- true
-
-
-
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 226008221399
-
- r-08595d55d4aa901a4
+ r-0bd40467050d37fd3
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0c1542ba946875280
- ami-3f0e495a
+ i-0235e2c2b4fcabeab
+ ami-5769193e
-
80
- stopped
+ 16
+ running
- ip-10-0-1-90.ec2.internal
-
- User initiated (2017-03-23 19:13:13 GMT)
- db
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
0
- t2.small
- 2017-03-21T19:41:22.000Z
+ m3.medium
+ 2018-03-14T21:43:12.000Z
- us-east-1e
+ us-east-1b
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
- true
+ 10.180.71.172
+ 54.87.20.125
-
- sg-24362241
+ sg-347f9b5d
default
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -8053,104 +14205,66 @@ http_interactions:
-
/dev/sda1
- vol-035c47f5f5190ddc8
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
+ vol-07667df1666e2060a
attached
- 2017-03-21T19:41:23.000Z
- false
+ 2018-03-14T21:43:13.000Z
+ true
- hvm
+ paravirtual
-
- -
- Name
- tina_test_march21003
-
-
xen
-
- -
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
- -
- 10.0.1.90
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-01136b3a8909eb8ef
+ r-0d025657762e468f5
200278856672
-
- i-035fa3affa815d81d
- ami-3f0e495a
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
80
stopped
- ip-10-0-1-230.ec2.internal
+ ip-10-0-1-19.ec2.internal
- User initiated (2017-03-22 19:02:26 GMT)
- db
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
0
-
- t2.small
- 2017-03-21T19:39:52.000Z
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ t2.micro
+ 2018-03-06T05:28:40.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
@@ -8164,58 +14278,49 @@ http_interactions:
-
/dev/sda1
- vol-059f5f4b2a5663e65
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
+ vol-09a10c5f98f2dd67c
attached
- 2017-03-21T19:39:52.000Z
+ 2018-03-06T05:28:40.000Z
false
hvm
-
+ 152031409666653601
-
Name
- tina_test_march21002
+ james
xen
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-9413e1b8
+ eni-attach-3a325e3c
0
attached
- 2017-03-21T19:39:52.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 10.0.1.230
+ 10.0.1.19
true
@@ -8223,104 +14328,822 @@ http_interactions:
false
+ false
+
+ 1
+ 1
+
-
- r-05ad2451777d582ec
+ r-0d3845bde588bc6ff
200278856672
-
- sg-347f9b5d
- default
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
-
- i-02c925747e07a8118
- ami-5769193e
+ i-0e48bff566d8742b3
+ ami-2a69aa47
-
16
- running
+ 48
+ terminated
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
-
+
+
+ User initiated (2018-09-06 08:15:05 GMT)
+ EmsRefreshSpec-KeyPair
0
- m3.medium
- 2017-07-24T19:18:26.000Z
+ t1.micro
+ 2018-09-04T12:12:02.000Z
us-east-1d
default
- aki-1eceaf77
+ aki-919dcaf8
- disabled
+ enabled
- 10.102.130.251
- 54.162.181.195
-
- sg-347f9b5d
- default
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
-
- -
- /dev/sda1
-
- vol-05eb880e2e337b3f1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
-
+
paravirtual
-
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
-
- Name
- testtina123456
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
xen
false
+
+ 1
+ 1
+
+ 940372691376
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:06 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:36 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeImages&Filter.1.Name=image-id&Filter.1.Value.1=ami-6869aa05&Filter.1.Value.2=ami-70e8fd66&Filter.1.Value.3=ami-2a69aa47&Filter.1.Value.4=ami-c998b6b2&Filter.1.Value.5=ami-a4dc46db&Filter.1.Value.6=ami-6871a115&Filter.1.Value.7=ami-2051294a&Filter.1.Value.8=ami-26ebbc5c&Filter.1.Value.9=ami-55ef662f&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091436Z
+ X-Amz-Content-Sha256:
+ - 1902bf3f2804c4fe1b6c16038a0679dd3459780f747684f7a3f60649efb3184b
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e54bc46e3ab9dfc3d85a6c910ab3fe59beb639769bab525cef4d3f04d14e1d3c
+ Content-Length:
+ - '333'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:14:37 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ b1bfe317-8560-4c08-b056-68e3d0a26b70
+
+ -
+ ami-2051294a
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:58.000Z
+ true
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-26ebbc5c
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Hourly2-GP2
+ available
+ 309956199498
+ 2018-01-04T01:55:42.000Z
+ true
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Hourly2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a1cfc902770c514d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-2a69aa47
+ amazon/amzn-ami-pv-2016.03.3.x86_64-ebs
+ available
+ 137112412989
+ 2016-06-22T06:11:54.000Z
+ true
+ x86_64
+ machine
+ aki-919dcaf8
+ amazon
+ amzn-ami-pv-2016.03.3.x86_64-ebs
+ Amazon Linux AMI 2016.03.3 x86_64 PV EBS
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4177dea1
+ 8
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-55ef662f
+ amazon/amzn-ami-hvm-2017.09.1.20171120-x86_64-gp2
+ available
+ 137112412989
+ 2017-11-20T22:29:51.000Z
+ true
+ x86_64
+ machine
+ simple
+ amazon
+ amzn-ami-hvm-2017.09.1.20171120-x86_64-gp2
+ Amazon Linux AMI 2017.09.1.20171120 x86_64 HVM GP2
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-055cf1cfc1dda99fe
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-6869aa05
+ amazon/amzn-ami-hvm-2016.03.3.x86_64-gp2
+ available
+ 137112412989
+ 2016-06-22T06:10:37.000Z
+ true
+ x86_64
+ machine
+ simple
+ amazon
+ amzn-ami-hvm-2016.03.3.x86_64-gp2
+ Amazon Linux AMI 2016.03.3 x86_64 HVM GP2
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-25dd2ac1
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-6871a115
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Hourly2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:42:08.000Z
+ true
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Hourly2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-70e8fd66
+ 410186602215/CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
+ available
+ 410186602215
+ 2017-07-17T17:47:40.000Z
+ true
+ x86_64
+ machine
+ CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
+ CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-00b622fadac39e90b
+ 10
+ false
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a4dc46db
+ 099720109477/ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180522
+ available
+ 099720109477
+ 2018-05-22T18:51:04.000Z
+ true
+ x86_64
+ machine
+ simple
+ ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180522
+ Canonical, Ubuntu, 16.04 LTS, amd64 xenial image build on 2018-05-22
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0eea1ed47e203f3b8
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-c998b6b2
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:37:31.000Z
+ true
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0822784885cd20aff
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:39 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: "{}"
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.SearchProductsAsAdmin
+ X-Amz-Date:
+ - 20180906T091439Z
+ X-Amz-Content-Sha256:
+ - 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=c7de06d683433a2b86b9690e366185e87f6d2c2c87852b7b5500b8c5e64082c5
+ Content-Length:
+ - '2'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 487c90e7-b1b5-11e8-9a75-4f45c550f235
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '1495'
+ Date:
+ - Thu, 06 Sep 2018 09:14:39 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ProductViewDetails":[{"CreatedTime":1.536071279E9,"ProductARN":"arn:aws:catalog:us-east-1:200278856672:product/prod-4v6rc4hwaiiha","ProductViewSummary":{"Distributor":"","HasDefaultPath":false,"Id":"prodview-mojlvmp5xax74","Name":"EmsRefreshSpecProductWithNoPortfolio","Owner":"EmsRefreshSpecProductWithNoPortfolioOwner","ProductId":"prod-4v6rc4hwaiiha","ShortDescription":"EmsRefreshSpecProductWithNoPortfolio
+ desc","Type":"CLOUD_FORMATION_TEMPLATE"},"Status":"CREATED"},{"CreatedTime":1.536051613E9,"ProductARN":"arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga","ProductViewSummary":{"Distributor":"EmsRefreshSpecVendor","HasDefaultPath":false,"Id":"prodview-j3n5gqatjrkk2","Name":"EmsRefreshSpecProduct","Owner":"EmsRefreshSpecOwner","ProductId":"prod-h7p6ruq5qgrga","ShortDescription":"EmsRefreshSpecProduct
+ description","SupportDescription":"EmsRefreshSpec desc","SupportEmail":"EmsRefreshSpec@test.com","SupportUrl":"http://EmsRefreshSpec.com","Type":"CLOUD_FORMATION_TEMPLATE"},"Status":"CREATED"},{"CreatedTime":1.536067386E9,"ProductARN":"arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq","ProductViewSummary":{"Distributor":"EmsRefreshSpecProductWithRulesVendor","HasDefaultPath":false,"Id":"prodview-as7h736moeyrc","Name":"EmsRefreshSpecProductWithRules","Owner":"EmsRefreshSpecProductWithRulesowner","ProductId":"prod-cei2spnzu24lq","ShortDescription":"EmsRefreshSpecProductWithRules
+ desc","Type":"CLOUD_FORMATION_TEMPLATE"},"Status":"CREATED"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:40 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"prod-4v6rc4hwaiiha"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProduct
+ X-Amz-Date:
+ - 20180906T091440Z
+ X-Amz-Content-Sha256:
+ - 4fd4c0934d67d7934496d0b085a62a5d0f2875d67559eef17602900b1781dbf0
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=e9cc79b6a4deeb34c868265d117d36a5ed714957838ddeb3b8af56ff8040d185
+ Content-Length:
+ - '27'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 400
+ message: Bad Request
+ headers:
+ X-Amzn-Requestid:
+ - 4936441e-b1b5-11e8-9da8-9341bec885c0
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '106'
+ Date:
+ - Thu, 06 Sep 2018 09:14:40 GMT
+ Connection:
+ - close
+ body:
+ encoding: UTF-8
+ string: '{"__type":"ResourceNotFoundException","Message":"prod-4v6rc4hwaiiha
+ does not exist or access was denied."}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:41 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"prod-h7p6ruq5qgrga"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProduct
+ X-Amz-Date:
+ - 20180906T091441Z
+ X-Amz-Content-Sha256:
+ - a465015663724755eebd6b373782eaa954b557e98fc89644a6ac4c050e402ea3
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=4bb66fb0ab7ddf5cf5cf77065a477f9e9a70081aeac692fa31d165528a85d09f
+ Content-Length:
+ - '27'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 499ef082-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '628'
+ Date:
+ - Thu, 06 Sep 2018 09:14:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ProductViewSummary":{"Distributor":"EmsRefreshSpecVendor","HasDefaultPath":false,"Id":"prodview-j3n5gqatjrkk2","Name":"EmsRefreshSpecProduct","Owner":"EmsRefreshSpecOwner","ProductId":"prod-h7p6ruq5qgrga","ShortDescription":"EmsRefreshSpecProduct
+ description","SupportDescription":"EmsRefreshSpec desc","SupportEmail":"EmsRefreshSpec@test.com","SupportUrl":"http://EmsRefreshSpec.com","Type":"CLOUD_FORMATION_TEMPLATE"},"ProvisioningArtifacts":[{"CreatedTime":1.536051613E9,"Description":"desc","Id":"pa-nr3ua3nz3pgwq","Name":"v2"},{"CreatedTime":1.53605307E9,"Description":"new
+ version","Id":"pa-ysaib55ylta6k","Name":"v3"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:42 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-h7p6ruq5qgrga"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.ListLaunchPaths
+ X-Amz-Date:
+ - 20180906T091442Z
+ X-Amz-Content-Sha256:
+ - 33f8e66d5c7ae5d987387680c7c927c886ef0b9b336fd9ad3198b3e3bae26f2a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=a699933cf4b14c8acf27c33219be289acb8bb4b3121ded45772e8c8308f28c1f
+ Content-Length:
+ - '34'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4a10c581-b1b5-11e8-9a75-4f45c550f235
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '307'
+ Date:
+ - Thu, 06 Sep 2018 09:14:42 GMT
+ body:
+ encoding: UTF-8
+ string: '{"LaunchPathSummaries":[{"ConstraintSummaries":[{"Description":"Enforcing
+ instance type to be either t1.micro or m1.small","Type":"TEMPLATE"}],"Id":"lp-e76ssfhze5jyi","Name":"EmsRefreshSpecPortfolio","Tags":[]},{"ConstraintSummaries":[],"Id":"lp-rb5sy6f5vyrdk","Name":"EmsRefreshSpecPortfolio2","Tags":[]}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:43 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-nr3ua3nz3pgwq","PathId":"lp-e76ssfhze5jyi"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProvisioningParameters
+ X-Amz-Date:
+ - 20180906T091443Z
+ X-Amz-Content-Sha256:
+ - 44e7ca0f12a55eb2b1295e205bf3b50718e6453e209e2280595e8456bb6e7a9c
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=043e1e4b30357c57902b688cb0adc756fd2c79cd87abbdb3470d8dcbff251919
+ Content-Length:
+ - '106'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4aad53a6-b1b5-11e8-9a75-4f45c550f235
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '3335'
+ Date:
+ - Thu, 06 Sep 2018 09:14:43 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ConstraintSummaries":[{"Description":"Enforcing instance type to
+ be either t1.micro or m1.small","Type":"TEMPLATE"}],"ProvisioningArtifactParameters":[{"Description":"Name
+ of an existing EC2 KeyPair to enable SSH access to the instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"KeyName","ParameterType":"AWS::EC2::KeyPair::KeyName"},{"DefaultValue":"0.0.0.0/0","Description":"The
+ IP address range that can be used to SSH to the EC2 instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"SSHLocation","ParameterType":"String"},{"DefaultValue":"t2.small","Description":"WebServer
+ EC2 instance type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","cc2.8xlarge","cg1.4xlarge"]},"ParameterKey":"InstanceType","ParameterType":"String"}],"TagOptions":[],"UsageInstructions":[{"Type":"rules","Value":"{\"Rule1\":{\"Assertions\":[{\"Assert\":{\"Fn::Contains\":[[\"t1.micro\",\"m1.small\"],{\"Ref\":\"InstanceType\"}]},\"AssertDescription\":\"Instance
+ type should be either t1.micro or m1.small\"}]}}"},{"Type":"version","Value":"2010-09-09"},{"Type":"description","Value":"AWS
+ CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create
+ a load balanced, Auto Scaled sample website where the instances are locked
+ down to only accept traffic from the load balancer. This example creates an
+ Auto Scaling group behind a load balancer with a simple health check. The
+ web site is available on port 80, however, the instances can be configured
+ to listen on any port (8888 by default). **WARNING** This template creates
+ one or more Amazon EC2 instances and an Elastic Load Balancer. You will be
+ billed for the AWS resources used if you create a stack from this template."},{"Type":"metadata","Value":"{\"AWS::CloudFormation::Designer\":{\"d734fbb5-46b9-46e6-8905-e95d19b8e184\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"90\"},\"embeds\":[]},\"6356820a-2472-4818-b70f-acfca47ee542\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isassociatedwith\":[\"65fa704f-2abf-4c89-b3d4-7d9c54272872\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"210\"},\"embeds\":[],\"isconnectedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"]},\"65fa704f-2abf-4c89-b3d4-7d9c54272872\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"210\"},\"ismemberof\":[\"02d7e550-1606-4cab-854b-8e875e8781c4\"],\"embeds\":[]},\"02d7e550-1606-4cab-854b-8e875e8781c4\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isrelatedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"90\"},\"embeds\":[]}}}"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:45 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-ysaib55ylta6k","PathId":"lp-e76ssfhze5jyi"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProvisioningParameters
+ X-Amz-Date:
+ - 20180906T091445Z
+ X-Amz-Content-Sha256:
+ - b53b4781584343a9051fab2873ac2067d149ebfb033a51befd9f6885176e9490
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=0a79f8074f7c7df1280511b92d1518e804281aceb0f09bb0f53c1ee45af26a55
+ Content-Length:
+ - '106'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4baebe3e-b1b5-11e8-9da8-9341bec885c0
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '3335'
+ Date:
+ - Thu, 06 Sep 2018 09:14:44 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ConstraintSummaries":[{"Description":"Enforcing instance type to
+ be either t1.micro or m1.small","Type":"TEMPLATE"}],"ProvisioningArtifactParameters":[{"Description":"Name
+ of an existing EC2 KeyPair to enable SSH access to the instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"KeyName","ParameterType":"AWS::EC2::KeyPair::KeyName"},{"DefaultValue":"0.0.0.0/0","Description":"The
+ IP address range that can be used to SSH to the EC2 instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"SSHLocation","ParameterType":"String"},{"DefaultValue":"t2.small","Description":"WebServer
+ EC2 instance type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","cc2.8xlarge","cg1.4xlarge"]},"ParameterKey":"InstanceType","ParameterType":"String"}],"TagOptions":[],"UsageInstructions":[{"Type":"rules","Value":"{\"Rule1\":{\"Assertions\":[{\"Assert\":{\"Fn::Contains\":[[\"t1.micro\",\"m1.small\"],{\"Ref\":\"InstanceType\"}]},\"AssertDescription\":\"Instance
+ type should be either t1.micro or m1.small\"}]}}"},{"Type":"version","Value":"2010-09-09"},{"Type":"description","Value":"AWS
+ CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create
+ a load balanced, Auto Scaled sample website where the instances are locked
+ down to only accept traffic from the load balancer. This example creates an
+ Auto Scaling group behind a load balancer with a simple health check. The
+ web site is available on port 80, however, the instances can be configured
+ to listen on any port (8888 by default). **WARNING** This template creates
+ one or more Amazon EC2 instances and an Elastic Load Balancer. You will be
+ billed for the AWS resources used if you create a stack from this template."},{"Type":"metadata","Value":"{\"AWS::CloudFormation::Designer\":{\"d734fbb5-46b9-46e6-8905-e95d19b8e184\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"90\"},\"embeds\":[]},\"6356820a-2472-4818-b70f-acfca47ee542\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isassociatedwith\":[\"65fa704f-2abf-4c89-b3d4-7d9c54272872\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"210\"},\"embeds\":[],\"isconnectedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"]},\"65fa704f-2abf-4c89-b3d4-7d9c54272872\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"210\"},\"ismemberof\":[\"02d7e550-1606-4cab-854b-8e875e8781c4\"],\"embeds\":[]},\"02d7e550-1606-4cab-854b-8e875e8781c4\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isrelatedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"90\"},\"embeds\":[]}}}"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:46 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-nr3ua3nz3pgwq","PathId":"lp-rb5sy6f5vyrdk"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProvisioningParameters
+ X-Amz-Date:
+ - 20180906T091446Z
+ X-Amz-Content-Sha256:
+ - 63d0932ef4b8047df184335dc88921f694ea095f6644fc19b1b93f5a9776d14f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=aee705b914de449c1b50e3194f0c678ebf521dc53adabda59170a22f50b82c9b
+ Content-Length:
+ - '106'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4c898d5e-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '3047'
+ Date:
+ - Thu, 06 Sep 2018 09:14:47 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ConstraintSummaries":[],"ProvisioningArtifactParameters":[{"Description":"Name
+ of an existing EC2 KeyPair to enable SSH access to the instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"KeyName","ParameterType":"AWS::EC2::KeyPair::KeyName"},{"DefaultValue":"0.0.0.0/0","Description":"The
+ IP address range that can be used to SSH to the EC2 instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"SSHLocation","ParameterType":"String"},{"DefaultValue":"t2.small","Description":"WebServer
+ EC2 instance type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","cc2.8xlarge","cg1.4xlarge"]},"ParameterKey":"InstanceType","ParameterType":"String"}],"TagOptions":[],"UsageInstructions":[{"Type":"rules","Value":"{}"},{"Type":"version","Value":"2010-09-09"},{"Type":"description","Value":"AWS
+ CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create
+ a load balanced, Auto Scaled sample website where the instances are locked
+ down to only accept traffic from the load balancer. This example creates an
+ Auto Scaling group behind a load balancer with a simple health check. The
+ web site is available on port 80, however, the instances can be configured
+ to listen on any port (8888 by default). **WARNING** This template creates
+ one or more Amazon EC2 instances and an Elastic Load Balancer. You will be
+ billed for the AWS resources used if you create a stack from this template."},{"Type":"metadata","Value":"{\"AWS::CloudFormation::Designer\":{\"d734fbb5-46b9-46e6-8905-e95d19b8e184\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"90\"},\"embeds\":[]},\"6356820a-2472-4818-b70f-acfca47ee542\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isassociatedwith\":[\"65fa704f-2abf-4c89-b3d4-7d9c54272872\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"210\"},\"embeds\":[],\"isconnectedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"]},\"65fa704f-2abf-4c89-b3d4-7d9c54272872\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"210\"},\"ismemberof\":[\"02d7e550-1606-4cab-854b-8e875e8781c4\"],\"embeds\":[]},\"02d7e550-1606-4cab-854b-8e875e8781c4\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isrelatedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"90\"},\"embeds\":[]}}}"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:47 GMT
- request:
method: post
- uri: https://ec2.us-east-1.amazonaws.com/
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeImages&Filter.1.Name=image-id&Filter.1.Value.1=ami-b63769a1&Filter.1.Value.2=ami-6869aa05&Filter.1.Value.3=ami-271e7c31&Filter.1.Value.4=ami-0092b117&Filter.1.Value.5=ami-2051294a&Filter.1.Value.6=ami-0b33d91d&Filter.1.Value.7=ami-2a69aa47&Version=2016-11-15
+ string: '{"ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-ysaib55ylta6k","PathId":"lp-rb5sy6f5vyrdk"}'
headers:
Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
+ - application/x-amz-json-1.1
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProvisioningParameters
X-Amz-Date:
- - 20170926T075206Z
+ - 20180906T091448Z
X-Amz-Content-Sha256:
- - 58840047ff2109d92f4dd304ec0366f1afb19b1cd018bbeaa91dccd165f985d9
+ - 4c42ce70c37e003289d77366a37276134116ab19fde0d251805321a66cad1e54
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=56603ac208a65eec3b4320953fd3898d5258038a44d240a538c1a3fc1dbeae1d
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=e383cd7d6b55446835242ae0e48f36c959a21bb1a52a59ab83cc1c3c476007e1
Content-Length:
- - '273'
+ - '106'
Accept:
- "*/*"
response:
@@ -8328,233 +15151,366 @@ http_interactions:
code: 200
message: OK
headers:
+ X-Amzn-Requestid:
+ - 4d5cbc75-b1b5-11e8-9da8-9341bec885c0
Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '3047'
Date:
- - Tue, 26 Sep 2017 07:52:01 GMT
- Server:
- - AmazonEC2
+ - Thu, 06 Sep 2018 09:14:48 GMT
body:
encoding: UTF-8
- string: |-
-
-
- 41635aad-ef2a-469d-9953-66a25709ef4c
-
- -
- ami-0092b117
- 125523088429/Fedora-Cloud-Base-25-20161108.n.1.x86_64-us-east-1-HVM-gp2-0
- available
- 125523088429
- 2016-11-08T17:29:08.000Z
- true
- x86_64
- machine
- Fedora-Cloud-Base-25-20161108.n.1.x86_64-us-east-1-HVM-gp2-0
- Created from build Fedora-Cloud-Base-25-20161108.n.1.x86_64
- ebs
- /dev/sda1
-
-
-
- /dev/sda1
-
- snap-e159bf6a
- 6
- true
- gp2
- false
-
-
-
- hvm
- xen
-
- -
- ami-0b33d91d
- amazon/amzn-ami-hvm-2016.09.1.20170119-x86_64-gp2
- available
- 137112412989
- 2017-01-20T23:39:56.000Z
- true
- x86_64
- machine
- simple
- amazon
- amzn-ami-hvm-2016.09.1.20170119-x86_64-gp2
- Amazon Linux AMI 2016.09.1.20170119 x86_64 HVM GP2
- ebs
- /dev/xvda
-
-
-
- /dev/xvda
-
- snap-037f1f9e6c8ea4d65
- 8
- true
- gp2
- false
-
-
-
- hvm
- xen
- true
-
- -
- ami-2051294a
- 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
- available
- 309956199498
- 2015-11-12T21:06:58.000Z
- true
- x86_64
- machine
- simple
- RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
- Provided by Red Hat, Inc.
- ebs
- /dev/sda1
-
-
-
- /dev/sda1
-
- snap-ba40cac8
- 10
- true
- gp2
- false
-
-
-
- hvm
- xen
-
- -
- ami-271e7c31
- 900854079004/ansible-tower-5907e6c6-1b34-fc1c-d7f3-fbf29a09941f
- available
- 900854079004
- 2017-05-02T02:34:05.000Z
- true
- x86_64
- machine
- ansible-tower-5907e6c6-1b34-fc1c-d7f3-fbf29a09941f
- Ansible Tower 3.1.3 on CentOS 7 x86_64
- ebs
- /dev/sda1
-
-
-
- /dev/sda1
-
- snap-0f9a8e1fc22263c6c
- 8
- false
- standard
- false
-
-
-
- hvm
- xen
-
- -
- ami-2a69aa47
- amazon/amzn-ami-pv-2016.03.3.x86_64-ebs
- available
- 137112412989
- 2016-06-22T06:11:54.000Z
- true
- x86_64
- machine
- aki-919dcaf8
- amazon
- amzn-ami-pv-2016.03.3.x86_64-ebs
- Amazon Linux AMI 2016.03.3 x86_64 PV EBS
- ebs
- /dev/sda1
-
-
-
- /dev/sda1
-
- snap-4177dea1
- 8
- true
- standard
- false
-
-
-
- paravirtual
- xen
-
- -
- ami-6869aa05
- amazon/amzn-ami-hvm-2016.03.3.x86_64-gp2
- available
- 137112412989
- 2016-06-22T06:10:37.000Z
- true
- x86_64
- machine
- simple
- amazon
- amzn-ami-hvm-2016.03.3.x86_64-gp2
- Amazon Linux AMI 2016.03.3 x86_64 HVM GP2
- ebs
- /dev/xvda
-
-
-
- /dev/xvda
-
- snap-25dd2ac1
- 8
- true
- gp2
- false
-
-
-
- hvm
- xen
- true
-
- -
- ami-b63769a1
- 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Hourly2-GP2
- available
- 309956199498
- 2016-10-26T22:32:29.000Z
- true
- x86_64
- machine
- simple
- RHEL-7.3_HVM_GA-20161026-x86_64-1-Hourly2-GP2
- Provided by Red Hat, Inc.
- ebs
- /dev/sda1
-
-
-
- /dev/sda1
-
- snap-b9a222c1
- 10
- true
- gp2
- false
-
-
-
- hvm
- xen
-
-
-
+ string: '{"ConstraintSummaries":[],"ProvisioningArtifactParameters":[{"Description":"Name
+ of an existing EC2 KeyPair to enable SSH access to the instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"KeyName","ParameterType":"AWS::EC2::KeyPair::KeyName"},{"DefaultValue":"0.0.0.0/0","Description":"The
+ IP address range that can be used to SSH to the EC2 instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"SSHLocation","ParameterType":"String"},{"DefaultValue":"t2.small","Description":"WebServer
+ EC2 instance type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","cc2.8xlarge","cg1.4xlarge"]},"ParameterKey":"InstanceType","ParameterType":"String"}],"TagOptions":[],"UsageInstructions":[{"Type":"rules","Value":"{}"},{"Type":"version","Value":"2010-09-09"},{"Type":"description","Value":"AWS
+ CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create
+ a load balanced, Auto Scaled sample website where the instances are locked
+ down to only accept traffic from the load balancer. This example creates an
+ Auto Scaling group behind a load balancer with a simple health check. The
+ web site is available on port 80, however, the instances can be configured
+ to listen on any port (8888 by default). **WARNING** This template creates
+ one or more Amazon EC2 instances and an Elastic Load Balancer. You will be
+ billed for the AWS resources used if you create a stack from this template."},{"Type":"metadata","Value":"{\"AWS::CloudFormation::Designer\":{\"d734fbb5-46b9-46e6-8905-e95d19b8e184\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"90\"},\"embeds\":[]},\"6356820a-2472-4818-b70f-acfca47ee542\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isassociatedwith\":[\"65fa704f-2abf-4c89-b3d4-7d9c54272872\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"210\"},\"embeds\":[],\"isconnectedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"]},\"65fa704f-2abf-4c89-b3d4-7d9c54272872\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"210\"},\"ismemberof\":[\"02d7e550-1606-4cab-854b-8e875e8781c4\"],\"embeds\":[]},\"02d7e550-1606-4cab-854b-8e875e8781c4\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isrelatedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"90\"},\"embeds\":[]}}}"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:49 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"prod-cei2spnzu24lq"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProduct
+ X-Amz-Date:
+ - 20180906T091449Z
+ X-Amz-Content-Sha256:
+ - a16cc6dc39fa9f2fec97e060178316d62a0a72d2bb91b235c88e3999c3b6104a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=f82dc0a7715d65b102739f52ffdc4a4a42a55450a470f42145790dc91c2b1605
+ Content-Length:
+ - '27'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4e5a07b8-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '451'
+ Date:
+ - Thu, 06 Sep 2018 09:14:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ProductViewSummary":{"Distributor":"EmsRefreshSpecProductWithRulesVendor","HasDefaultPath":false,"Id":"prodview-as7h736moeyrc","Name":"EmsRefreshSpecProductWithRules","Owner":"EmsRefreshSpecProductWithRulesowner","ProductId":"prod-cei2spnzu24lq","ShortDescription":"EmsRefreshSpecProductWithRules
+ desc","Type":"CLOUD_FORMATION_TEMPLATE"},"ProvisioningArtifacts":[{"CreatedTime":1.536067386E9,"Description":"","Id":"pa-ybnrerfyrhm74","Name":"v1.1"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:50 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-cei2spnzu24lq"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.ListLaunchPaths
+ X-Amz-Date:
+ - 20180906T091450Z
+ X-Amz-Content-Sha256:
+ - b273b1e5587ded8717240279c2bfc2214363b0d3302ea09a13f17cf1428e4e8d
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=927f72eb0f81cd23745d7f6e49e3dd55ab04336b26245b65c2202c3a903c7d60
+ Content-Length:
+ - '34'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4ed3cb9e-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '120'
+ Date:
+ - Thu, 06 Sep 2018 09:14:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"LaunchPathSummaries":[{"ConstraintSummaries":[],"Id":"lp-jg4ob2tnq4pg2","Name":"EmsRefreshSpecPortfolio2","Tags":[]}]}'
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:07 GMT
+ recorded_at: Thu, 06 Sep 2018 09:14:51 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"ProductId":"prod-cei2spnzu24lq","ProvisioningArtifactId":"pa-ybnrerfyrhm74","PathId":"lp-jg4ob2tnq4pg2"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeProvisioningParameters
+ X-Amz-Date:
+ - 20180906T091451Z
+ X-Amz-Content-Sha256:
+ - fcb49f09b184760d692cb652698064c3f859d9a2e6722c657866824e589473e3
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=14d05957278f57acad28bb93679d57aae79264dd1c57ebbbba5a8f29612a9872
+ Content-Length:
+ - '106'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 4f700ba4-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '3781'
+ Date:
+ - Thu, 06 Sep 2018 09:14:52 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ConstraintSummaries":[],"ProvisioningArtifactParameters":[{"Description":"Name
+ of an existing EC2 KeyPair to enable SSH access to the instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"KeyName","ParameterType":"AWS::EC2::KeyPair::KeyName"},{"DefaultValue":"0.0.0.0/0","Description":"The
+ IP address range that can be used to SSH to the EC2 instances","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":[]},"ParameterKey":"SSHLocation","ParameterType":"String"},{"DefaultValue":"prod","Description":"Environment
+ type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["test","prod"]},"ParameterKey":"Environment","ParameterType":"String"},{"DefaultValue":"t2.small","Description":"WebServer
+ EC2 instance type","IsNoEcho":false,"ParameterConstraints":{"AllowedValues":["t1.micro","t2.nano","t2.micro","t2.small","t2.medium","t2.large","m1.small","m1.medium","m1.large","m1.xlarge","m2.xlarge","m2.2xlarge","m2.4xlarge","m3.medium","m3.large","m3.xlarge","m3.2xlarge","m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","c1.medium","c1.xlarge","c3.large","c3.xlarge","c3.2xlarge","c3.4xlarge","c3.8xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","g2.2xlarge","g2.8xlarge","r3.large","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","i2.xlarge","i2.2xlarge","i2.4xlarge","i2.8xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","hi1.4xlarge","hs1.8xlarge","cr1.8xlarge","cc2.8xlarge","cg1.4xlarge"]},"ParameterKey":"InstanceType","ParameterType":"String"}],"TagOptions":[],"UsageInstructions":[{"Type":"rules","Value":"{\"prodInstanceType\":{\"RuleCondition\":{\"Fn::Equals\":[{\"Ref\":\"Environment\"},\"prod\"]},\"Assertions\":[{\"Assert\":{\"Fn::Contains\":[[\"m1.large\"],{\"Ref\":\"InstanceType\"}]},\"AssertDescription\":\"For
+ the prod environment, the instance type must be m1.large\"}]},\"testInstanceType\":{\"RuleCondition\":{\"Fn::Equals\":[{\"Ref\":\"Environment\"},\"test\"]},\"Assertions\":[{\"Assert\":{\"Fn::Contains\":[[\"t1.micro\"],{\"Ref\":\"InstanceType\"}]},\"AssertDescription\":\"For
+ the test environment, the instance type must be t1.micro\"}]}}"},{"Type":"version","Value":"2010-09-09"},{"Type":"description","Value":"AWS
+ CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create
+ a load balanced, Auto Scaled sample website where the instances are locked
+ down to only accept traffic from the load balancer. This example creates an
+ Auto Scaling group behind a load balancer with a simple health check. The
+ web site is available on port 80, however, the instances can be configured
+ to listen on any port (8888 by default). **WARNING** This template creates
+ one or more Amazon EC2 instances and an Elastic Load Balancer. You will be
+ billed for the AWS resources used if you create a stack from this template."},{"Type":"metadata","Value":"{\"AWS::CloudFormation::Designer\":{\"d734fbb5-46b9-46e6-8905-e95d19b8e184\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"90\"},\"embeds\":[]},\"6356820a-2472-4818-b70f-acfca47ee542\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isassociatedwith\":[\"65fa704f-2abf-4c89-b3d4-7d9c54272872\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"210\"},\"embeds\":[],\"isconnectedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"]},\"65fa704f-2abf-4c89-b3d4-7d9c54272872\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"z\":\"1\",\"position\":{\"x\":\"60\",\"y\":\"210\"},\"ismemberof\":[\"02d7e550-1606-4cab-854b-8e875e8781c4\"],\"embeds\":[]},\"02d7e550-1606-4cab-854b-8e875e8781c4\":{\"size\":{\"width\":\"60\",\"height\":\"60\"},\"isrelatedto\":[\"d734fbb5-46b9-46e6-8905-e95d19b8e184\"],\"z\":\"1\",\"position\":{\"x\":\"180\",\"y\":\"90\"},\"embeds\":[]}}}"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:53 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: "{}"
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.ScanProvisionedProducts
+ X-Amz-Date:
+ - 20180906T091453Z
+ X-Amz-Content-Sha256:
+ - 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=469485e78b5531399f2a3ad784834349434620974765332fd2ddbed91bedf0c4
+ Content-Length:
+ - '2'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 506121e4-b1b5-11e8-9da8-9341bec885c0
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '1286'
+ Date:
+ - Thu, 06 Sep 2018 09:14:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ProvisionedProducts":[{"Arn":"arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstanceWithRules/pp-5pyltbgyzheqm","CreatedTime":1.536068318933E9,"Id":"pp-5pyltbgyzheqm","IdempotencyToken":"39489a07-f013-4e49-a061-11360db7664c","LastRecordId":"rec-li62bnn6bnza4","Name":"EmsRefreshSpecServiceInstanceWithRules","ProductId":"prod-cei2spnzu24lq","ProvisioningArtifactId":"pa-ybnrerfyrhm74","Status":"AVAILABLE","Type":"CFN_STACK"},{"Arn":"arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstanceV3/pp-u2tepcnttldko","CreatedTime":1.536221931782E9,"Id":"pp-u2tepcnttldko","IdempotencyToken":"c4de373d-fc6b-45ac-a7d0-760b6be25756","LastRecordId":"rec-coaoipufhru7e","Name":"EmsRefreshSpecServiceInstanceV3","ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-ysaib55ylta6k","Status":"AVAILABLE","Type":"CFN_STACK"},{"Arn":"arn:aws:servicecatalog:us-east-1:200278856672:stack/EmsRefreshSpecServiceInstance/pp-gato4drzgerpy","CreatedTime":1.536221954189E9,"Id":"pp-gato4drzgerpy","IdempotencyToken":"bd5ea4d0-de72-45be-a28b-2bfe9ae8e509","LastRecordId":"rec-txbigs6rk7vlc","Name":"EmsRefreshSpecServiceInstance","ProductId":"prod-h7p6ruq5qgrga","ProvisioningArtifactId":"pa-nr3ua3nz3pgwq","Status":"AVAILABLE","Type":"CFN_STACK"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:53 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"rec-li62bnn6bnza4"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeRecord
+ X-Amz-Date:
+ - 20180906T091453Z
+ X-Amz-Content-Sha256:
+ - 269fa7191c95b8738d1677a5db0688a5465cb5ca55436075ec8ba6868b87adc4
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=6f44c5f7b78caaa91f8fdcd8a183b3c43618c5b26224a121e9cdcb8653a1c190
+ Content-Length:
+ - '26'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 50ee208f-b1b5-11e8-9a75-4f45c550f235
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '1187'
+ Date:
+ - Thu, 06 Sep 2018 09:14:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"RecordDetail":{"CreatedTime":1.536068318938E9,"PathId":"lp-jg4ob2tnq4pg2","ProductId":"prod-cei2spnzu24lq","ProvisionedProductId":"pp-5pyltbgyzheqm","ProvisionedProductName":"EmsRefreshSpecServiceInstanceWithRules","ProvisionedProductType":"CFN_STACK","ProvisioningArtifactId":"pa-ybnrerfyrhm74","RecordErrors":[],"RecordId":"rec-li62bnn6bnza4","RecordTags":[{"Key":"aws:servicecatalog:productArn","Value":"arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq"},{"Key":"aws:servicecatalog:provisioningPrincipalArn","Value":"arn:aws:iam::200278856672:user/VCR"},{"Key":"aws:servicecatalog:portfolioArn","Value":"arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m"}],"RecordType":"PROVISION_PRODUCT","Status":"SUCCEEDED","UpdatedTime":1.536068491778E9},"RecordOutputs":[{"Description":"The
+ ARN of the launched Cloudformation Stack","OutputKey":"CloudformationStackARN","OutputValue":"arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35"},{"Description":"URL
+ of the website","OutputKey":"URL","OutputValue":"http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:54 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"rec-coaoipufhru7e"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeRecord
+ X-Amz-Date:
+ - 20180906T091454Z
+ X-Amz-Content-Sha256:
+ - 240507e055a8a624f379c3952038fd777a6fb2ddc5eb34db4e73a6a93ce671f0
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=05eb69b6c40b27188737b58235ce5b568225cfdfd8202b2d1d560eaa7e316bb0
+ Content-Length:
+ - '26'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 517b6c10-b1b5-11e8-84f5-f70b1bcdfd5b
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '1178'
+ Date:
+ - Thu, 06 Sep 2018 09:14:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"RecordDetail":{"CreatedTime":1.53622193179E9,"PathId":"lp-e76ssfhze5jyi","ProductId":"prod-h7p6ruq5qgrga","ProvisionedProductId":"pp-u2tepcnttldko","ProvisionedProductName":"EmsRefreshSpecServiceInstanceV3","ProvisionedProductType":"CFN_STACK","ProvisioningArtifactId":"pa-ysaib55ylta6k","RecordErrors":[],"RecordId":"rec-coaoipufhru7e","RecordTags":[{"Key":"aws:servicecatalog:productArn","Value":"arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga"},{"Key":"aws:servicecatalog:provisioningPrincipalArn","Value":"arn:aws:iam::200278856672:user/VCR"},{"Key":"aws:servicecatalog:portfolioArn","Value":"arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk"}],"RecordType":"PROVISION_PRODUCT","Status":"SUCCEEDED","UpdatedTime":1.53622212831E9},"RecordOutputs":[{"Description":"The
+ ARN of the launched Cloudformation Stack","OutputKey":"CloudformationStackARN","OutputValue":"arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2"},{"Description":"URL
+ of the website","OutputKey":"URL","OutputValue":"http://SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:55 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: '{"Id":"rec-txbigs6rk7vlc"}'
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.DescribeRecord
+ X-Amz-Date:
+ - 20180906T091455Z
+ X-Amz-Content-Sha256:
+ - 614827805279817d3c96f889905f890fc69ebb233aaa938bd073a7d5881aa2d0
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=34fb997dd69131556481f6bbe78030c9e6a1b454b50919d09141220065a82ae9
+ Content-Length:
+ - '26'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 521f9aca-b1b5-11e8-9da8-9341bec885c0
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '1177'
+ Date:
+ - Thu, 06 Sep 2018 09:14:56 GMT
+ body:
+ encoding: UTF-8
+ string: '{"RecordDetail":{"CreatedTime":1.536221954197E9,"PathId":"lp-rb5sy6f5vyrdk","ProductId":"prod-h7p6ruq5qgrga","ProvisionedProductId":"pp-gato4drzgerpy","ProvisionedProductName":"EmsRefreshSpecServiceInstance","ProvisionedProductType":"CFN_STACK","ProvisioningArtifactId":"pa-nr3ua3nz3pgwq","RecordErrors":[],"RecordId":"rec-txbigs6rk7vlc","RecordTags":[{"Key":"aws:servicecatalog:productArn","Value":"arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga"},{"Key":"aws:servicecatalog:provisioningPrincipalArn","Value":"arn:aws:iam::200278856672:user/VCR"},{"Key":"aws:servicecatalog:portfolioArn","Value":"arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m"}],"RecordType":"PROVISION_PRODUCT","Status":"SUCCEEDED","UpdatedTime":1.53622217445E9},"RecordOutputs":[{"Description":"The
+ ARN of the launched Cloudformation Stack","OutputKey":"CloudformationStackARN","OutputValue":"arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35"},{"Description":"URL
+ of the website","OutputKey":"URL","OutputValue":"http://SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com"}]}'
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:14:56 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -8567,14 +15523,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075211Z
+ - 20180906T091502Z
X-Amz-Content-Sha256:
- 1732d4b128d27cd99c04206dcfdf973ded4df03fd0ba4691763d13febf64384d
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bf0f894da813a02b2044de6f5fb6b43a06d0090a76778b4da016d7e0d79261be
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a30504e0ecc4c713397aa05bde15f422a2b546ee0b1149c722661ae14d6982bd
Content-Length:
- '45'
Accept:
@@ -8591,7 +15547,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:06 GMT
+ - Thu, 06 Sep 2018 09:15:02 GMT
Server:
- AmazonEC2
body:
@@ -8599,8 +15555,28 @@ http_interactions:
string: |-
- ee6060b9-21a7-4896-8346-b017a0b55a53
+ 43593c17-726e-400f-9938-7dcae0ee37ab
+ -
+ rtb-865664fb
+ vpc-ff49ff91
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+
+
+
+
+ -
+ Name
+ bronagh-test-routetable
+
+
+
-
rtb-d37690ab
vpc-8cf117f5
@@ -8680,8 +15656,8 @@ http_interactions:
-
- rtb-27b23842
- vpc-a06de3c5
+ rtb-04c7f579
+ vpc-36cad24e
-
10.0.0.0/16
@@ -8689,17 +15665,11 @@ http_interactions:
active
CreateRouteTable
- -
- 0.0.0.0/0
- igw-1e943f7b
- active
- CreateRoute
-
-
- rtbassoc-be6501db
- rtb-27b23842
+ rtbassoc-355ed949
+ rtb-04c7f579
true
@@ -8778,6 +15748,12 @@ http_interactions:
rtb-d86c6abc
true
+ -
+ rtbassoc-ca4056b5
+ rtb-d86c6abc
+ subnet-e88815d5
+ false
+
@@ -8800,6 +15776,12 @@ http_interactions:
+ -
+ rtbassoc-862f74f9
+ rtb-f749ff99
+ subnet-5f5a9670
+ false
+
-
rtbassoc-cef0c9b4
rtb-f749ff99
@@ -8860,7 +15842,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:12 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:03 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -8873,14 +15855,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075212Z
+ - 20180906T091503Z
X-Amz-Content-Sha256:
- d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9b00852f69ea728535a60d5e5ae26be6c4de8682ff352fd91387a074a656c775
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a40f41686daea218ae65d47e7a6f82c46dfe2d6d9006dad0b05659741903562
Content-Length:
- '38'
Accept:
@@ -8897,7 +15879,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:07 GMT
+ - Thu, 06 Sep 2018 09:15:03 GMT
Server:
- AmazonEC2
body:
@@ -8905,31 +15887,8 @@ http_interactions:
string: |-
- 4fed1a9b-d140-491c-9662-2aedab1233d3
+ 5c7db0fa-c440-44d7-9480-0dee430f57c0
- -
- vpc-a06de3c5
- available
- 10.0.0.0/16
-
-
-
- 10.0.0.0/16
- vpc-cidr-assoc-57b3403e
-
- associated
-
-
-
- dopt-f24ff99c
-
- -
- Name
- DemoVPC
-
-
- default
- false
-
-
vpc-ff49ff91
available
@@ -8992,6 +15951,29 @@ http_interactions:
default
false
+ -
+ vpc-36cad24e
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-1c435976
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ Bronagh-network
+
+
+ default
+ false
+
-
vpc-aee2a6ca
available
@@ -9055,7 +16037,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:13 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:05 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -9068,14 +16050,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075213Z
+ - 20180906T091505Z
X-Amz-Content-Sha256:
- 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=91cf7f9d791cb3d8ab97b89f459db63fd160148850cf3ae71a5e0f4f34d28e36
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f3acaf758f0888a90f282bbb0b390fc39fefc708b441adb40ae561ab994a9261
Content-Length:
- '41'
Accept:
@@ -9092,7 +16074,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:08 GMT
+ - Thu, 06 Sep 2018 09:15:05 GMT
Server:
- AmazonEC2
body:
@@ -9100,7 +16082,7 @@ http_interactions:
string: |-
- bd50b747-b6f6-4ef1-9237-274730a53b2a
+ a9d7b0d7-4b84-4d74-abff-66acc3667bac
-
subnet-16c70477
@@ -9108,7 +16090,7 @@ http_interactions:
vpc-ff49ff91
10.0.1.0/24
- 248
+ 243
us-east-1d
false
false
@@ -9126,19 +16108,37 @@ http_interactions:
vpc-aee2a6ca
172.30.3.0/24
- 251
+ 250
us-east-1d
false
true
false
+ -
+ subnet-5f5a9670
+ available
+ vpc-ff49ff91
+ 10.0.8.0/24
+
+ 246
+ us-east-1e
+ false
+ false
+
+
-
+ Name
+ LadasTest
+
+
+ false
+
-
subnet-2190b144
available
vpc-8cf117f5
10.2.0.0/24
- 248
+ 249
us-east-1c
false
false
@@ -9176,7 +16176,7 @@ http_interactions:
vpc-c3d2f1a5
10.0.0.0/24
- 248
+ 247
us-east-1c
false
false
@@ -9210,7 +16210,7 @@ http_interactions:
vpc-aee2a6ca
172.30.1.0/24
- 251
+ 250
us-east-1b
false
true
@@ -9228,31 +16228,13 @@ http_interactions:
true
false
- -
- subnet-ac904787
- available
- vpc-a06de3c5
- 10.0.1.0/24
-
- 240
- us-east-1e
- false
- false
-
-
-
- Name
- subnet2
-
-
- false
-
-
subnet-e88815d5
available
vpc-aee2a6ca
172.30.0.0/24
- 246
+ 247
us-east-1a
false
true
@@ -9264,7 +16246,7 @@ http_interactions:
vpc-ff49ff91
10.0.0.0/24
- 237
+ 241
us-east-1e
false
true
@@ -9276,28 +16258,10 @@ http_interactions:
false
- -
- subnet-1852bb33
- available
- vpc-a06de3c5
- 10.0.0.0/24
-
- 250
- us-east-1e
- false
- true
-
-
-
- Name
- Subnet1
-
-
- false
-
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:14 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:06 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -9310,14 +16274,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075214Z
+ - 20180906T091506Z
X-Amz-Content-Sha256:
- 398587829763af2624ad0faa257a51949217b85bb2957c3948946c38ab0fddac
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=142324d4b0036cf51a7538aa78d303ad331eb30ddd811393b61e1f2372dd6994
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a892b9aa055867c81b5d5441a8ca1d0ff618c95f885ccba8e1da795c80cc8f85
Content-Length:
- '48'
Accept:
@@ -9334,7 +16298,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:08 GMT
+ - Thu, 06 Sep 2018 09:15:05 GMT
Server:
- AmazonEC2
body:
@@ -9342,7 +16306,7 @@ http_interactions:
string: |-
- 3dc2e248-ecc4-469b-8da7-ba5ba1e2d58b
+ b6ae297d-c833-4046-8c12-95954b788f06
-
200278856672
@@ -10446,28 +17410,54 @@ http_interactions:
-
200278856672
- sg-000ff571
- launch-wizard-46
- launch-wizard-46 created 2017-06-16T16:53:45.929-04:00
- vpc-a06de3c5
+ sg-1b8a728d
+ launch-wizard-13
+ launch-wizard-13 created 2017-10-09T15:03:56.991+01:00
-
tcp
- 80
- 80
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-15d81e83
+ Ubuntu Server 14-04 LTS-14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
-
- ::/0
+ 0.0.0.0/0
-
+
+
+
+
+
+ -
+ 200278856672
+ sg-fde6206b
+ Ubuntu Server 14-04 LTS -HVM--14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS (HVM) version 14.04 LTS 20170803 provided by Canonical Group Limited
+
-
tcp
22
@@ -10481,27 +17471,56 @@ http_interactions:
+
+
+
+ -
+ 200278856672
+ sg-f448eb62
+ launch-wizard-14
+ launch-wizard-14 created 2018-03-12T12:23:52.936+01:00
+
-
tcp
- 443
- 443
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
-
- ::/0
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
-
+
+
+
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -10511,25 +17530,60 @@ http_interactions:
-
+
+
-
- Name
- Ansible tower
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
-
200278856672
- sg-00e3537c
- launch-wizard-27
- launch-wizard-27 created 2017-01-26T13:23:15.837-05:00
- vpc-a06de3c5
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
+ Enable SSH access and HTTP access on the inbound port
-
tcp
- 3389
- 3389
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
@@ -10540,9 +17594,59 @@ http_interactions:
-
+
+
-
- -1
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-gato4drzgerpy
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+
+
+ -
+ 200278856672
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
@@ -10552,7 +17656,34 @@ http_interactions:
-
+
+
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-u2tepcnttldko
+
+
-
200278856672
@@ -10590,10 +17721,45 @@ http_interactions:
-
200278856672
- sg-03ff5a67
- launch-wizard-5
- launch-wizard-5 created 2015-01-29T14:42:40.334-05:00
- vpc-a06de3c5
+ sg-041d424d
+ launch-wizard-36
+ launch-wizard-36 created 2018-04-26T11:02:24.267+01:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-06ed824c
+ ladas_test_jul25_3
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10623,6 +17789,58 @@ http_interactions:
+ -
+ 200278856672
+ sg-08314440
+ launch-wizard-38
+ launch-wizard-38 created 2018-05-24T15:43:41.371+02:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+ -
+ icmp
+ -1
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
-
200278856672
sg-0d2cd677
@@ -10660,33 +17878,52 @@ http_interactions:
-
200278856672
- sg-10362275
- DemoSecurityGroup
- for AWS Demos
- vpc-a06de3c5
+ sg-14ca085e
+ ladas_test5
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
22
22
-
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
+
+
-
- tcp
- 3306
- 3306
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-1e2cf271
+ default
+ default VPC security group
+ vpc-ff49ff91
+
+
-
+ -1
-
200278856672
- sg-10362275
+ sg-1e2cf271
@@ -10707,19 +17944,48 @@ http_interactions:
-
+
+ -
+ 200278856672
+ sg-2899b45d
+ launch-wizard-16
+ launch-wizard-16 created 2017-12-13T10:04:20.108-05:00
+ vpc-ff49ff91
+
-
- Name
- DemoSecGroup-Disallowed
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
-
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
-
200278856672
- sg-1da7d07a
- launch-wizard-9
- launch-wizard-9 created 2015-08-24T14:02:53.560-04:00
- vpc-a06de3c5
+ sg-42071e09
+ ladas_test_jul10
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10751,24 +18017,11 @@ http_interactions:
-
200278856672
- sg-1e2cf271
- default
- default VPC security group
+ sg-43cb9c27
+ launch-wizard-7
+ launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
vpc-ff49ff91
-
-
-
- -1
-
-
-
- 200278856672
- sg-1e2cf271
-
-
-
-
-
-
-
+
-
-1
@@ -10785,10 +18038,10 @@ http_interactions:
-
200278856672
- sg-1facdb78
- launch-wizard-11
- launch-wizard-11 created 2015-08-24T14:22:34.811-04:00
- vpc-a06de3c5
+ sg-45ea7f37
+ launch-wizard-52
+ launch-wizard-52 created 2017-10-19T17:55:15.762-04:00
+ vpc-8cf117f5
-
tcp
@@ -10820,20 +18073,21 @@ http_interactions:
-
200278856672
- sg-24362241
- default
- default VPC security group
- vpc-a06de3c5
+ sg-47168f0d
+ ladas_test_jul24_3
+ ladas_test_changed
+ vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-24362241
+ 0.0.0.0/0
-
-
+
@@ -10854,10 +18108,10 @@ http_interactions:
-
200278856672
- sg-2613e957
- launch-wizard-45
- launch-wizard-45 created 2017-06-16T16:44:29.050-04:00
- vpc-a06de3c5
+ sg-4a6d4b38
+ launch-wizard-56
+ launch-wizard-56 created 2017-10-31T13:12:17.619-04:00
+ vpc-8cf117f5
-
tcp
@@ -10872,21 +18126,38 @@ http_interactions:
+
+
-
- tcp
- 443
- 443
+ -1
-
0.0.0.0/0
-
+
+
+
+
+
+ -
+ 200278856672
+ sg-4cc30d32
+ default
+ default VPC security group
+ vpc-8cf117f5
+
+
-
+ -1
+
-
- ::/0
+ 200278856672
+ sg-4cc30d32
-
+
+
+
@@ -10906,10 +18177,10 @@ http_interactions:
-
200278856672
- sg-38511448
- launch-wizard-47
- launch-wizard-47 created 2017-08-29T15:13:44.025-04:00
- vpc-a06de3c5
+ sg-4d0ec507
+ ladas_test
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10941,10 +18212,10 @@ http_interactions:
-
200278856672
- sg-398cb044
- launch-wizard-25
- launch-wizard-25 created 2016-12-20T17:45:43.702-05:00
- vpc-a06de3c5
+ sg-5096f91a
+ ladas_test_jul25_2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -10976,15 +18247,15 @@ http_interactions:
-
200278856672
- sg-3ecff343
- launch-wizard-23
- launch-wizard-23 created 2016-12-20T16:19:45.863-05:00
- vpc-a06de3c5
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ Public ELB Security Group with HTTP access on port 80 from the internet
+ vpc-c3d2f1a5
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -10997,7 +18268,9 @@ http_interactions:
-
- -1
+ tcp
+ 80
+ 80
-
@@ -11008,13 +18281,27 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ aws:cloudformation:logical-id
+ PublicLoadBalancerSecurityGroup
+
+
-
200278856672
- sg-434f323f
- launch-wizard-36
- launch-wizard-36 created 2017-02-10T16:43:58.127-05:00
- vpc-a06de3c5
+ sg-5b83ec11
+ ladas_test_jul25_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -11046,14 +18333,15 @@ http_interactions:
-
200278856672
- sg-43cb9c27
- launch-wizard-7
- launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
- vpc-ff49ff91
-
-
+ sg-5c49922a
+ launch-wizard-26
+ launch-wizard-26 created 2018-03-06T13:29:21.183-05:00
+ vpc-8cf117f5
+
-
- -1
+ tcp
+ 22
+ 22
-
@@ -11063,27 +18351,6 @@ http_interactions:
-
-
- -
- 200278856672
- sg-4cc30d32
- default
- default VPC security group
- vpc-8cf117f5
-
-
-
- -1
-
-
-
- 200278856672
- sg-4cc30d32
-
-
-
-
-
-
-
@@ -11101,15 +18368,15 @@ http_interactions:
-
200278856672
- sg-56a5d231
- launch-wizard-10
- launch-wizard-10 created 2015-08-24T14:06:10.925-04:00
- vpc-a06de3c5
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+ ladas_ansible_test_1_sc_description
+ vpc-ff49ff91
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -11119,10 +18386,10 @@ http_interactions:
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -11132,19 +18399,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- Public ELB Security Group with HTTP access on port 80 from the internet
- vpc-c3d2f1a5
-
-
tcp
- 80
- 80
+ 443
+ 443
-
@@ -11157,9 +18415,7 @@ http_interactions:
-
- tcp
- 80
- 80
+ -1
-
@@ -11170,32 +18426,18 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- aws:cloudformation:logical-id
- PublicLoadBalancerSecurityGroup
-
-
-
200278856672
- sg-6106b61c
- launch-wizard-16
- launch-wizard-16 created 2016-11-15T16:12:37.114+01:00
- vpc-a06de3c5
+ sg-67541b15
+ smartstate
+ Security group for smartstate Agent
+ vpc-aee2a6ca
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -11205,10 +18447,10 @@ http_interactions:
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -11218,19 +18460,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-65d59519
- launch-wizard-37
- launch-wizard-37 created 2017-02-14T17:18:15.823+01:00
- vpc-a06de3c5
-
-
tcp
- 22
- 22
+ 443
+ 443
-
@@ -11257,10 +18490,10 @@ http_interactions:
-
200278856672
- sg-67af5d03
- launch-wizard-2
- launch-wizard-2 created 2014-12-16T11:24:47.439-05:00
- vpc-a06de3c5
+ sg-68c28c1e
+ simaishi
+ launch-wizard-36 created 2018-03-21T17:44:48.938-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -11275,6 +18508,23 @@ http_interactions:
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
-
@@ -11362,10 +18612,10 @@ http_interactions:
-
200278856672
- sg-73f74d0e
- launch-wizard-17
- launch-wizard-17 created 2016-11-17T11:08:15.164-05:00
- vpc-a06de3c5
+ sg-75614707
+ launch-wizard-57
+ launch-wizard-57 created 2017-10-31T13:14:14.391-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -11467,9 +18717,9 @@ http_interactions:
-
200278856672
- sg-7c69ed05
- launch-wizard-12
- launch-wizard-12 created 2016-01-06T08:47:42.418-05:00
+ sg-79f9e633
+ ladas_test2
+ ladas_test_changed
vpc-ff49ff91
-
@@ -11502,10 +18752,10 @@ http_interactions:
-
200278856672
- sg-7ec11602
- launch-wizard-26
- launch-wizard-26 created 2017-01-17T15:47:44.393-05:00
- vpc-a06de3c5
+ sg-7b534930
+ ladas_test_jul11
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -11537,9 +18787,9 @@ http_interactions:
-
200278856672
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-7c69ed05
+ launch-wizard-12
+ launch-wizard-12 created 2016-01-06T08:47:42.418-05:00
vpc-ff49ff91
-
@@ -11555,10 +18805,32 @@ http_interactions:
+
+
-
- icmp
- -1
- -1
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-7f892508
+ launch-wizard-18
+ launch-wizard-18 created 2018-02-01T14:12:05.486-05:00
+ vpc-c3d2f1a5
+
+
-
+ tcp
+ 22
+ 22
-
@@ -11585,10 +18857,10 @@ http_interactions:
-
200278856672
- sg-82c99dfe
- launch-wizard-38
- launch-wizard-38 created 2017-02-16T11:27:56.384-05:00
- vpc-a06de3c5
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+ EmsRefreshSpec-SecurityGroup-VPC
+ vpc-ff49ff91
-
tcp
@@ -11603,6 +18875,19 @@ http_interactions:
+ -
+ icmp
+ -1
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -11620,60 +18905,57 @@ http_interactions:
-
200278856672
- sg-86e19cf8
- launch-wizard-40
- launch-wizard-40 created 2017-05-16T14:13:09.595-04:00
- vpc-a06de3c5
+ sg-8280c0f5
+ launch-wizard-22
+ launch-wizard-22 created 2018-02-14T15:09:29.980+01:00
+ vpc-ff49ff91
-
- udp
- 9090
- 9090
+ tcp
+ 22
+ 22
-
0.0.0.0/0
-
- -
- ::/0
-
-
+
+
+
-
- tcp
- 22
- 22
+ -1
-
0.0.0.0/0
-
- -
- ::/0
-
-
+
+
+
+ -
+ 200278856672
+ sg-8b4c9dc2
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-1
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
+
-
tcp
- 9090
- 9090
+ 22
+ 22
-
0.0.0.0/0
-
- -
- ::/0
-
-
+
@@ -11693,10 +18975,10 @@ http_interactions:
-
200278856672
- sg-87838bf9
- launch-wizard-42
- launch-wizard-42 created 2017-06-05T17:22:54.552-04:00
- vpc-a06de3c5
+ sg-8dff68ff
+ launch-wizard-53
+ launch-wizard-53 created 2017-10-19T23:07:38.280-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -11887,21 +19169,20 @@ http_interactions:
-
200278856672
- sg-999c6efd
- mk_test
- MK
- vpc-a06de3c5
+ sg-a493cddd
+ default
+ default VPC security group
+ vpc-aee2a6ca
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 173.3.23.48/32
+ 200278856672
+ sg-a493cddd
-
+
+
@@ -11922,10 +19203,10 @@ http_interactions:
-
200278856672
- sg-9e1be1ef
- launch-wizard-44
- launch-wizard-44 created 2017-06-16T16:29:17.135-04:00
- vpc-a06de3c5
+ sg-a5b994d0
+ launch-wizard-14
+ launch-wizard-14 created 2017-12-13T09:42:39.062-05:00
+ vpc-ff49ff91
-
tcp
@@ -11957,10 +19238,10 @@ http_interactions:
-
200278856672
- sg-9ed82afa
- launch-wizard-4
- launch-wizard-4 created 2014-12-16T16:49:57.781-05:00
- vpc-a06de3c5
+ sg-a66eedd0
+ launch-wizard-27
+ launch-wizard-27 created 2018-03-12T14:47:33.616+01:00
+ vpc-aee2a6ca
-
tcp
@@ -11969,7 +19250,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -11992,10 +19273,10 @@ http_interactions:
-
200278856672
- sg-9fe1a5e1
- launch-wizard-41
- launch-wizard-41 created 2017-05-18T11:06:38.403-04:00
- vpc-a06de3c5
+ sg-a84495e1
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
tcp
@@ -12027,11 +19308,30 @@ http_interactions:
-
200278856672
- sg-9ff8ace3
- launch-wizard-39
- launch-wizard-39 created 2017-02-16T11:40:34.781-05:00
- vpc-a06de3c5
+ sg-a86bf7de
+ stomsa
+ stomsa
+ vpc-aee2a6ca
+
-
+ tcp
+ 8000
+ 8000
+
+
+
-
+ 0.0.0.0/0
+ SimpleHTTPServer
+
+
+
+ -
+ ::/0
+ SimpleHTTPServer
+
+
+
+
-
tcp
22
@@ -12039,7 +19339,12 @@ http_interactions:
-
- 0.0.0.0/0
+ 213.175.37.10/32
+ SSH office
+
+ -
+ 93.153.77.219/32
+ SSH VPN
@@ -12059,23 +19364,30 @@ http_interactions:
+
+ -
+ Name
+ stomsa
+
+
-
200278856672
- sg-a493cddd
- default
- default VPC security group
- vpc-aee2a6ca
+ sg-ac6543de
+ launch-wizard-55
+ launch-wizard-55 created 2017-10-31T13:11:15.686-04:00
+ vpc-c3d2f1a5
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-a493cddd
+ 0.0.0.0/0
-
-
+
@@ -12096,10 +19408,10 @@ http_interactions:
-
200278856672
- sg-a6122edb
- launch-wizard-18
- launch-wizard-18 created 2016-12-20T14:51:03.563-05:00
- vpc-a06de3c5
+ sg-b00affc6
+ launch-wizard-23
+ launch-wizard-23 created 2018-02-28T16:08:13.133+00:00
+ vpc-ff49ff91
-
tcp
@@ -12131,10 +19443,10 @@ http_interactions:
-
200278856672
- sg-b5d624d1
- launch-wizard-3
- launch-wizard-3 created 2014-12-16T16:24:52.047-05:00
- vpc-a06de3c5
+ sg-b267fef8
+ ladas_test_jul24_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -12143,7 +19455,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -12166,15 +19478,15 @@ http_interactions:
-
200278856672
- sg-c00e19a5
- DemoSecGroup-Allowed
- 80 and 443
- vpc-a06de3c5
+ sg-b83144f0
+ launch-wizard-37
+ launch-wizard-37 created 2018-05-24T15:39:49.093+02:00
+ vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -12184,10 +19496,32 @@ http_interactions:
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+ quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ vpc-ff49ff91
+
-
tcp
- 443
- 443
+ 80
+ 80
-
@@ -12214,10 +19548,10 @@ http_interactions:
-
200278856672
- sg-cd64e2b4
- launch-wizard-14
- launch-wizard-14 created 2016-01-06T18:06:11.447-05:00
- vpc-a06de3c5
+ sg-dbed8291
+ ladas_test_jul25_4
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -12249,10 +19583,10 @@ http_interactions:
-
200278856672
- sg-cf2dd7be
- launch-wizard-43
- launch-wizard-43 created 2017-06-16T16:18:58.509-04:00
- vpc-a06de3c5
+ sg-dfe6c6a6
+ launch-wizard-13
+ launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
+ vpc-ff49ff91
-
tcp
@@ -12267,6 +19601,19 @@ http_interactions:
+ -
+ udp
+ 19132
+ 19132
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -12284,10 +19631,10 @@ http_interactions:
-
200278856672
- sg-d2fb5eb6
- launch-wizard-6
- launch-wizard-6 created 2015-01-29T14:59:03.773-05:00
- vpc-a06de3c5
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1801_01 provided by Centos.org
+ vpc-ff49ff91
-
tcp
@@ -12319,15 +19666,15 @@ http_interactions:
-
200278856672
- sg-da58eaa6
- quick-create-2-for-lb-2
- quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ sg-ee6ec399
+ launch-wizard-17
+ launch-wizard-17 created 2018-02-01T11:27:33.447-05:00
vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -12354,21 +19701,20 @@ http_interactions:
-
200278856672
- sg-dadae6a7
- launch-wizard-22
- launch-wizard-22 created 2016-12-20T16:03:30.798-05:00
- vpc-a06de3c5
+ sg-f318d184
+ default
+ default VPC security group
+ vpc-36cad24e
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-f318d184
-
+
+
@@ -12389,11 +19735,24 @@ http_interactions:
-
200278856672
- sg-dfe6c6a6
- launch-wizard-13
- launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
- vpc-ff49ff91
+ sg-f84e7d8d
+ simaishi
+ simaishi
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -12408,9 +19767,9 @@ http_interactions:
-
- udp
- 19132
- 19132
+ tcp
+ 443
+ 443
-
@@ -12437,10 +19796,10 @@ http_interactions:
-
200278856672
- sg-f0d92a94
- launch-wizard-1
- launch-wizard-1 created 2014-12-15T17:32:09.146-05:00
- vpc-a06de3c5
+ sg-ff845f89
+ launch-wizard-25
+ launch-wizard-25 created 2018-03-06T11:33:01.209-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -12473,7 +19832,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:16 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:07 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -12486,14 +19845,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075216Z
+ - 20180906T091507Z
X-Amz-Content-Sha256:
- 19ba5dc918b1e927d0c1a179e1bed2a393fa8987b6fbc66e756823d414115566
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f3e71d4a60074d0b5b160bff3169871f60f88338386d3c024a885c429debe575
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=317beb1754460801e661af80b334f586af01bcfd8beb98fdf65b6c3a788babed
Content-Length:
- '51'
Accept:
@@ -12510,7 +19869,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:10 GMT
+ - Thu, 06 Sep 2018 09:15:07 GMT
Server:
- AmazonEC2
body:
@@ -12518,39 +19877,39 @@ http_interactions:
string: |-
- 4d486b81-37b5-42c0-af38-8f9a489c6ef5
+ 51033c77-1f3c-4e1e-bb17-5c63d5930695
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-24362241
- default
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-9413e1b8
- i-035fa3affa815d81d
+ eni-attach-e6616b3e
+ i-02007c8f386e74470
200278856672
0
attached
- 2017-03-21T19:39:52.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 10.0.1.230
+ 10.0.1.179
true
@@ -12558,36 +19917,28 @@ http_interactions:
interface
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
+ eni-83fc5323
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+ ladastest2
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ available
+ 12:b7:bb:c9:a9:a8
+ 10.0.0.249
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-45f9a86f
- i-0999c6f9b18ead5fc
- 200278856672
- 0
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- 10.0.1.78
+ 10.0.0.249
true
@@ -12595,75 +19946,87 @@ http_interactions:
interface
-
- eni-6e7aa46e
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
- us-east-1a
+ us-east-1b
200278856672
false
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-4451b1a7
- i-0951b95d6db76519d
+ eni-attach-d57a046c
+ i-0b2631823a0fdfc76
200278856672
0
attached
- 2017-07-26T15:15:29.000Z
+ 2018-07-25T10:56:16.000Z
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+ true
+
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+ true
+
interface
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-65d59519
- launch-wizard-37
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-2d92e207
- i-08c033357b433ea2c
+ eni-attach-0dbdb6d5
+ i-0510954911e45949b
200278856672
0
attached
- 2017-02-14T16:18:28.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 10.0.1.155
+ 10.0.1.66
true
@@ -12671,48 +20034,54 @@ http_interactions:
interface
-
- eni-b6f161a2
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-179d9880
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 02:18:bf:52:9a:3e
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 12:7e:c1:7a:94:48
+ 10.0.0.129
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-734efc0f
+ quick-create-2-lbtest3
+
+ -
+ sg-0d2cd677
+ quick-create-1
+
+ -
+ sg-da58eaa6
+ quick-create-2-for-lb-2
- eni-attach-29495eb0
+ eni-attach-03212c56c09ef849f
amazon-elb
1
attached
- 2017-03-28T13:37:48.000Z
+ 2018-06-02T21:08:55.000Z
false
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
+ 52.6.7.19
+
amazon-elb
true
-
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 10.0.0.129
true
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
+ 52.6.7.19
+
amazon-elb
true
@@ -12722,46 +20091,48 @@ http_interactions:
interface
-
- eni-5d3479f7
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB
+ eni-5c2a35df
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 0e:ad:8f:b5:e7:56
- 10.0.1.191
+ 02:1e:4f:13:23:60
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-00664517cacff8d75
+ eni-attach-02e23f87add8aad1b
amazon-elb
1
attached
- 2017-09-06T21:09:18.000Z
+ 2018-05-25T12:03:25.000Z
false
- 52.20.26.89
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.1.191
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
- 52.20.26.89
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
@@ -12771,36 +20142,36 @@ http_interactions:
interface
-
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-2217e50e
- i-0c1542ba946875280
+ eni-attach-3a325e3c
+ i-0a7aebaf459f1f9e7
200278856672
0
attached
- 2017-03-21T19:41:22.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 10.0.1.90
+ 10.0.1.19
true
@@ -12808,156 +20179,122 @@ http_interactions:
interface
-
- eni-3e17562a
+ eni-47ff1251
subnet-de2363bb
vpc-c3d2f1a5
us-east-1c
-
+ Primary network interface
200278856672
false
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-3a6592a2
- i-0150ac66c83e0eae8
+ eni-attach-5fcc62c4
+ i-0274ada368eb4da36
200278856672
0
attached
- 2017-05-02T19:39:36.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
interface
-
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-88392ea7
- i-091fe7ccd76ddac3b
+ eni-attach-828d7a27
+ i-002ca40492fff0e67
200278856672
0
attached
- 2017-05-16T18:19:21.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
-
- 10.0.1.239
+ 10.0.8.133
true
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
interface
-
- eni-5dcd5d49
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-3af276f7
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ ELB EmSRefreshSpecVPCELB2
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 02:0f:73:10:12:3e
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 12:3b:28:53:d5:b2
+ 10.0.0.219
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-0d2cd677
+ quick-create-1
- eni-attach-57495ece
+ eni-attach-037d7ab06aa17cf3a
amazon-elb
1
attached
- 2017-03-28T13:37:12.000Z
+ 2018-02-04T01:58:12.000Z
false
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 52.86.128.239
+
amazon-elb
true
-
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 10.0.0.219
true
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 52.86.128.239
+
amazon-elb
true
@@ -12967,94 +20304,85 @@ http_interactions:
interface
-
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
Primary network interface
200278856672
false
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-05fac66f
- i-8b5739f2
+ eni-attach-3be67cff
+ i-0125949f65c1e5528
200278856672
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-03-06T18:29:43.000Z
true
- 54.208.119.197
+ 52.3.221.140
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+ amazon
true
-
- 10.0.0.254
+ 10.2.0.152
true
- 54.208.119.197
+ 52.3.221.140
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+ amazon
true
- -
- 10.0.0.208
-
- false
-
interface
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-000ff571
- launch-wizard-46
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-4735d966
- i-03d706b95aa8b12ce
+ eni-attach-87883f81
+ i-0a67c549558c9c392
200278856672
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.0.1.229
+ 10.0.1.165
true
@@ -13062,104 +20390,117 @@ http_interactions:
interface
-
- eni-2132bad2
- subnet-f849ff96
+ eni-1eec3adb
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ELB lb-test3
+ us-east-1d
+ test-network-port
200278856672
- 210368014644
- true
- in-use
- 12:65:97:2b:af:ce
- 10.0.0.51
+ AIDAI37PIOA5B6VMIJRUU
+ false
+ available
+ 0e:49:87:ef:7f:c2
+ 10.0.1.129
true
-
- sg-734efc0f
- quick-create-2-lbtest3
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
-
- sg-0d2cd677
- quick-create-1
+ 10.0.1.129
+ true
+
+
+ interface
+
+ -
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ us-east-1d
+ Primary network interface
+ 200278856672
+ false
+ in-use
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
-
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-a86bf7de
+ stomsa
- eni-attach-c593d9ee
- amazon-elb
- 1
+ eni-attach-2bb4992d
+ i-0d0cbf4c0a5e4f8fc
+ 200278856672
+ 0
attached
- 2017-01-28T12:33:16.000Z
- false
+ 2018-03-12T13:48:51.000Z
+ true
-
- 54.88.156.69
-
- amazon-elb
- true
-
-
- 10.0.0.51
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- 54.88.156.69
-
- amazon-elb
- true
-
interface
-
- eni-f2397458
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB2
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+
200278856672
- 210368014644
- true
+ false
in-use
- 0e:41:ba:7f:58:a6
- 10.0.1.146
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
-
- sg-0d2cd677
- quick-create-1
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
- eni-attach-05098d3c56e0d49a6
- amazon-elb
- 1
+ eni-attach-f41e8d30
+ i-0828f09c91ab89a97
+ 200278856672
+ 0
attached
- 2017-09-06T21:09:17.000Z
- false
+ 2018-03-01T21:31:41.000Z
+ true
- 52.207.128.155
-
- amazon-elb
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
-
- 10.0.1.146
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
- 52.207.128.155
-
- amazon-elb
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
@@ -13168,36 +20509,38 @@ http_interactions:
interface
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
- i-0347d4075310c21e6
+ eni-attach-22e6878f
+ i-0015ec0007f4d13a7
200278856672
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 10.0.1.167
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
@@ -13205,17 +20548,16 @@ http_interactions:
interface
-
- eni-83fc5323
+ eni-17e6c4d8
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- ladastest2
+
200278856672
- AIDAI37PIOA5B6VMIJRUU
false
- available
- 12:b7:bb:c9:a9:a8
- 10.0.0.249
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -13223,110 +20565,119 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+ eni-attach-5225809d
+ i-0639022117944a668
+ 200278856672
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+ true
+
-
- 10.0.0.249
+ 10.0.0.98
true
+
+ 54.172.168.193
+
+ amazon
+ true
+
interface
-
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-67541b15
+ smartstate
- eni-attach-cbd22453
- i-0bca58e6e540ddc39
+ eni-attach-39fcca94
+ i-02cc7ad4129cefe1b
200278856672
0
attached
- 2017-05-03T10:47:06.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
-
- 10.2.0.239
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
interface
-
- eni-70385dde
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB
+ eni-2e2639ad
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:cc:9f:fa:40:6a
- 10.0.0.245
+ 02:4a:7f:ba:fe:d6
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-0c6f467f93b126af7
+ eni-attach-0d27a2d0bd0ecc36e
amazon-elb
1
attached
- 2017-08-01T07:18:57.000Z
+ 2018-05-25T12:03:48.000Z
false
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.0.245
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
@@ -13336,56 +20687,17 @@ http_interactions:
interface
-
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
- 200278856672
- false
- in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-aa928893
- i-0b1ec6330e0180f75
- 200278856672
- 0
- attached
- 2017-09-23T18:24:21.000Z
- true
-
-
-
- -
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- interface
-
- -
- eni-1eec3adb
- subnet-16c70477
+ eni-bf97324c
+ subnet-f849ff96
vpc-ff49ff91
- us-east-1d
- test-network-port
+ us-east-1e
+ ladas-tst1
200278856672
AIDAI37PIOA5B6VMIJRUU
false
available
- 0e:49:87:ef:7f:c2
- 10.0.1.129
+ 12:fa:36:7f:7f:c2
+ 10.0.0.87
true
-
@@ -13396,7 +20708,7 @@ http_interactions:
-
- 10.0.1.129
+ 10.0.0.87
true
@@ -13404,34 +20716,34 @@ http_interactions:
interface
-
- eni-239477d1
- subnet-f849ff96
+ eni-85c03154
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB2
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:d8:ca:93:45:92
- 10.0.0.211
+ 0e:fb:8d:c6:e6:10
+ 10.0.1.253
true
-
- sg-0d2cd677
- quick-create-1
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-85db02af
+ eni-attach-04ccde3ecf22b7a4a
amazon-elb
1
attached
- 2017-02-08T01:57:57.000Z
+ 2018-03-05T02:06:29.000Z
false
- 52.206.189.251
+ 52.203.95.138
amazon-elb
true
@@ -13439,10 +20751,10 @@ http_interactions:
-
- 10.0.0.211
+ 10.0.1.253
true
- 52.206.189.251
+ 52.203.95.138
amazon-elb
true
@@ -13453,112 +20765,147 @@ http_interactions:
interface
-
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
200278856672
false
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-cd97a82d
- i-06c2e2feb85b5c8b2
+ eni-attach-cbd22453
+ i-0bca58e6e540ddc39
200278856672
0
attached
- 2017-07-17T19:21:45.000Z
+ 2017-05-03T10:47:06.000Z
true
+
+ 34.202.178.10
+
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
+ true
+
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 10.2.0.239
true
+
+ 34.202.178.10
+
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
+ true
+
interface
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ Primary network interface
200278856672
false
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-4cc30d32
- default
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-63ae77fb
- i-013f45a83fd938928
+ eni-attach-05fac66f
+ i-8b5739f2
200278856672
0
attached
- 2017-06-07T15:59:47.000Z
+ 2013-09-23T20:11:52.000Z
true
+
+ 54.208.119.197
+
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
+ true
+
-
- 10.2.0.15
+ 10.0.0.254
true
+
+ 54.208.119.197
+
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
+ true
+
+
+ -
+ 10.0.0.208
+
+ false
interface
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-38511448
- launch-wizard-47
+ sg-041d424d
+ launch-wizard-36
- eni-attach-075e6227
- i-0c1eee2b86c7aa4a1
+ eni-attach-7e503066
+ i-05d2313e6b9a42b16
200278856672
0
attached
- 2017-08-29T19:14:36.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.0.1.85
+ 10.0.1.192
true
@@ -13566,73 +20913,85 @@ http_interactions:
interface
-
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
+ eni-2b986f38
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
true
-
- sg-24362241
- default
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-62fceb4d
- i-091fe7ccd76ddac3b
+ eni-attach-455ec9ed
+ i-c72af2f6
200278856672
- 1
+ 0
attached
- 2017-05-16T18:56:22.000Z
- false
+ 2016-08-30T07:17:58.000Z
+ true
+
+ 54.208.71.4
+
+ amazon
+ true
+
-
- 10.0.0.129
+ 10.0.0.122
true
+
+ 54.208.71.4
+
+ amazon
+ true
+
interface
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-82c99dfe
+ sg-08314440
launch-wizard-38
- eni-attach-56d3827c
- i-0a922b9826b3dfd0d
+ eni-attach-b64f3e14
+ i-066465f361331dfa6
200278856672
0
attached
- 2017-02-16T16:28:15.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.86
+ 10.0.8.108
true
@@ -13640,16 +20999,17 @@ http_interactions:
interface
-
- eni-b9cc7f19
+ eni-188b9e8c
subnet-f849ff96
vpc-ff49ff91
us-east-1e
-
+ ELB EmSRefreshSpecVPCELB
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 12:20:9c:e5:0e:9a
+ 10.0.0.119
true
-
@@ -13658,204 +21018,137 @@ http_interactions:
- eni-attach-0b3482fe
- i-0b72e0b70e7fae3c9
- 200278856672
- 0
+ eni-attach-0893ce6442dcc61e5
+ amazon-elb
+ 1
attached
- 2017-09-07T12:23:45.000Z
- true
+ 2018-05-19T14:05:36.000Z
+ false
- 52.70.78.137
+ 52.86.136.121
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
+ amazon-elb
true
-
- 10.0.0.236
+ 10.0.0.119
true
- 52.70.78.137
+ 52.86.136.121
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
- true
-
-
-
-
- interface
-
- -
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
- 200278856672
- false
- in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
- true
-
-
-
- sg-4cc30d32
- default
-
-
-
- eni-attach-877ba01f
- i-0d794150f7fd264c4
- 200278856672
- 0
- attached
- 2017-06-09T15:00:46.000Z
- true
-
-
-
- -
- 10.2.0.191
- true
+ amazon-elb
+ true
+
interface
-
- eni-6933e6c9
- subnet-f849ff96
+ eni-6751aeb6
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- test
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB2
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 0e:c9:ea:e2:9b:42
+ 10.0.1.195
true
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-0d2cd677
+ quick-create-1
- eni-attach-de56932b
- i-099e794cfa830e9be
- 200278856672
- 0
+ eni-attach-04dda1050e8b01bc7
+ amazon-elb
+ 1
attached
- 2017-09-04T13:26:00.000Z
- true
+ 2018-03-05T13:00:40.000Z
+ false
- 54.208.121.144
+ 52.44.158.113
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
-
- 10.0.0.4
+ 10.0.1.195
true
- 54.208.121.144
+ 52.44.158.113
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
- -
- 10.0.0.199
-
- false
-
interface
-
- eni-a3902b84
- subnet-f849ff96
+ eni-88c5a245
+ subnet-5f5a9670
vpc-ff49ff91
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
+
-
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-12a4c3e2
- i-fb694e66
+ eni-attach-d82c7915
+ i-004f3bd30726946d1
200278856672
0
attached
- 2016-05-10T20:56:37.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 54.163.162.32
-
- amazon
- true
-
-
- 10.0.0.109
+ 10.0.8.25
true
-
- 54.163.162.32
-
- amazon
- true
-
interface
-
- eni-fd35bd0e
+ eni-e0bb2c77
subnet-f849ff96
vpc-ff49ff91
us-east-1e
ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:6b:f1:dd:d8:38
- 10.0.0.63
+ 12:85:fe:b2:a6:c2
+ 10.0.0.222
true
-
@@ -13872,15 +21165,15 @@ http_interactions:
- eni-attach-6793d94c
+ eni-attach-08dff347f2450c37e
amazon-elb
1
attached
- 2017-01-28T12:33:04.000Z
+ 2018-05-27T06:39:12.000Z
false
- 52.206.247.243
+ 52.207.60.40
amazon-elb
true
@@ -13888,10 +21181,10 @@ http_interactions:
-
- 10.0.0.63
+ 10.0.0.222
true
- 52.206.247.243
+ 52.207.60.40
amazon-elb
true
@@ -13902,36 +21195,36 @@ http_interactions:
interface
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
-
+ Primary network interface
200278856672
false
in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-08314440
+ launch-wizard-38
- eni-attach-ff35f0d1
- i-0bad1e8ff60a6f29a
+ eni-attach-494c3deb
+ i-0c37a7d012922752e
200278856672
0
attached
- 2017-05-22T20:35:56.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.87
+ 10.0.8.189
true
@@ -13939,36 +21232,36 @@ http_interactions:
interface
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
200278856672
false
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-24362241
- default
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-59c6f675
- i-0659dcbc66cb830e5
+ eni-attach-838d7a26
+ i-0622ab75f5f2ba752
200278856672
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.70
+ 10.0.8.55
true
@@ -13996,11 +21289,11 @@ http_interactions:
- eni-attach-958ef9e4
+ eni-attach-41b0deed
920715386331
1
attached
- 2016-01-26T15:26:07.000Z
+ 2018-05-20T00:41:43.000Z
false
@@ -14027,7 +21320,7 @@ http_interactions:
interface
-
- eni-29e88329
+ eni-8fbc5335
subnet-e88815d5
vpc-aee2a6ca
us-east-1a
@@ -14035,169 +21328,30 @@ http_interactions:
200278856672
false
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-f902c21c
- i-02975d4eb8e53bafd
- 200278856672
- 0
- attached
- 2017-08-10T19:10:05.000Z
- true
-
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
-
-
- -
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-fe24b408
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
-
- 200278856672
- false
- in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0e5ec721
- i-0fca61ededa522f1a
- 200278856672
- 0
- attached
- 2017-05-02T19:39:49.000Z
- true
-
-
- 54.145.134.133
-
- amazon
- true
-
-
-
- -
- 10.0.0.36
- true
-
- 54.145.134.133
-
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- Primary network interface
- 200278856672
- false
- in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-67541b15
+ smartstate
- eni-attach-455ec9ed
- i-c72af2f6
+ eni-attach-fbede525
+ i-0fb9010fdcfe4d050
200278856672
0
attached
- 2016-08-30T07:17:58.000Z
+ 2018-02-26T18:31:27.000Z
true
-
- 54.208.71.4
-
- amazon
- true
-
-
-
- -
- 10.0.0.122
- true
-
- 54.208.71.4
-
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-bf97324c
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ladas-tst1
- 200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 12:fa:36:7f:7f:c2
- 10.0.0.87
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- 10.0.0.87
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
@@ -14207,7 +21361,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:17 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:09 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -14220,14 +21374,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075217Z
+ - 20180906T091509Z
X-Amz-Content-Sha256:
- 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6766021e3d654e81404b62a24b17eaafbf4ee16d4c35ef911186b2a0574ce7e7
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=be5f3131d5d9cc2f353899bb0cce431ace7dc6fde2b39ccb530d3cc7594b4f8b
Content-Length:
- '47'
Accept:
@@ -14238,15 +21392,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 9b6b68a8-a28f-11e7-8900-35b813443efd
+ - 5a6cb2d8-b1b5-11e8-9a59-7990ca2dd80b
Content-Type:
- text/xml
Content-Length:
- - '12763'
+ - '17947'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:12 GMT
+ - Thu, 06 Sep 2018 09:15:09 GMT
body:
encoding: UTF-8
string: |
@@ -14276,7 +21430,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefreshSpec-LoadBalancer
@@ -14288,6 +21441,7 @@ http_interactions:
+ EmsRefreshSpec-LoadBalancer
2
30
@@ -14296,21 +21450,18 @@ http_interactions:
TCP:22
2013-08-09T14:53:25.760Z
-
+
EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com
- Z35SXDOTRQ7X7K
vpc-ff49ff91
+ Z35SXDOTRQ7X7K
internet-facing
i-8b5739f2
-
- i-fb694e66
-
@@ -14327,7 +21478,6 @@ http_interactions:
200278856672
EmsRefreshSpec-SecurityGroup-VPC
- EmSRefreshSpecVPCELB
@@ -14348,6 +21498,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB
2
30
@@ -14356,23 +21507,20 @@ http_interactions:
HTTP:80/index.html
2016-08-09T08:16:14.340Z
+
+ sg-80f755ef
+
subnet-16c70477
subnet-f849ff96
-
- sg-80f755ef
-
EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
- Z35SXDOTRQ7X7K
vpc-ff49ff91
+ Z35SXDOTRQ7X7K
internet-facing
-
- i-fb694e66
-
i-8b5739f2
@@ -14392,7 +21540,6 @@ http_interactions:
200278856672
quick-create-1
- EmSRefreshSpecVPCELB2
@@ -14404,6 +21551,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB2
2
30
@@ -14412,18 +21560,18 @@ http_interactions:
TCP:22
2016-08-10T14:17:09.810Z
+
+ sg-0d2cd677
+
subnet-16c70477
subnet-f849ff96
-
- sg-0d2cd677
-
EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
- Z35SXDOTRQ7X7K
vpc-ff49ff91
+ Z35SXDOTRQ7X7K
internet-facing
@@ -14440,7 +21588,6 @@ http_interactions:
200278856672
quick-create-2-for-lb-2
- lb-test3
@@ -14470,6 +21617,7 @@ http_interactions:
+ lb-test3
2
30
@@ -14478,14 +21626,14 @@ http_interactions:
HTTP:1600/index.html
2017-01-27T10:18:32.770Z
-
- subnet-f849ff96
-
sg-734efc0f
sg-0d2cd677
sg-da58eaa6
+
+ subnet-f849ff96
+
lb-test3-322096868.us-east-1.elb.amazonaws.com
@@ -14493,7 +21641,7 @@ http_interactions:
internet-facing
- i-025623c4c4e4f84a0
+ i-0aa433595b855eeeb
@@ -14511,7 +21659,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefres-ElasticL-UPI0RRUFR3HI
@@ -14523,6 +21670,7 @@ http_interactions:
+ EmsRefres-ElasticL-UPI0RRUFR3HI
5
30
@@ -14531,17 +21679,17 @@ http_interactions:
HTTP:80/
2017-03-27T11:33:40.770Z
-
+
EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
- Z35SXDOTRQ7X7K
vpc-c3d2f1a5
+ Z35SXDOTRQ7X7K
internet-facing
- i-0150ac66c83e0eae8
+ i-0828f09c91ab89a97
@@ -14558,7 +21706,6 @@ http_interactions:
200278856672
EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- EmsRefres-PublicEl-15YIQXDK2TNOF
@@ -14570,6 +21717,7 @@ http_interactions:
+ EmsRefres-PublicEl-15YIQXDK2TNOF
5
90
@@ -14578,44 +21726,406 @@ http_interactions:
HTTP:80/
2017-03-27T12:21:17.830Z
-
- subnet-de2363bb
-
sg-5946c626
+
+ subnet-de2363bb
+
EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-03769bc6ccaba947a
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-04T13:38:44.050Z
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-038bc46a57b2ad428
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-OHBTSYAE8C89
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-06T08:18:57.340Z
+
+
+ SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-00eda271fc8d71e7e
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-G69XH7HDIQ0J
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-06T08:19:20.060Z
+
+
+ SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
- 9b6b68a8-a28f-11e7-8900-35b813443efd
+ 5a6cb2d8-b1b5-11e8-9a59-7990ca2dd80b
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:10 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091510Z
+ X-Amz-Content-Sha256:
+ - 3af90022526a6f5460a9813c88cc0b96b9ad472999bfeedaccd286147e93047b
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9089f36d644a5e9f872603b1ca085a4844c944a40c36c130782f6e2f976f7e1d
+ Content-Length:
+ - '93'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5b2f1829-b1b5-11e8-9ce1-511073c268cc
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '629'
+ Date:
+ - Thu, 06 Sep 2018 09:15:10 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
+ i-680071e9
+ OutOfService
+ Instance
+
+
+
+
+ 5b2f1829-b1b5-11e8-9ce1-511073c268cc
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:11 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091511Z
+ X-Amz-Content-Sha256:
+ - e3ca7eaa1d39176b50c00e34e89f3aaf68b84ce556b8e5b1d9242affcccfd5d4
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3cb28e6c4a9313ce7302dc7e58b3d94c04f9b700b835323fe4e889e7eab0a46d
+ Content-Length:
+ - '86'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5b986173-b1b5-11e8-84b8-e518f53d604a
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '629'
+ Date:
+ - Thu, 06 Sep 2018 09:15:11 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
+ i-8b5739f2
+ OutOfService
+ Instance
+
+
+
+
+ 5b986173-b1b5-11e8-84b8-e518f53d604a
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:12 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.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091512Z
+ X-Amz-Content-Sha256:
+ - 906dd8e8fc282f77d697b9b88544cfc4963e06d223e5d72254f984144f015d1f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c4d514c198d83bf33f5dc8dd940049a963d8af281a717ed878712818e56edafb
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5c0553d5-b1b5-11e8-9d06-710d5c3302c5
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '629'
+ Date:
+ - Thu, 06 Sep 2018 09:15:12 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
+ i-8b5739f2
+ OutOfService
+ Instance
+
+
+
+
+ 5c0553d5-b1b5-11e8-9d06-710d5c3302c5
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:13 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=lb-test3&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091513Z
+ X-Amz-Content-Sha256:
+ - 9144f43e765264b7f9114214122e0e09f0a9bcd98921a1171dc71fef0ed7b152
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2e67d891c61cb03618ecfd4924af7bfc672140705ea3d5e17bfdd195db79cc6f
+ Content-Length:
+ - '74'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5c969764-b1b5-11e8-a9bf-559519f41ce3
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '329'
+ Date:
+ - Thu, 06 Sep 2018 09:15:13 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+ 5c969764-b1b5-11e8-a9bf-559519f41ce3
-
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:18 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:14 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
+ string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-ElasticL-UPI0RRUFR3HI&Version=2012-06-01
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075218Z
+ - 20180906T091514Z
X-Amz-Content-Sha256:
- - 3af90022526a6f5460a9813c88cc0b96b9ad472999bfeedaccd286147e93047b
+ - 248667537d6bbfc04b0fa73fa9f33377cbe117e97d89da18d184861389227dbc
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5d6108ae0c16f032c258d4695ec7a154865a887e9bf8957667abfcbd1e157817
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ba9ac38dd985a01ecd015866601ddc7eb84981bc01b93ad486e937d133d90c87
Content-Length:
- - '93'
+ - '97'
Accept:
- "*/*"
response:
@@ -14624,13 +22134,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 9c01b515-a28f-11e7-a606-73ebc642b92a
+ - 5d0e11fd-b1b5-11e8-8d60-79b4b987b059
Content-Type:
- text/xml
Content-Length:
- - '629'
+ - '543'
Date:
- - Tue, 26 Sep 2017 07:52:13 GMT
+ - Thu, 06 Sep 2018 09:15:14 GMT
body:
encoding: UTF-8
string: |
@@ -14638,41 +22148,41 @@ http_interactions:
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-680071e9
- OutOfService
- Instance
+ N/A
+ i-0aa433595b855eeeb
+ InService
+ N/A
- 9c01b515-a28f-11e7-a606-73ebc642b92a
+ 5d0e11fd-b1b5-11e8-8d60-79b4b987b059
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:19 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:15 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
+ string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-PublicEl-15YIQXDK2TNOF&Version=2012-06-01
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075219Z
+ - 20180906T091515Z
X-Amz-Content-Sha256:
- - e3ca7eaa1d39176b50c00e34e89f3aaf68b84ce556b8e5b1d9242affcccfd5d4
+ - '088599de17d32def6eb7122147a610a3586edf12376e0646844232b01a1e9058'
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e8dd76b15e03b0b559de967d7c6a1f09b7de4043c877f639d18325e8d054b1a3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ccc71a9bce9730fe5637ecde15720bf5d1f94c5aa386a92a02f8f3a29c72d22e
Content-Length:
- - '86'
+ - '98'
Accept:
- "*/*"
response:
@@ -14681,13 +22191,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 9c9a4bdd-a28f-11e7-a73d-e5b04f6ab79d
+ - 5db7bf1a-b1b5-11e8-a92f-3f6d05d0d66b
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '543'
Date:
- - Tue, 26 Sep 2017 07:52:14 GMT
+ - Thu, 06 Sep 2018 09:15:15 GMT
body:
encoding: UTF-8
string: |
@@ -14695,47 +22205,98 @@ http_interactions:
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-8b5739f2
- OutOfService
- Instance
+ N/A
+ i-0828f09c91ab89a97
+ InService
+ N/A
+
+
+
+ 5db7bf1a-b1b5-11e8-a92f-3f6d05d0d66b
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:16 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-FDREQLBTVJ1Z&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091516Z
+ X-Amz-Content-Sha256:
+ - c7b49541c27540ff8ef64689392c6a0019006ca7a38a4df2c3572ff13e90b4a7
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7c719b527f378b5ddde7046e8eabe08243a235f523c85627bdeeda2b83d15235
+ Content-Length:
+ - '97'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5e5c6360-b1b5-11e8-87ee-ff4c98ba4561
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Thu, 06 Sep 2018 09:15:16 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-fb694e66
- OutOfService
- Instance
+ N/A
+ i-03769bc6ccaba947a
+ InService
+ N/A
- 9c9a4bdd-a28f-11e7-a73d-e5b04f6ab79d
+ 5e5c6360-b1b5-11e8-87ee-ff4c98ba4561
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:20 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:17 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
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-OHBTSYAE8C89&Version=2012-06-01
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075220Z
+ - 20180906T091517Z
X-Amz-Content-Sha256:
- - 906dd8e8fc282f77d697b9b88544cfc4963e06d223e5d72254f984144f015d1f
+ - c46c9dbe6c52d672981aa0dda7901bf4005997fe693fd9863ffb73629bce8151
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a23d2c27a8f1643bc3b638f29f5437357b503117e1482b0fe9669e8b60f3d19f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=aef83e994b9e722e947d04fd979e245ed7c4ff0148cfa704cf033b9d314483a1
Content-Length:
- - '87'
+ - '97'
Accept:
- "*/*"
response:
@@ -14744,13 +22305,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 9d103f42-a28f-11e7-934a-c9480bd03aea
+ - 5ee0fc7d-b1b5-11e8-891d-5582d52fa5a2
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '543'
Date:
- - Tue, 26 Sep 2017 07:52:14 GMT
+ - Thu, 06 Sep 2018 09:15:17 GMT
body:
encoding: UTF-8
string: |
@@ -14758,47 +22319,3620 @@ http_interactions:
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-fb694e66
- OutOfService
- Instance
+ N/A
+ i-038bc46a57b2ad428
+ InService
+ N/A
+
+
+
+ 5ee0fc7d-b1b5-11e8-891d-5582d52fa5a2
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:18 GMT
+- request:
+ method: post
+ uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstanceHealth&LoadBalancerName=SC-200278-ElasticL-G69XH7HDIQ0J&Version=2012-06-01
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091518Z
+ X-Amz-Content-Sha256:
+ - b70f619e86f2a6bf657110336f4ed62c35c16bc038b164e1862b37a98d3555da
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2c2fd20e24778534f343da8d266ce6a86f6d1f86c3060e79405bdd5f7426d7d9
+ Content-Length:
+ - '97'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 5f490cea-b1b5-11e8-9e39-fdff1561cf89
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '543'
+ Date:
+ - Thu, 06 Sep 2018 09:15:17 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-8b5739f2
- OutOfService
- Instance
+ N/A
+ i-00eda271fc8d71e7e
+ InService
+ N/A
- 9d103f42-a28f-11e7-934a-c9480bd03aea
+ 5f490cea-b1b5-11e8-9e39-fdff1561cf89
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:21 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:18 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeInstances&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091518Z
+ X-Amz-Content-Sha256:
+ - 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=289aab88805d781282eb35f92408900e9d8def6a53e2760b4f9af8099be963bc
+ Content-Length:
+ - '43'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:18 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 2aa7f14a-afc8-4acf-b90f-6186abcbfd4b
+
+ -
+ r-0dece58a7cd92b3d1
+ 200278856672
+
+
+
-
+ i-0828f09c91ab89a97
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2018-03-01T21:31:41.000Z
+
+ us-east-1c
+
+ default
+
+
+ enabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
+ true
+
+ -
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-080996fdeaee13caf
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+
+ hvm
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+ xen
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
+ 200278856672
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+
-
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+
+ eni-attach-f41e8d30
+ 0
+ attached
+ 2018-03-01T21:31:41.000Z
+ true
+
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0d9d5788168db3796
+ 200278856672
+
+
+
-
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-32.ec2.internal
+
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 0
+
+ t2.micro
+ 2018-04-05T18:29:09.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0390b378515bffd1c
+ attached
+ 2018-04-05T18:29:10.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-39fcca94
+ 0
+ attached
+ 2018-04-05T18:29:09.000Z
+ true
+
+
+ -
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-016047928b31890f5
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0297a2b1075b3a2c6
+ ami-5769193e
+
+
80
+ stopped
+
+
+
+ User initiated
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-04-05T10:08:22.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ enabled
+
+
+ -
+ sg-347f9b5d
+ default
+
+
+
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0e7609b478fe9ca91
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ Name
+ mslemr
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
48
+ terminated
+
+
+
+ User initiated (2018-09-06 08:15:57 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+
+ -
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0bc3ae5e3f08c8a44
+ 200278856672
+
+
+
-
+ i-0125949f65c1e5528
+ ami-70e8fd66
+
+
16
+ running
+
+ ip-10-2-0-152.ec2.internal
+
+
+ hsong_centos_atomic
+ 0
+
+ t2.micro
+ 2018-03-06T18:29:43.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.152
+ 52.3.221.140
+ true
+
+ -
+ sg-5c49922a
+ launch-wizard-26
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-006fabcff33ae5272
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ hsong-centos
+
+
+ xen
+
+ -
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ Primary network interface
+ 200278856672
+ in-use
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
+ true
+
+
-
+ sg-5c49922a
+ launch-wizard-26
+
+
+
+ eni-attach-3be67cff
+ 0
+ attached
+ 2018-03-06T18:29:43.000Z
+ true
+
+
+ 52.3.221.140
+
+ amazon
+
+
+ -
+ 10.2.0.152
+ true
+
+ 52.3.221.140
+
+ amazon
+
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-072fcf51c1deca398
+ 200278856672
+
+
+
-
+ i-0510954911e45949b
+ ami-c998b6b2
+
+
16
+ running
+
+ ip-10-0-1-66.ec2.internal
+
+
+ bronaghkeypair
+ 0
+
+ t2.micro
+ 2017-12-13T14:43:34.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
+ true
+
+ -
+ sg-a5b994d0
+ launch-wizard-14
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d3587406018a8205
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ bronagh
+
+
+ xen
+
+ -
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
+ true
+
+
-
+ sg-a5b994d0
+ launch-wizard-14
+
+
+
+ eni-attach-0dbdb6d5
+ 0
+ attached
+ 2017-12-13T14:43:34.000Z
+ true
+
+
+ -
+ 10.0.1.66
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-066d4d1b049774f63
+ 200278856672
+
+
+
-
+ i-0274ada368eb4da36
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
+ 0
+
+ t2.micro
+ 2017-10-30T21:20:33.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.91
+ true
+
+ -
+ sg-8dff68ff
+ launch-wizard-53
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d76e68ae71222b49
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+
+ hvm
+ sbRkK1508468877905
+
+ -
+ Name
+ ssa-docker
+
+
+ xen
+
+ -
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ Primary network interface
+ 200278856672
+ in-use
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
-
+ sg-8dff68ff
+ launch-wizard-53
+
+
+
+ eni-attach-5fcc62c4
+ 0
+ attached
+ 2017-10-20T03:07:58.000Z
+ true
+
+
+ -
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/MIQ_SSA
+ AIPAJB66KPP4NYH7OLI2I
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-1842f370
+ 200278856672
+
+
+
-
+ i-8b5739f2
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-0-0-254.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2017-09-13T16:07:19.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-67606d2d
+ attached
+ 2013-09-23T20:11:57.000Z
+ true
+
+
+ -
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+
+ paravirtual
+ aPCzL1379967112359
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC
+
+ -
+ owner
+ UNKNOWN
+
+
+ xen
+
+ -
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-05fac66f
+ 0
+ attached
+ 2013-09-23T20:11:52.000Z
+ true
+
+
+ 54.208.119.197
+
+ 200278856672
+
+
+ -
+ 10.0.0.254
+ true
+
+ 54.208.119.197
+
+ 200278856672
+
+
+ -
+ 10.0.0.208
+
+ false
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c0e56163429b9a46
+ 200278856672
+
+
+
-
+ i-0bca58e6e540ddc39
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-2-0-239.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2017-05-03T10:47:06.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
+ true
+
+ -
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-0628a6ce987d4cb6e
+ attached
+ 2017-05-03T10:47:07.000Z
+ true
+
+
+
+ hvm
+ EmsRe-WebSe-1229KQXQO3HUK
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ Name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
+
+
+ xen
+
+ -
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
+ 200278856672
+ in-use
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
+ true
+
+
-
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+ eni-attach-cbd22453
+ 0
+ attached
+ 2017-05-03T10:47:06.000Z
+ true
+
+
+ 34.202.178.10
+
+ 200278856672
+
+
+ -
+ 10.2.0.239
+ true
+
+ 34.202.178.10
+
+ 200278856672
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-076deaba20c4af747
+ 200278856672
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ -
+ i-0e1752ff841801f65
+ ami-5769193e
+
+
80
+ stopped
+
+
+
+ User initiated (2018-09-03 12:12:01 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-03T12:10:36.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+
+ -
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-076672a9b80ac2e25
+ attached
+ 2018-09-03T12:10:36.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOff
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-05e4ba632b214dc1e
+ 200278856672
+
+
+
-
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-55.ec2.internal
+
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
+ 0
+
+ t2.nano
+ 2018-06-11T07:26:10.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.55
+ true
+
+ -
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-06e9ef72a99dcc223
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2__1
+
+ -
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
+
+
+ xen
+
+ -
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
+ true
+
+
-
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ eni-attach-838d7a26
+ 0
+ attached
+ 2018-06-06T18:52:17.000Z
+ true
+
+
+ -
+ 10.0.8.55
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+ -
+ i-002ca40492fff0e67
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-133.ec2.internal
+
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
+
+ t2.nano
+ 2018-06-15T13:08:32.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
+ true
+
+ -
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-096db62af3cb45d75
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ TestTag
+ test2__0
+
+ -
+ Name
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
+
+
+ xen
+
+ -
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:d5:74:0d:84:56
+ 10.0.8.133
+ true
+
+
-
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+
+
+ eni-attach-828d7a27
+ 0
+ attached
+ 2018-06-06T18:52:17.000Z
+ true
+
+
+ -
+ 10.0.8.133
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-00a2f9d88c2068981
+ 200278856672
+
+
+
-
+ i-05d2313e6b9a42b16
+ ami-6871a115
+
+
16
+ running
+
+ ip-10-0-1-192.ec2.internal
+
+
+ julian cheal
+ 0
+
+ t2.micro
+ 2018-04-26T10:02:38.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
+ true
+
+ -
+ sg-041d424d
+ launch-wizard-36
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0eb5ddcf735f22184
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
+
+
+
+ hvm
+
+ xen
+
+ -
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
+ true
+
+
-
+ sg-041d424d
+ launch-wizard-36
+
+
+
+ eni-attach-7e503066
+ 0
+ attached
+ 2018-04-26T10:02:38.000Z
+ true
+
+
+ -
+ 10.0.1.192
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-09188ea8e40a2b4d8
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-09b65a1400b9538ff
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
+
+ 0
+
+ t1.micro
+ 2018-07-25T11:01:38.000Z
+
+ us-east-1c
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.149.203.110
+ 75.101.229.189
+
+ -
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-04d23aa0121812de9
+ attached
+ 2018-07-25T11:01:38.000Z
+ true
+
+
+
+ paravirtual
+
+
+ -
+ Name
+ mslemr-test4
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0a1dcdbc4e3f20db0
+ 200278856672
+
+
+
-
+ i-004f3bd30726946d1
+ ami-2051294a
+
+
16
+ running
+
+ ip-10-0-8-25.ec2.internal
+
+
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 0
+
+ t1.micro
+ 2018-02-06T09:49:36.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.25
+ true
+
+ -
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-00198c2e466b380ac
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas-test-foreman.ec2.internal
+
+
+ xen
+
+ -
+ eni-88c5a245
+ subnet-5f5a9670
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
+ true
+
+
-
+ sg-1e2cf271
+ default
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-d82c7915
+ 0
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+ -
+ 10.0.8.25
+ true
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-18ca6cb0
+ 200278856672
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+
+ -
+ i-680071e9
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2017-09-07T14:42:55.000Z
+
+ us-east-1e
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.91.143.248
+ 54.221.202.53
+
+ -
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-b6fa656a
+ attached
+ 2016-01-07T19:58:39.000Z
+ true
+
+
+
+ paravirtual
+ JwNdr1452196715903
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-052a327ea7fccec89
+ 200278856672
+
+
+
-
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-44.ec2.internal
+
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ 0
+
+ t2.micro
+ 2018-03-15T13:27:36.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0a184b5b739d382d8
+ attached
+ 2018-03-15T13:27:37.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-22e6878f
+ 0
+ attached
+ 2018-03-15T13:27:36.000Z
+ true
+
+
+ -
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0cca17241eb40667c
+ 200278856672
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
+
+ -
+ i-03769bc6ccaba947a
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T13:39:05.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.231.214.59
+ 54.196.64.159
+
+ -
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0eb026a02c6666ea0
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-09dd2a3970815aaee
+ 200278856672
+
+
+
-
+ i-066465f361331dfa6
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-108.ec2.internal
+
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
+
+ t2.micro
+ 2018-05-25T15:39:08.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.108
+ true
+
+ -
+ sg-08314440
+ launch-wizard-38
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0875db6c16a8e9335
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ xen
+
+ -
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
+ true
+
+
-
+ sg-08314440
+ launch-wizard-38
+
+
+
+ eni-attach-b64f3e14
+ 0
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+ -
+ 10.0.8.108
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+ -
+ i-0c37a7d012922752e
+ ami-a4dc46db
+
+
80
+ stopped
+
+ ip-10-0-8-189.ec2.internal
+
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
+ 0
+
+ t2.micro
+ 2018-05-25T15:39:09.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.189
+ true
+
+ -
+ sg-08314440
+ launch-wizard-38
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-06bc83fa0e7bd77c4
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ xen
+
+ -
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:34:2d:df:09:f4
+ 10.0.8.189
+ true
+
+
-
+ sg-08314440
+ launch-wizard-38
+
+
+
+ eni-attach-494c3deb
+ 0
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+ -
+ 10.0.8.189
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0b0ebf36d34acdaa6
+ 200278856672
+
+
+
-
+ i-0a67c549558c9c392
+ ami-26ebbc5c
+
+
80
+ stopped
+
+ ip-10-0-1-165.ec2.internal
+
+ User initiated (2018-07-09 19:41:17 GMT)
+ 0
+
+ t2.micro
+ 2018-04-24T18:47:14.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
+ true
+
+ -
+ sg-b00affc6
+ launch-wizard-23
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0b80eb1a867cd27f8
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
+
+
+ xen
+
+ -
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
+ true
+
+
-
+ sg-b00affc6
+ launch-wizard-23
+
+
+
+ eni-attach-87883f81
+ 0
+ attached
+ 2018-02-28T16:08:24.000Z
+ true
+
+
+ -
+ 10.0.1.165
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0b5184e8fed7c403a
+ 200278856672
+
+
+
-
+ i-02007c8f386e74470
+ ami-55ef662f
+
+
16
+ running
+
+ ip-10-0-1-179.ec2.internal
+
+
+ bronaghkeypair1213
+ 0
+
+ t2.micro
+ 2017-12-13T15:04:34.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
+ true
+
+ -
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-07be95279f27e791f
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ bronagh1213
+
+ -
+ AWS_Tier
+ Gold
+
+
+ xen
+
+ -
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
+ true
+
+
-
+ sg-2899b45d
+ launch-wizard-16
+
+
+
+ eni-attach-e6616b3e
+ 0
+ attached
+ 2017-12-13T15:04:34.000Z
+ true
+
+
+ -
+ 10.0.1.179
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0dbeaadfed0a4ba6a
+ 200278856672
+
+
-
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
+
+
+
+ -
+ i-00eda271fc8d71e7e
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-182-106-171.ec2.internal
+ ec2-54-237-177-195.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-06T08:19:39.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.182.106.171
+ 54.237.177.195
+
+ -
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0491256daac0cf880
+ attached
+ 2018-09-06T08:19:39.000Z
+ true
+
+
+
+ paravirtual
+ bd2596b7-dc7c-e25d-b21e-8361e927627f_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-gato4drzgerpy
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-gato4drzgerpy-WebServerGroup-UPQDGUBBE1FL
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0dee19ffc1a9d96c4
+ 200278856672
+
+
+
-
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
+
+
80
+ stopped
+
+ ip-172-30-0-213.ec2.internal
+
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0
+
+ t2.micro
+ 2018-04-17T08:15:14.000Z
+
+ us-east-1a
+
+ default
+
+
+ disabled
+
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.213
+ true
+
+ -
+ sg-67541b15
+ smartstate
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-070d695244916edf4
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
+
+
+
+ hvm
+
+
+ -
+ Name
+ smartstate
+
+
+ xen
+
+ -
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-fbede525
+ 0
+ attached
+ 2018-02-26T18:31:27.000Z
+ true
+
+
+ -
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-08722bad9d42340ba
+ 200278856672
+
+
+
-
+ i-0639022117944a668
+ ami-63ac180a
+
+
16
+ running
+
+ ip-10-0-0-98.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-03-15T13:28:47.000Z
+
+ us-east-1e
+
+ default
+
+ aki-36ed075f
+
+ enabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.98
+ 54.172.168.193
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+ i386
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0b2d1d3b42eb03555
+ attached
+ 2018-03-15T13:28:48.000Z
+ true
+
+
+
+ paravirtual
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
+
+ -
+ aws:autoscaling:groupName
+ default-scaling-group
+
+
+ xen
+
+ -
+ eni-17e6c4d8
+ subnet-f849ff96
+ vpc-ff49ff91
+
+ 200278856672
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-5225809d
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+
+
+ -
+ 10.0.0.98
+ true
+
+ 54.172.168.193
+
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0098192b5619646aa
+ 200278856672
+
+
+
-
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
+
+
80
+ stopped
+
+ ip-172-30-3-177.ec2.internal
+
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
+ 0
+
+ t2.micro
+ 2018-03-15T07:09:23.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ 172.30.3.177
+ true
+
+ -
+ sg-a86bf7de
+ stomsa
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-00991e8e4231720cb
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
+
+
+
+ hvm
+
+
+ -
+ Name
+ stomsa
+
+
+ xen
+
+ -
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
-
+ sg-a86bf7de
+ stomsa
+
+
+
+ eni-attach-2bb4992d
+ 0
+ attached
+ 2018-03-12T13:48:51.000Z
+ true
+
+
+ -
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0edfc71118172d410
+ 200278856672
+
+
-
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+
+
+
+ -
+ i-038bc46a57b2ad428
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-88-183-52.ec2.internal
+ ec2-54-237-142-243.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-06T08:19:19.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.88.183.52
+ 54.237.142.243
+
+ -
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-02bb1bb157d7f12de
+ attached
+ 2018-09-06T08:19:19.000Z
+ true
+
+
+
+ paravirtual
+ 452596b7-db43-25da-9bdf-1665323d18a3_us-east-1c_1
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-u2tepcnttldko-WebServerGroup-1JRWA7TZE4G12
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-u2tepcnttldko
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-094143b846043daef
+ 200278856672
+
+
+
-
+ i-0b2631823a0fdfc76
+ ami-5769193e
+
+
16
+ running
+
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
+
+ 0
+
+ t1.micro
+ 2018-07-25T10:56:16.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ subnet-56f55f20
+ vpc-aee2a6ca
+ 172.30.1.91
+ 18.209.8.70
+ true
+
+ -
+ sg-a493cddd
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-0d62d6706c88af498
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+
+
+ paravirtual
+
+ xen
+
+ -
+ eni-b20dbfd5
+ subnet-56f55f20
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
+ true
+
+
-
+ sg-a493cddd
+ default
+
+
+
+ eni-attach-d57a046c
+ 0
+ attached
+ 2018-07-25T10:56:16.000Z
+ true
+
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
+ true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-e08e325e
+ 200278856672
+
+
+
-
+ i-c72af2f6
+ ami-2051294a
+
+
16
+ running
+
+ ip-10-0-0-122.ec2.internal
+
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.micro
+ 2017-09-26T07:43:04.000Z
+
+ us-east-1e
+
+ default
+
+
+ disabled
+
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.122
+ 54.208.71.4
+ true
+
+ -
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-da190f08
+ attached
+ 2016-08-30T07:17:59.000Z
+ true
+
+
+ -
+ /dev/sdf
+
+ vol-0acad09812d803c09
+ attached
+ 2017-03-17T07:25:12.000Z
+ false
+
+
+
+ hvm
+ BWJjo1472541478233
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC1
+
+ -
+ owner
+ UNKNOWN
+
+
+ xen
+
+ -
+ eni-2b986f38
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
+ true
+
+
-
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+ eni-attach-455ec9ed
+ 0
+ attached
+ 2016-08-30T07:17:58.000Z
+ true
+
+
+ 54.208.71.4
+
+ amazon
+
+
+ -
+ 10.0.0.122
+ true
+
+ 54.208.71.4
+
+ amazon
+
+
+
+
+
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0afdcc8251cc93fd7
+ 200278856672
+
+
-
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
+
+ -
+ i-0aa433595b855eeeb
+ ami-2a69aa47
+
+
16
+ running
+
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-03-01T21:31:04.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+ 10.185.167.107
+ 54.161.0.45
+
+ -
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-007e8c0663020ed1c
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+
+
+ paravirtual
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
+
+ -
+ EmsRefreshSpecResourceGroupTag
+ EmsRefreshSpecResourceGroupTagValue
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0bd40467050d37fd3
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0235e2c2b4fcabeab
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
+ 0
+
+ m3.medium
+ 2018-03-14T21:43:12.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.180.71.172
+ 54.87.20.125
+
+ -
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-07667df1666e2060a
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+
+ paravirtual
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d025657762e468f5
+ 200278856672
+
+
+
-
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
+
+
80
+ stopped
+
+ ip-10-0-1-19.ec2.internal
+
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
+ 0
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ t2.micro
+ 2018-03-06T05:28:40.000Z
+
+ us-east-1d
+
+ default
+
+
+ disabled
+
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
+ true
+
+ -
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-09a10c5f98f2dd67c
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
+
+
+
+ hvm
+ 152031409666653601
+
+ -
+ Name
+ james
+
+
+ xen
+
+ -
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
+ 200278856672
+ in-use
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
+ true
+
+
-
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+
+
+
+ eni-attach-3a325e3c
+ 0
+ attached
+ 2018-03-06T05:28:40.000Z
+ true
+
+
+ -
+ 10.0.1.19
+ true
+
+
+
+
+
+ false
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0d3845bde588bc6ff
+ 200278856672
+
+
-
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+
+ -
+ i-0e48bff566d8742b3
+ ami-2a69aa47
+
+
48
+ terminated
+
+
+
+ User initiated (2018-09-06 08:15:05 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:02.000Z
+
+ us-east-1d
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+
+ -
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ paravirtual
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:20 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=lb-test3&Version=2012-06-01
+ string: Action=DescribeAddresses&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075221Z
+ - 20180906T091520Z
X-Amz-Content-Sha256:
- - 9144f43e765264b7f9114214122e0e09f0a9bcd98921a1171dc71fef0ed7b152
+ - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=15870486d8b71d917f06592a28b08d16705923cccb5710bf19e9d3caf048f12c
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0c16b83d7d48a2b8d784a27a663eaabd2d0c68388c9e2d51efcfa7c1bea413af
Content-Length:
- - '74'
+ - '43'
Accept:
- "*/*"
response:
@@ -14806,49 +25940,109 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - 9d9f5f8a-a28f-11e7-8fdf-fdc52b45f4a1
Content-Type:
- - text/xml
- Content-Length:
- - '329'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:16 GMT
+ - Thu, 06 Sep 2018 09:15:20 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
-
- 9d9f5f8a-a28f-11e7-8fdf-fdc52b45f4a1
-
-
+ string: |-
+
+
+ a97856ea-a514-40ce-873b-e635f72d3fb1
+
+ -
+ 23.23.198.134
+ standard
+
+
+ -
+ 23.23.209.146
+ standard
+
+
+ -
+ 54.221.202.53
+ standard
+ i-680071e9
+
+ -
+ 54.221.202.64
+ standard
+
+
+ -
+ 54.235.113.32
+ standard
+
+
+ -
+ 34.202.178.10
+ eipalloc-9a4472ab
+ vpc
+ i-0bca58e6e540ddc39
+ eipassoc-13766e23
+ eni-8fefae9b
+ 200278856672
+ 10.2.0.239
+
+ -
+ 34.228.91.176
+ eipalloc-135bd126
+ vpc
+
+ -
+ 52.70.78.137
+ eipalloc-3d8a720f
+ vpc
+
+ -
+ 54.208.119.197
+ eipalloc-ce53d7a0
+ vpc
+ i-8b5739f2
+ eipassoc-cc6e58f1
+ eni-ad25f7cc
+ 200278856672
+ 10.0.0.254
+
+ -
+ 54.208.121.144
+ eipalloc-8d53d7e3
+ vpc
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:22 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:21 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-ElasticL-UPI0RRUFR3HI&Version=2012-06-01
+ string: Action=DescribeVolumes&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075222Z
+ - 20180906T091522Z
X-Amz-Content-Sha256:
- - 248667537d6bbfc04b0fa73fa9f33377cbe117e97d89da18d184861389227dbc
+ - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=dde074e0264c2f2bbdd1e2d05903dad5b5b628be55488b03591eb8355eaa9ecc
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=58538850dac88890de00e3147a32f75c4b0fa660221742c8e500a5054291a115
Content-Length:
- - '97'
+ - '41'
Accept:
- "*/*"
response:
@@ -14856,56 +26050,2446 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - 9e2c5d27-a28f-11e7-934a-c9480bd03aea
Content-Type:
- - text/xml
- Content-Length:
- - '543'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:16 GMT
+ - Thu, 06 Sep 2018 09:15:22 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
- N/A
- i-025623c4c4e4f84a0
- InService
- N/A
-
-
-
-
- 9e2c5d27-a28f-11e7-934a-c9480bd03aea
-
-
+ string: |-
+
+
+ 590fc0af-943f-4041-9ab2-a1eacef0a59c
+
+ -
+ vol-834804c4
+ 50
+
+ us-east-1d
+ available
+ 2015-04-21T13:54:22.140Z
+
+
+
-
+ Name
+ cfme-raw-vmdb
+
+
+ gp2
+ 150
+ false
+
+ -
+ vol-d40b2c93
+ 30
+
+ us-east-1d
+ available
+ 2015-04-28T12:21:59.090Z
+
+
+
-
+ Name
+ cfme2-raw-vmdb
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-68af0c92
+ 40
+
+ us-east-1d
+ available
+ 2015-09-29T21:36:13.514Z
+
+
+
-
+ Name
+ cfme55
+
+
+ standard
+ false
+
+ -
+ vol-ee3a9614
+ 50
+
+ us-east-1d
+ available
+ 2015-09-30T15:57:16.028Z
+
+
+
-
+ Name
+ cfme55vmdb
+
+
+ gp2
+ 150
+ false
+
+ -
+ vol-0d3587406018a8205
+ 10
+ snap-0822784885cd20aff
+ us-east-1d
+ in-use
+ 2017-12-13T14:43:34.969Z
+
+
-
+ vol-0d3587406018a8205
+ i-0510954911e45949b
+ /dev/sda1
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
+
+
+
+ -
+ name
+ bronagh
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07be95279f27e791f
+ 8
+ snap-055cf1cfc1dda99fe
+ us-east-1d
+ in-use
+ 2017-12-13T15:04:35.520Z
+
+
-
+ vol-07be95279f27e791f
+ i-02007c8f386e74470
+ /dev/xvda
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
+
+ -
+ Name
+ bronagh1213
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0b80eb1a867cd27f8
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-02-28T16:08:25.573Z
+
+
-
+ vol-0b80eb1a867cd27f8
+ i-0a67c549558c9c392
+ /dev/sda1
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-007e8c0663020ed1c
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-03-01T21:31:05.573Z
+
+
-
+ vol-007e8c0663020ed1c
+ i-0aa433595b855eeeb
+ /dev/sda1
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-09a10c5f98f2dd67c
+ 8
+ snap-0061a4a372352a41e
+ us-east-1d
+ in-use
+ 2018-03-06T05:28:40.473Z
+
+
-
+ vol-09a10c5f98f2dd67c
+ i-0a7aebaf459f1f9e7
+ /dev/sda1
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-00991e8e4231720cb
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-03-12T13:48:52.246Z
+
+
-
+ vol-00991e8e4231720cb
+ i-0d0cbf4c0a5e4f8fc
+ /dev/sda1
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0eb5ddcf735f22184
+ 10
+ snap-02196f4f8507c9598
+ us-east-1d
+ in-use
+ 2018-04-26T10:03:06.847Z
+
+
-
+ vol-0eb5ddcf735f22184
+ i-05d2313e6b9a42b16
+ /dev/sda1
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0eb026a02c6666ea0
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T13:39:05.557Z
+
+
-
+ vol-0eb026a02c6666ea0
+ i-03769bc6ccaba947a
+ /dev/sda1
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0ba19a687115bc9bc
+ 1
+
+ us-east-1f
+ available
+ 2017-12-01T14:23:28.862Z
+
+
+
-
+ Name
+
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07667df1666e2060a
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-03-14T21:43:12.985Z
+
+
-
+ vol-07667df1666e2060a
+ i-0235e2c2b4fcabeab
+ /dev/sda1
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0e7609b478fe9ca91
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-04-05T10:08:23.032Z
+
+
-
+ vol-0e7609b478fe9ca91
+ i-0297a2b1075b3a2c6
+ /dev/sda1
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0d62d6706c88af498
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-07-25T10:56:16.973Z
+
+
-
+ vol-0d62d6706c88af498
+ i-0b2631823a0fdfc76
+ /dev/sda1
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0d8fcf26bf27ab650
+ 1
+
+ us-east-1a
+ available
+ 2017-01-27T15:36:00.023Z
+
+
+
-
+ Name
+ ladas_volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e6f4b53711466c8b
+ 4
+
+ us-east-1a
+ available
+ 2017-05-22T13:13:04.847Z
+
+
+
-
+ Name
+ test
+
+
+ io1
+ 100
+ false
+
+ -
+ vol-0395fe9f0370fabdf
+ 3
+
+ us-east-1a
+ available
+ 2017-06-22T20:36:16.182Z
+
+
+
-
+ Name
+ dberger-test
+
+ -
+ Owner
+ Dan
+
+ -
+ Joe
+ Smith
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0a53d5f020485f470
+ 2
+
+ us-east-1a
+ available
+ 2017-06-30T16:27:26.909Z
+
+
+
-
+ Name
+ bronagh-volume-test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0acc4b093d87d2ecd
+ 1
+
+ us-east-1a
+ available
+ 2017-06-30T17:19:21.552Z
+
+
+
-
+ foo
+ bar
+
+ -
+ Name
+ dberger-test2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06c6dccf34b2a6c72
+ 1
+
+ us-east-1a
+ available
+ 2017-07-27T13:06:30.936Z
+
+
+
-
+ Name
+ ladas_delete_me_soon
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0c30961b3fd9686ba
+ 30
+ snap-ee7facf8
+ us-east-1a
+ available
+ 2017-10-10T20:35:12.867Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0ada13b443b5956c9
+ 7
+ snap-5ab0eb13
+ us-east-1a
+ available
+ 2017-10-26T19:36:58.511Z
+
+ standard
+ false
+
+ -
+ vol-0825f4636ce0d50c6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-26T20:33:13.973Z
+
+ standard
+ false
+
+ -
+ vol-0a4b814e71aa2f08f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T03:36:43.041Z
+
+ standard
+ false
+
+ -
+ vol-02806f4d20f3fc589
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T15:42:06.392Z
+
+ standard
+ false
+
+ -
+ vol-0541f73328859481d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:25:36.629Z
+
+ standard
+ false
+
+ -
+ vol-0492602d2209b004c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:47:46.434Z
+
+ standard
+ false
+
+ -
+ vol-0383713f5f8e9be6c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:17:39.566Z
+
+ standard
+ false
+
+ -
+ vol-0d09b14c9691b6132
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:45:58.188Z
+
+ standard
+ false
+
+ -
+ vol-073e00661f83e778e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T02:18:33.300Z
+
+ standard
+ false
+
+ -
+ vol-0fa0bf31000e6af8e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T21:00:39.451Z
+
+ standard
+ false
+
+ -
+ vol-00b35c4bcdacdf50e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-08T21:08:54.275Z
+
+ standard
+ false
+
+ -
+ vol-0635c4be77a59e8c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-27T19:14:59.505Z
+
+ standard
+ false
+
+ -
+ vol-08048f081712cdc55
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T19:53:15.507Z
+
+
+
-
+ Name
+ hsong-test_volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d923fe770ed2486c
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T21:24:26.112Z
+
+
+
-
+ Name
+ hsong-test-again
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-09fb101747e4d82e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:54:56.366Z
+
+ standard
+ false
+
+ -
+ vol-090b6b64757ee0ab5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:57:09.931Z
+
+ standard
+ false
+
+ -
+ vol-043b675604bfd5b9d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:58:47.700Z
+
+ standard
+ false
+
+ -
+ vol-039bb19d656241cf6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:01:36.106Z
+
+ standard
+ false
+
+ -
+ vol-0121b629c98897491
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:03:15.107Z
+
+ standard
+ false
+
+ -
+ vol-0e33a13f6eb3c1b36
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:10:28.797Z
+
+ standard
+ false
+
+ -
+ vol-05d1be7deaae362cf
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:12:02.490Z
+
+ standard
+ false
+
+ -
+ vol-0a816acb234f64a78
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:13:39.472Z
+
+ standard
+ false
+
+ -
+ vol-0c37e69f9d3fac3c5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:15:20.103Z
+
+ standard
+ false
+
+ -
+ vol-029b208a26b33dd91
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:17:22.608Z
+
+ standard
+ false
+
+ -
+ vol-0a37c9cc3de01630b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:18:59.845Z
+
+ standard
+ false
+
+ -
+ vol-0f3df9946b6fb0a68
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:20:42.067Z
+
+ standard
+ false
+
+ -
+ vol-0d3f5d40fd2cf1e21
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:22:52.734Z
+
+ standard
+ false
+
+ -
+ vol-09b9c89c88ba4e3f7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:25:02.249Z
+
+ standard
+ false
+
+ -
+ vol-091ef233d144e3a17
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:26:41.836Z
+
+ standard
+ false
+
+ -
+ vol-0efcc35ea44fcecaa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:28:23.988Z
+
+ standard
+ false
+
+ -
+ vol-06b692e14c3c37f3a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:30:01.994Z
+
+ standard
+ false
+
+ -
+ vol-0b88365a642da2f29
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:32:22.859Z
+
+ standard
+ false
+
+ -
+ vol-0d5426adc427d73c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:34:27.210Z
+
+ standard
+ false
+
+ -
+ vol-0e24a7be2ffb508e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:36:09.046Z
+
+ standard
+ false
+
+ -
+ vol-098a1ea9cad67dbda
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:37:48.770Z
+
+ standard
+ false
+
+ -
+ vol-0d359e258ee956241
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:39:23.622Z
+
+ standard
+ false
+
+ -
+ vol-00d6116a2ff86c5c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:41:02.339Z
+
+ standard
+ false
+
+ -
+ vol-03d8805971f766c18
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:42:40.583Z
+
+ standard
+ false
+
+ -
+ vol-0b2e399696e2c0695
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:44:20.845Z
+
+ standard
+ false
+
+ -
+ vol-0418d857c44096bc4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:46:02.577Z
+
+ standard
+ false
+
+ -
+ vol-0840c53c9077e23e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T16:45:07.967Z
+
+ standard
+ false
+
+ -
+ vol-01cf4586194fa1d7a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T18:21:57.922Z
+
+ standard
+ false
+
+ -
+ vol-0dbdd7e27a94c2ddc
+ 4
+
+ us-east-1a
+ available
+ 2018-01-05T16:01:52.727Z
+
+
+
-
+ Name
+ hsong-0105
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0cc8d9f54237b1fb5
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:00:30.795Z
+
+
+
-
+ Name
+ hsong-1010
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-02b314874ffa07e3f
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:04:41.425Z
+
+
+
-
+ Name
+ hsong-1010-1
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-09e31fed84773d1e1
+ 8
+
+ us-east-1a
+ available
+ 2018-01-10T16:18:25.321Z
+
+
+
-
+ Name
+ hsong-1010-2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0212b7567bd16ab47
+ 4
+
+ us-east-1a
+ available
+ 2018-01-19T15:45:33.725Z
+
+
+
-
+ Name
+ xxl01
+
+
+ io1
+ 100
+ false
+
+ -
+ vol-03433068816328de4
+ 8
+
+ us-east-1a
+ available
+ 2018-01-22T15:04:31.163Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0566cd9481a29ca23
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-25T22:19:12.182Z
+
+ standard
+ false
+
+ -
+ vol-0c37b1a65e4f12968
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T20:46:09.789Z
+
+ standard
+ false
+
+ -
+ vol-025a3a234eeb31bc1
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:20:14.285Z
+
+ standard
+ false
+
+ -
+ vol-08afd3e598e5ba143
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:45:52.228Z
+
+ standard
+ false
+
+ -
+ vol-0653d1716dc49592b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:55:04.729Z
+
+ standard
+ false
+
+ -
+ vol-0917151960a77d439
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:13:45.861Z
+
+ standard
+ false
+
+ -
+ vol-0c68b01f4f260ee9c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:36:01.529Z
+
+ standard
+ false
+
+ -
+ vol-09801be5b750adc80
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:54:00.132Z
+
+ standard
+ false
+
+ -
+ vol-06806fc2f7d8b9119
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:34:00.998Z
+
+ standard
+ false
+
+ -
+ vol-072d8c0b33be81fe3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:50:53.129Z
+
+ standard
+ false
+
+ -
+ vol-02bf1f30ac38448e5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T14:07:08.909Z
+
+ standard
+ false
+
+ -
+ vol-0c84050c0e1b8b490
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:31:26.026Z
+
+ standard
+ false
+
+ -
+ vol-0dc4f98dac26b2378
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:49:57.483Z
+
+ standard
+ false
+
+ -
+ vol-0013e5ea3ee8d3beb
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:52:47.247Z
+
+ standard
+ false
+
+ -
+ vol-0358d9f4d3df869e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:06:15.454Z
+
+ standard
+ false
+
+ -
+ vol-03af96a7737e48aa3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:54:50.517Z
+
+ standard
+ false
+
+ -
+ vol-0e7878f03823f5399
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:36:16.140Z
+
+ standard
+ false
+
+ -
+ vol-011d0be8098d309ba
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:57:30.964Z
+
+ standard
+ false
+
+ -
+ vol-0ea9010df702fb698
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T18:24:22.381Z
+
+ standard
+ false
+
+ -
+ vol-0f7e01cd0c93de24d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T22:22:10.028Z
+
+ standard
+ false
+
+ -
+ vol-08efe048b975d586b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-31T01:26:41.851Z
+
+ standard
+ false
+
+ -
+ vol-0458322629d9caf55
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:20.477Z
+
+ standard
+ false
+
+ -
+ vol-0c4e2a7cbcfc11ee9
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:30.452Z
+
+ standard
+ false
+
+ -
+ vol-09f96563900ec5161
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:54:30.147Z
+
+ standard
+ false
+
+ -
+ vol-0c7dd7b270ca0edc5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T21:33:58.993Z
+
+ standard
+ false
+
+ -
+ vol-0a134a3a8b8cd294b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T14:23:56.709Z
+
+ standard
+ false
+
+ -
+ vol-03b363474b53b1556
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:36:31.229Z
+
+ standard
+ false
+
+ -
+ vol-0d700b01f53ba3984
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:44:08.614Z
+
+ standard
+ false
+
+ -
+ vol-02866b764ae673fb0
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T16:02:00.790Z
+
+ standard
+ false
+
+ -
+ vol-07b90d0adcf084f73
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-14T19:02:54.953Z
+
+ standard
+ false
+
+ -
+ vol-00eb40a0c3afd9957
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:08:31.757Z
+
+ standard
+ false
+
+ -
+ vol-076ea0e9b295eb129
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:25:47.490Z
+
+ standard
+ false
+
+ -
+ vol-097a11c8d6afcff70
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:32:27.518Z
+
+ standard
+ false
+
+ -
+ vol-0f4f9aa0a9e6f85af
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:58:39.950Z
+
+ standard
+ false
+
+ -
+ vol-0027ef821d9ae2173
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:17:46.361Z
+
+ standard
+ false
+
+ -
+ vol-030b95ecd4161a88c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:55:30.265Z
+
+ standard
+ false
+
+ -
+ vol-00a2c2b4b6931ed1f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T16:17:11.903Z
+
+ standard
+ false
+
+ -
+ vol-01eabd56e84c13a48
+ 4
+
+ us-east-1a
+ available
+ 2018-02-26T16:49:48.790Z
+
+
+
-
+ Name
+ hui_5_9_us_east
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04428bffbab60ac8f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T16:53:28.906Z
+
+ standard
+ false
+
+ -
+ vol-070d695244916edf4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-02-26T18:31:28.646Z
+
+
-
+ vol-070d695244916edf4
+ i-0fb9010fdcfe4d050
+ /dev/sda1
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-00df6ef3f504dcd0b
+ 4
+
+ us-east-1a
+ available
+ 2018-02-26T19:56:09.856Z
+
+
+
-
+ Name
+ hui_5_9_us_east_2nd
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0472d9ed07f9b1a50
+ 4
+
+ us-east-1a
+ available
+ 2018-02-28T21:06:30.166Z
+
+
+
-
+ Name
+ hui-console-test-us
+
+
+ standard
+ false
+
+ -
+ vol-0a184b5b739d382d8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-03-15T13:27:37.446Z
+
+
-
+ vol-0a184b5b739d382d8
+ i-0015ec0007f4d13a7
+ /dev/sda1
+ attached
+ 2018-03-15T13:27:37.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-0390b378515bffd1c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ in-use
+ 2018-04-05T18:29:10.338Z
+
+
-
+ vol-0390b378515bffd1c
+ i-02cc7ad4129cefe1b
+ /dev/sda1
+ attached
+ 2018-04-05T18:29:10.000Z
+ false
+
+
+ standard
+ false
+
+ -
+ vol-0f7377bb13a8c843a
+ 8
+ snap-0b9a379373a50ff29
+ us-east-1a
+ available
+ 2018-04-17T08:17:04.654Z
+
+
+
-
+ Description
+ Smartstate extract volume for image: i-0a7aebaf459f1f9e7
+
+ -
+ Name
+ Smartstate extract volume
+
+
+ standard
+ false
+
+ -
+ vol-0e6fca3077833d8ac
+ 1
+
+ us-east-1a
+ available
+ 2018-04-19T14:57:17.344Z
+
+
+
-
+ Name
+ dberger-test3
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-67606d2d
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2013-09-23T20:11:57.000Z
+
+
-
+ vol-67606d2d
+ i-8b5739f2
+ /dev/sda1
+ attached
+ 2013-09-23T20:11:57.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC-root
+
+
+ standard
+ false
+
+ -
+ vol-b6fa656a
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2016-01-07T19:58:39.495Z
+
+
-
+ vol-b6fa656a
+ i-680071e9
+ /dev/sda1
+ attached
+ 2016-01-07T19:58:39.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3-root
+
+
+ standard
+ false
+
+ -
+ vol-da190f08
+ 10
+ snap-ba40cac8
+ us-east-1e
+ in-use
+ 2016-08-30T07:17:59.338Z
+
+
-
+ vol-da190f08
+ i-c72af2f6
+ /dev/sda1
+ attached
+ 2016-08-30T07:17:59.000Z
+ true
+
+
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOn-VPC1-root
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0dda5ecf4b2b3dc57
+ 1
+
+ us-east-1e
+ available
+ 2017-01-27T15:58:07.337Z
+
+
+
-
+ Name
+ ladas-volume-3
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d780233c22848be7
+ 1
+ snap-0fb2163b24646b146
+ us-east-1e
+ available
+ 2017-01-27T15:59:20.784Z
+
+
+
-
+ Name
+ ladas-volume-from-snap2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e1613cacf4688009
+ 1
+
+ us-east-1e
+ available
+ 2017-03-17T07:20:08.273Z
+
+
+
-
+ Name
+ EmsRefreshSpecForSnapshot
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0e4c86c12b28cead8
+ 1
+ snap-055095f47fab5e749
+ us-east-1e
+ in-use
+ 2017-03-17T07:21:35.798Z
+
+
-
+ vol-0e4c86c12b28cead8
+ i-8b5739f2
+ /dev/sdf
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+
+ -
+ Name
+ EmsRefreshSpecForVpcVm
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0acad09812d803c09
+ 1
+
+ us-east-1e
+ in-use
+ 2017-03-17T07:23:54.211Z
+
+
-
+ vol-0acad09812d803c09
+ i-c72af2f6
+ /dev/sdf
+ attached
+ 2017-03-17T07:25:12.000Z
+ false
+
+
+
+ -
+ Name
+ EmsRefreshSpecForVpc1
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-0f5da4a455ff03c28
+ 2
+
+ us-east-1e
+ available
+ 2017-04-24T16:16:47.488Z
+
+
+
-
+ Name
+ bronaghs-test-volume
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-01e50a745302d3299
+ 2
+
+ us-east-1e
+ available
+ 2017-06-22T20:38:28.321Z
+
+
+
-
+ name
+ dberger-test2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0f1d1fbc7a35cdbab
+ 2
+
+ us-east-1e
+ available
+ 2017-07-03T14:45:12.273Z
+
+
+
-
+ Name
+ bronagh-ebs-test
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-01ff7e549707b8e54
+ 1
+
+ us-east-1e
+ available
+ 2017-09-04T14:45:47.319Z
+
+
+
-
+ Name
+ ladas_test_111_encrypted
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-01f455f7af32c1206
+ 10
+ snap-04b8acc66d50b9a7b
+ us-east-1e
+ available
+ 2017-09-04T15:18:12.952Z
+
+
+
-
+ Name
+ ladas_tesT_111_volume_from_snapshot_that_has_image
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ -
+ vol-01d53264cef7468b5
+ 1
+
+ us-east-1e
+ available
+ 2017-09-08T20:44:15.915Z
+
+
+
-
+ name
+ bronagh_sept
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-00198c2e466b380ac
+ 10
+ snap-ba40cac8
+ us-east-1e
+ in-use
+ 2018-02-06T09:49:36.942Z
+
+
-
+ vol-00198c2e466b380ac
+ i-004f3bd30726946d1
+ /dev/sda1
+ attached
+ 2018-02-06T09:49:36.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0b2d1d3b42eb03555
+ 7
+ snap-d23a95a1
+ us-east-1e
+ in-use
+ 2018-03-15T13:28:48.475Z
+
+
-
+ vol-0b2d1d3b42eb03555
+ i-0639022117944a668
+ /dev/sda1
+ attached
+ 2018-03-15T13:28:48.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-06bc83fa0e7bd77c4
+ 16
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-05-24T13:44:27.687Z
+
+
-
+ vol-06bc83fa0e7bd77c4
+ i-0c37a7d012922752e
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0875db6c16a8e9335
+ 16
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-05-24T13:44:27.698Z
+
+
-
+ vol-0875db6c16a8e9335
+ i-066465f361331dfa6
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
+
+ -
+ Name
+ ladas_ansible_test_2
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06e9ef72a99dcc223
+ 8
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-06-06T18:52:17.961Z
+
+
-
+ vol-06e9ef72a99dcc223
+ i-0622ab75f5f2ba752
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-096db62af3cb45d75
+ 8
+ snap-0eea1ed47e203f3b8
+ us-east-1e
+ in-use
+ 2018-06-06T18:52:17.961Z
+
+
-
+ vol-096db62af3cb45d75
+ i-002ca40492fff0e67
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-076672a9b80ac2e25
+ 7
+ snap-5f38cd0e
+ us-east-1e
+ in-use
+ 2018-09-03T12:10:36.744Z
+
+
-
+ vol-076672a9b80ac2e25
+ i-0e1752ff841801f65
+ /dev/sda1
+ attached
+ 2018-09-03T12:10:36.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0628a6ce987d4cb6e
+ 8
+ snap-25dd2ac1
+ us-east-1c
+ in-use
+ 2017-05-03T10:47:07.722Z
+
+
-
+ vol-0628a6ce987d4cb6e
+ i-0bca58e6e540ddc39
+ /dev/xvda
+ attached
+ 2017-05-03T10:47:07.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d76e68ae71222b49
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2017-10-20T03:07:59.609Z
+
+
-
+ vol-0d76e68ae71222b49
+ i-0274ada368eb4da36
+ /dev/sda1
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d0c07b33b7dd990
+ 10
+ snap-015df5abbf8e2bd82
+ us-east-1c
+ available
+ 2018-02-01T19:13:07.286Z
+
+
+
-
+ docker 1801_01
+ docker 1801_01
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-080996fdeaee13caf
+ 8
+ snap-25dd2ac1
+ us-east-1c
+ in-use
+ 2018-03-01T21:31:42.122Z
+
+
-
+ vol-080996fdeaee13caf
+ i-0828f09c91ab89a97
+ /dev/xvda
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04030aeb76075632f
+ 40
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-06T16:33:40.840Z
+
+
+
-
+ centos-atomic
+ hsong-centos-atomic
+
+
+ gp2
+ 120
+ false
+
+ -
+ vol-006fabcff33ae5272
+ 40
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2018-03-06T18:29:43.923Z
+
+
-
+ vol-006fabcff33ae5272
+ i-0125949f65c1e5528
+ /dev/sda1
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ -
+ Name
+ hsong-centos
+
+
+ gp2
+ 120
+ false
+
+ -
+ vol-08af70e95c9e06b9b
+ 40
+ snap-1d177976
+ us-east-1c
+ available
+ 2018-03-15T18:57:13.409Z
+
+ standard
+ false
+
+ -
+ vol-0d9e5539117b1d84e
+ 50
+ snap-9dd602d7
+ us-east-1c
+ available
+ 2018-03-15T18:57:13.508Z
+
+ gp2
+ 150
+ false
+
+ -
+ vol-0534ca90d5ec7c1fa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T12:57:15.476Z
+
+ standard
+ false
+
+ -
+ vol-05380a49009bd2bab
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T14:50:05.626Z
+
+ standard
+ false
+
+ -
+ vol-02a2daeffe573eb40
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:57:52.883Z
+
+ standard
+ false
+
+ -
+ vol-00a2450a0d4a75026
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:59:17.653Z
+
+ standard
+ false
+
+ -
+ vol-023585bdecf8787a8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:51:17.945Z
+
+ standard
+ false
+
+ -
+ vol-01501c252c6c17f64
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:14.035Z
+
+ standard
+ false
+
+ -
+ vol-0caa1d7281b4bce32
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:57.679Z
+
+ standard
+ false
+
+ -
+ vol-0780f89f8347bae57
+ 30
+
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.183Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-014a050c648da66fd
+ 40
+ snap-249e4c6c
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.104Z
+
+ gp2
+ 120
+ false
+
+ -
+ vol-0d3b1bfb00463ea5d
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:40:30.740Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0bd04af3b534fdde6
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:46:40.680Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d23aa0121812de9
+ 7
+ snap-5f38cd0e
+ us-east-1c
+ in-use
+ 2018-07-25T11:01:38.351Z
+
+
-
+ vol-04d23aa0121812de9
+ i-09b65a1400b9538ff
+ /dev/sda1
+ attached
+ 2018-07-25T11:01:38.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-02bb1bb157d7f12de
+ 8
+ snap-4177dea1
+ us-east-1c
+ in-use
+ 2018-09-06T08:19:19.878Z
+
+
-
+ vol-02bb1bb157d7f12de
+ i-038bc46a57b2ad428
+ /dev/sda1
+ attached
+ 2018-09-06T08:19:19.000Z
+ true
+
+
+ standard
+ false
+
+ -
+ vol-0491256daac0cf880
+ 8
+ snap-4177dea1
+ us-east-1c
+ in-use
+ 2018-09-06T08:19:39.938Z
+
+
-
+ vol-0491256daac0cf880
+ i-00eda271fc8d71e7e
+ /dev/sda1
+ attached
+ 2018-09-06T08:19:39.000Z
+ true
+
+
+ standard
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:23 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:24 GMT
- request:
method: post
- uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
+ uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeInstanceHealth&LoadBalancerName=EmsRefres-PublicEl-15YIQXDK2TNOF&Version=2012-06-01
+ string: Action=DescribeSnapshots&Owner.1=self&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075223Z
+ - 20180906T091524Z
X-Amz-Content-Sha256:
- - 088599de17d32def6eb7122147a610a3586edf12376e0646844232b01a1e9058
+ - 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ef4a7e5ad3d6a00ca70fb2424a15ec5d3651fe1047cdf9fb8af0d1d9807164d5
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6e999040e9e1b67e67be6cf6033e85eaba754a75fbea7392ae53d78922325ab3
Content-Length:
- - '98'
+ - '56'
Accept:
- "*/*"
response:
@@ -14913,34 +28497,637 @@ http_interactions:
code: 200
message: OK
headers:
- X-Amzn-Requestid:
- - 9eba1df6-a28f-11e7-8fdf-fdc52b45f4a1
Content-Type:
- - text/xml
- Content-Length:
- - '543'
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:18 GMT
+ - Thu, 06 Sep 2018 09:15:24 GMT
+ Server:
+ - AmazonEC2
body:
encoding: UTF-8
- string: |
-
-
-
-
- N/A
- i-0150ac66c83e0eae8
- N/A
- InService
-
-
-
-
- 9eba1df6-a28f-11e7-8fdf-fdc52b45f4a1
-
-
+ string: |-
+
+
+ af95aa70-eb87-43ed-afcf-b811d9e7d182
+
+ -
+ snap-1d177976
+ vol-68af0c92
+ completed
+ 2015-09-30T16:31:07.000Z
+
+ 200278856672
+ 40
+ Created by CreateImage(i-91154731) for ami-3f0e495a from vol-68af0c92
+ false
+
+ -
+ snap-2187b94f
+ vol-68af0c92
+ completed
+ 2015-09-30T15:47:18.000Z
+
+ 200278856672
+ 40
+ cfme55dnd
+ false
+
+
-
+ Name
+ cfme55dnd
+
+
+
+ -
+ snap-8b289bec
+ vol-8c4f69cb
+ completed
+ 2015-04-28T17:26:04.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-85b8b979) for ami-320c005a from vol-8c4f69cb
+ false
+
+ -
+ snap-08810574
+ vol-06700f1376f73abee
+ completed
+ 2017-05-25T18:23:28.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-00ebdb6f40ba522b2) for ami-22470534 from vol-06700f1376f73abee
+ false
+
+ -
+ snap-5210bc21
+ vol-3e52bf45
+ completed
+ 2012-08-21T21:31:58.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-0553707e) for ami-bda014d4 from vol-3e52bf45
+ false
+
+
-
+ Name
+ redhat-6.3-64-AMI-base
+
+
+
+ -
+ snap-d23a95a1
+ vol-22846b59
+ completed
+ 2012-08-21T23:30:35.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-99a183e2) for ami-63ac180a from vol-22846b59
+ false
+
+ -
+ snap-8ec06efd
+ vol-24f51a5f
+ completed
+ 2012-08-22T00:07:26.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-f1634e8a) for ami-edad1984 from vol-24f51a5f
+ false
+
+ -
+ snap-90bc12e3
+ vol-26de315d
+ completed
+ 2012-08-22T00:20:43.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-eb5d7090) for ami-95ad19fc from vol-26de315d
+ false
+
+ -
+ snap-968927e5
+ vol-32d13e49
+ completed
+ 2012-08-22T00:31:58.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-7b2f0200) for ami-3bae1a52 from vol-32d13e49
+ false
+
+ -
+ snap-6eee471d
+ vol-1421ce6f
+ completed
+ 2012-08-22T01:43:11.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-b13a17ca) for ami-25a81c4c from vol-1421ce6f
+ false
+
+ -
+ snap-baf35ac9
+ vol-84719eff
+ completed
+ 2012-08-22T01:57:13.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0bbe9370) for ami-f3a81c9a from vol-84719eff
+ false
+
+ -
+ snap-d03941a3
+ vol-eb25f490
+ completed
+ 2012-08-27T19:14:40.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-888366f2) for ami-67bc0b0e from vol-eb25f490
+ false
+
+ -
+ snap-5ab0eb13
+ vol-06e3f7fe
+ completed
+ 2015-08-24T15:37:26.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-90fdc16f) for ami-57318e3c from vol-06e3f7fe
+ false
+
+ -
+ snap-249e4c6c
+ vol-68af0c92
+ completed
+ 2015-10-01T15:35:55.000Z
+
+ 200278856672
+ 40
+ Created by CreateImage(i-91154731) for ami-a7185ec2 from vol-68af0c92
+ false
+
+ -
+ snap-9dd602d7
+ vol-ee3a9614
+ completed
+ 2015-09-30T16:31:08.000Z
+
+ 200278856672
+ 50
+ Created by CreateImage(i-91154731) for ami-3f0e495a from vol-ee3a9614
+ false
+
+ -
+ snap-5f38cd0e
+ vol-ad4fa2f7
+ completed
+ 2013-06-22T02:29:08.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-1c237c77) for ami-5769193e from vol-ad4fa2f7
+ false
+
+ -
+ snap-6054c98a
+ vol-ffffffff
+ completed
+ 2017-01-13T11:31:33.000Z
+
+ 200278856672
+ 7
+ Copied for DestinationAmi ami-7c4aa86a from SourceAmi ami-bda014d4 for SourceSnapshot snap-5210bc21. Task created on 1,484,307,087,854.
+ false
+
+ -
+ snap-eafde662
+ vol-0fdc4b8ad070c46e5
+ completed
+ 2017-02-16T15:24:10.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-065dac88ae4c48202) for ami-204c8436 from vol-0fdc4b8ad070c46e5
+ false
+
+ -
+ snap-0fb2163b24646b146
+ vol-0d8fcf26bf27ab650
+ completed
+ 2017-01-27T15:51:33.000Z
+
+ 200278856672
+ 1
+
+ false
+
+
-
+ Name
+ ladas_volume_snap_show
+
+
+
+ -
+ snap-0dff7febfe74867d0
+ vol-0b517fa1
+ completed
+ 2017-02-08T22:21:55.000Z
+
+ 200278856672
+ 40
+ Testing Snapshot Locations
+ false
+
+
-
+ Name
+ test-snap-01
+
+
+
+ -
+ snap-09505262c29651f47
+ vol-00306cda05dec2db5
+ completed
+ 2017-09-06T15:25:23.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-099e794cfa830e9be) for ami-bbc9dac0 from vol-00306cda05dec2db5
+ false
+
+ -
+ snap-04b8acc66d50b9a7b
+ vol-01ff7e549707b8e54
+ completed
+ 2017-09-04T15:01:01.000Z
+
+ 200278856672
+ 1
+
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+
-
+ Name
+ ladas_test_111_snapshot
+
+
+
+ -
+ snap-03d5e23022317b3a5
+ vol-0bae2310332a3a1b5
+ completed
+ 2017-09-04T14:41:23.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ ladas_test_111_1
+
+
+
+ -
+ snap-03e398e6e95827703
+ vol-ffffffff
+ completed
+ 2018-08-31T14:29:15.000Z
+
+ 200278856672
+ 67
+ Created by AWS-VMImport service for import-ami-09bf69373591f57dc
+ false
+
+ -
+ snap-07e530b95d909f36d
+ vol-07be95279f27e791f
+ completed
+ 2018-08-27T21:46:31.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-02007c8f386e74470) for ami-0908219546812fe3e from vol-07be95279f27e791f
+ false
+
+ -
+ snap-0b9a379373a50ff29
+ vol-09a10c5f98f2dd67c
+ completed
+ 2018-04-17T08:16:19.000Z
+
+ 200278856672
+ 8
+ Smartstate extract snapshot for instance: i-0a7aebaf459f1f9e7
+ false
+
+
-
+ Name
+ Smartstate extract snapshot
+
+
+
+ -
+ snap-02094089d5ab75ded
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T20:40:13.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-05a7d88d5b5dec9e7
+ vol-0825f4636ce0d50c6
+ completed
+ 2018-03-29T20:15:18.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ test
+
+
+
+ -
+ snap-075f99be2814607c5
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T14:20:53.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-854a3bff from vol-00bda21753cf68784
+ false
+
+ -
+ snap-090b10966b3b3d0bf
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T01:48:39.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-db582ea1 from vol-00bda21753cf68784
+ false
+
+ -
+ snap-07ef84850550046dd
+ vol-08048f081712cdc55
+ completed
+ 2017-12-13T20:01:22.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-snapshot-test
+
+
+
+ -
+ snap-0b1bfdb21caec2dcd
+ vol-ffffffff
+ completed
+ 2017-11-16T12:22:01.000Z
+
+ 200278856672
+ 10
+ [Copied snap-03d5e23022317b3a5 from us-east-1]
+ false
+
+ -
+ snap-02349dbbbf755f6af
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c58ddded84a9e8ba
+ vol-67606d2d
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-67606d2d
+ false
+
+ -
+ snap-034acb0cf077bc06c
+ vol-0a53d5f020485f470
+ completed
+ 2017-07-03T15:39:49.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ snapshot-bronagh-volume-test
+
+
+
+ -
+ snap-0cbf55eb6acc05486
+ vol-0395fe9f0370fabdf
+ completed
+ 2017-06-30T16:01:21.000Z
+
+ 200278856672
+ 3
+ Testing snapshot event
+ false
+
+
-
+ Name
+ dberger-test-snapshot
+
+
+
+ -
+ snap-0a5070b29f3ddcd92
+ vol-ffffffff
+ completed
+ 2017-05-18T14:44:04.000Z
+
+ 200278856672
+ 10
+ Copied for DestinationAmi ami-5e86fe48 from SourceAmi ami-464a2c26 for SourceSnapshot snap-0d6ff47e657599428. Task created on 1,495,118,641,744.
+ false
+
+ -
+ snap-05ef19f30ffe6ceaa
+ vol-ffffffff
+ completed
+ 2017-05-18T14:22:14.000Z
+
+ 200278856672
+ 10
+ Copied for DestinationAmi ami-7d85fd6b from SourceAmi ami-224c2a42 for SourceSnapshot snap-087bd8461c5cd52a0. Task created on 1,495,117,314,923.
+ false
+
+ -
+ snap-0001b68fed820fb79
+ vol-67606d2d
+ completed
+ 2017-04-26T15:30:37.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-67606d2d
+ false
+
+ -
+ snap-0f1eb18bc955eb28a
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-04-26T15:30:37.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c78ca2afaa671102
+ vol-0acad09812d803c09
+ completed
+ 2017-03-17T07:24:40.000Z
+
+ 200278856672
+ 1
+ EmsRefreshSpecSnapshotOfVpc1Desc
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+
-
+ Name
+ EmsRefreshSpecSnapshotOfVpc1
+
+
+
+ -
+ snap-055095f47fab5e749
+ vol-0e1613cacf4688009
+ completed
+ 2017-03-17T07:21:12.000Z
+
+ 200278856672
+ 1
+ EmsRefreshSpecSnapshotDesc
+ false
+
+
-
+ Name
+ EmsRefreshSpecSnapshot
+
+
+
+ -
+ snap-0400b13c0acfdffa9
+ vol-0b80eb1a867cd27f8
+ completed
+ 2018-07-17T15:29:53.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0a67c549558c9c392) for ami-cf96afb0 from vol-0b80eb1a867cd27f8
+ false
+
+ -
+ snap-08babfa12e1a6b948
+ vol-ffffffff
+ completed
+ 2018-05-02T22:50:21.000Z
+
+ 200278856672
+ 41
+ Created by AWS-VMImport service for import-ami-ffhlve05
+ false
+
+
-
+ Name
+ simaishi
+
+
+
+ -
+ snap-064b688768dd7a1a2
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T23:53:43.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-0c14d3a2d3706ffc4
+ vol-0d923fe770ed2486c
+ completed
+ 2017-12-13T21:26:35.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-test-again-snap
+
+
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:24 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:25 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -14953,14 +29140,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075224Z
+ - 20180906T091526Z
X-Amz-Content-Sha256:
- 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d2652a4d7c1ad3b0da43b6fdd627df2fc1ea11566002de9370b4218db243b971
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=8faf7d9744aef29c71a06e5a0da614cd8e294119a440829a2167de231a343f9f
Content-Length:
- '43'
Accept:
@@ -14977,7 +29164,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:19 GMT
+ - Thu, 06 Sep 2018 09:15:25 GMT
Server:
- AmazonEC2
body:
@@ -14985,46 +29172,183 @@ http_interactions:
string: |-
- 0286c270-48fd-4bdd-89da-41824f68363b
+ 9f85dd31-0f00-43e8-a54e-9c0fdd79afac
-
- r-06329810cfd223fe6
+ r-0dece58a7cd92b3d1
+ 200278856672
+
+
+
-
+ i-0828f09c91ab89a97
+ ami-6869aa05
+
+
16
+ running
+
+ ip-10-0-0-166.ec2.internal
+ ec2-54-236-58-214.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t2.nano
+ 2018-03-01T21:31:41.000Z
+
+ us-east-1c
+
+ default
+
+
+ enabled
+
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.166
+ 54.236.58.214
+ true
+
+ -
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+ x86_64
+ ebs
+ /dev/xvda
+
+ -
+ /dev/xvda
+
+ vol-080996fdeaee13caf
+ attached
+ 2018-03-01T21:31:42.000Z
+ true
+
+
+
+ hvm
+ 3915878d-e94c-34d2-cc86-59a30d686241_subnet-de2363bb_1
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ WebServerFleet
+
+ -
+ aws:autoscaling:groupName
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+
+ xen
+
+ -
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+
+ 200278856672
+ in-use
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+
-
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+
+
+
+ eni-attach-f41e8d30
+ 0
+ attached
+ 2018-03-01T21:31:41.000Z
+ true
+
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+ -
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
+ true
+
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
+
+
+
+
+
+
+ false
+ true
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0d9d5788168db3796
200278856672
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
+ i-02cc7ad4129cefe1b
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-10-0-1-85.ec2.internal
+ ip-172-30-0-32.ec2.internal
-
- MIQ_SSA
+ User initiated (2018-04-05 18:52:08 GMT)
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
0
t2.micro
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.32
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -15032,100 +29356,112 @@ http_interactions:
-
/dev/sda1
- vol-000f77902b1a16428
+ vol-0390b378515bffd1c
attached
- 2017-08-29T19:14:36.000Z
- true
+ 2018-04-05T18:29:10.000Z
+ false
hvm
- ptDPo1504034075390
+
-
- hsong-ssa
-
+ Name
+ smartstate
xen
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+
200278856672
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-38511448
- launch-wizard-47
+ sg-67541b15
+ smartstate
- eni-attach-075e6227
+ eni-attach-39fcca94
0
attached
- 2017-08-29T19:14:36.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 10.0.1.85
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-003249dcbdd91448e
+ r-016047928b31890f5
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
+ i-0297a2b1075b3a2c6
+ ami-5769193e
80
stopped
- ip-10-0-1-87.ec2.internal
+
- User initiated (2017-06-07 16:32:25 GMT)
+ User initiated
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-22T20:35:56.000Z
+ t1.micro
+ 2018-04-05T10:08:22.000Z
- us-east-1e
+ us-east-1b
default
+ aki-1eceaf77
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
- true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+ Server.ScheduledStop
+ Server.ScheduledStop: Stopped due to scheduled retirement
x86_64
ebs
@@ -15134,18 +29470,171 @@ http_interactions:
-
/dev/sda1
- vol-0385dfce3061ff5a9
+ vol-0e7609b478fe9ca91
attached
- 2017-05-22T20:35:57.000Z
- false
+ 2018-04-05T10:08:23.000Z
+ true
+
+ paravirtual
+
+
-
- /dev/sdf
+ Name
+ mslemr
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+
+ -
+ r-0c663d21f79568609
+ 200278856672
+
+
-
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ -
+ i-08be28f4282ed4ad4
+ ami-2a69aa47
+
+
48
+ terminated
+
+
+
+ User initiated (2018-09-06 08:15:57 GMT)
+ EmsRefreshSpec-KeyPair
+ 0
+
+ t1.micro
+ 2018-09-04T12:12:32.000Z
+
+ us-east-1c
+
+ default
+
+ aki-919dcaf8
+
+ enabled
+
+
+ -
+ sg-0566ad57a024f4a77
+ SC-200278856672-pp-kmmlut3eog5jm-InstanceSecurityGroup-2984TVL3S3VX
+
+
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ paravirtual
+ 7d059691-fe62-f535-e7ea-0a624a005710_us-east-1c_1
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-kmmlut3eog5jm
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-kmmlut3eog5jm/bbf31830-b03b-11e8-a5b6-500c28635c99
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-kmmlut3eog5jm-WebServerGroup-1EK62SOZ9B3YA
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+
+ xen
+
+ false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+ -
+ r-0bc3ae5e3f08c8a44
+ 200278856672
+
+
+
-
+ i-0125949f65c1e5528
+ ami-70e8fd66
+
+
16
+ running
+
+ ip-10-2-0-152.ec2.internal
+
+
+ hsong_centos_atomic
+ 0
+
+ t2.micro
+ 2018-03-06T18:29:43.000Z
+
+ us-east-1c
+
+ default
+
+
+ disabled
+
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.152
+ 52.3.221.140
+ true
+
+ -
+ sg-5c49922a
+ launch-wizard-26
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
- vol-0ed526ebed417656f
+ vol-006fabcff33ae5272
attached
- 2017-05-22T20:35:57.000Z
+ 2018-03-06T18:29:43.000Z
false
@@ -15155,88 +29644,103 @@ http_interactions:
-
Name
- test_billy_20170522_v2
+ hsong-centos
xen
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ Primary network interface
200278856672
in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-ff35f0d1
+ eni-attach-3be67cff
0
attached
- 2017-05-22T20:35:56.000Z
+ 2018-03-06T18:29:43.000Z
true
+
+ 52.3.221.140
+
+ amazon
+
-
- 10.0.1.87
+ 10.2.0.152
true
+
+ 52.3.221.140
+
+ amazon
+
+
+ arn:aws:iam::200278856672:instance-profile/hsong-test
+ AIPAJHZDRXJSHR6XTZHPI
+
false
+
+ 1
+ 1
+
-
- r-0e65ce29775f6d8fc
+ r-072fcf51c1deca398
200278856672
-
- i-0d794150f7fd264c4
- ami-3f0e495a
+ i-0510954911e45949b
+ ami-c998b6b2
-
80
- stopped
+ 16
+ running
- ip-10-2-0-191.ec2.internal
+ ip-10-0-1-66.ec2.internal
- User initiated (2017-06-26 19:23:18 GMT)
+
+ bronaghkeypair
0
- t2.small
- 2017-06-09T15:00:46.000Z
+ t2.micro
+ 2017-12-13T14:43:34.000Z
- us-east-1c
+ us-east-1d
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.191
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.66
true
-
- sg-4cc30d32
- default
+ sg-a5b994d0
+ launch-wizard-14
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -15244,19 +29748,10 @@ http_interactions:
-
/dev/sda1
- vol-0290849f78dccf167
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-083b1f1e71831ba7e
+ vol-0d3587406018a8205
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2017-12-13T14:43:35.000Z
+ true
@@ -15265,37 +29760,37 @@ http_interactions:
-
Name
- test_billy0002
+ bronagh
xen
-
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
-
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-4cc30d32
- default
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-877ba01f
+ eni-attach-0dbdb6d5
0
attached
- 2017-06-09T15:00:46.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 10.2.0.191
+ 10.0.1.66
true
@@ -15303,48 +29798,56 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-057ea81c4767b9a2a
+ r-066d4d1b049774f63
200278856672
-
- i-02975d4eb8e53bafd
- ami-b63769a1
+ i-0274ada368eb4da36
+ ami-70e8fd66
-
16
- running
+ 80
+ stopped
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
-
- MIQ_SSA
+ ip-10-0-0-91.ec2.internal
+
+ User initiated (2017-10-30 21:33:49 GMT)
+ hsong-keypair
0
t2.micro
- 2017-09-25T18:21:15.000Z
+ 2017-10-30T21:20:33.000Z
- us-east-1a
+ us-east-1c
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ 10.0.0.91
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-8dff68ff
+ launch-wizard-53
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -15352,62 +29855,52 @@ http_interactions:
-
/dev/sda1
- vol-0f151bad0c041c2db
+ vol-0d76e68ae71222b49
attached
- 2017-08-10T19:10:06.000Z
- true
+ 2017-10-20T03:07:59.000Z
+ false
hvm
-
+ sbRkK1508468877905
-
Name
- MIQ_SSA
+ ssa-docker
xen
-
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-47ff1251
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ Primary network interface
200278856672
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-f902c21c
+ eni-attach-5fcc62c4
0
attached
- 2017-08-10T19:10:05.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
@@ -15415,288 +29908,342 @@ http_interactions:
arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
+ AIPAJB66KPP4NYH7OLI2I
false
+
+ 1
+ 1
+
-
- r-02b7af2df00a8de50
+ r-1842f370
200278856672
-
- i-0150ac66c83e0eae8
- ami-6869aa05
+ i-8b5739f2
+ ami-5769193e
16
running
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
+ ip-10-0-0-254.ec2.internal
+
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-02T19:39:36.000Z
+ t1.micro
+ 2017-09-13T16:07:19.000Z
- us-east-1c
+ us-east-1e
default
+ aki-1eceaf77
- enabled
+ disabled
- subnet-de2363bb
- vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
+ subnet-f849ff96
+ vpc-ff49ff91
+ 10.0.0.254
+ 54.208.119.197
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-02e5c41d12060ab3b
+ vol-67606d2d
attached
- 2017-05-02T19:39:37.000Z
+ 2013-09-23T20:11:57.000Z
true
-
- hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
-
- -
- aws:cloudformation:logical-id
- WebServerFleet
-
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ /dev/sdf
+
+ vol-0e4c86c12b28cead8
+ attached
+ 2017-03-17T07:22:23.000Z
+ false
+
+
+ paravirtual
+ aPCzL1379967112359
+
-
- Network
- Public
+ Name
+ EmsRefreshSpec-PoweredOn-VPC
-
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ owner
+ UNKNOWN
xen
-
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
-
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-3a6592a2
+ eni-attach-05fac66f
0
attached
- 2017-05-02T19:39:36.000Z
+ 2013-09-23T20:11:52.000Z
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.254
true
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
+ 54.208.119.197
+
+ 200278856672
+ -
+ 10.0.0.208
+
+ false
+
false
- true
+
+ 1
+ 1
+
- 226008221399
-
- r-083cc6d943a6cc2e8
+ r-0c0e56163429b9a46
200278856672
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
+ i-0bca58e6e540ddc39
+ ami-6869aa05
16
running
- ip-10-0-1-78.ec2.internal
+ ip-10-2-0-239.ec2.internal
- bsorota
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-13T14:58:47.000Z
+ t2.nano
+ 2017-05-03T10:47:06.000Z
- us-east-1e
+ us-east-1c
default
- enabled
+ disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
+ subnet-2190b144
+ vpc-8cf117f5
+ 10.2.0.239
+ 34.202.178.10
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-06c7662068fe81b92
+ vol-0628a6ce987d4cb6e
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:07.000Z
true
hvm
- IIQTn1487263246120
+ EmsRe-WebSe-1229KQXQO3HUK
-
- foo
- bar
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
Name
- bronagh-events-test
+ EmsRefreshSpecStack
-
- owner
- bronaghs
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerInstance
xen
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-8fefae9b
+ subnet-2190b144
+ vpc-8cf117f5
+
200278856672
in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-45f9a86f
+ eni-attach-cbd22453
0
attached
- 2017-02-16T16:40:47.000Z
+ 2017-05-03T10:47:06.000Z
true
+
+ 34.202.178.10
+
+ 200278856672
+
-
- 10.0.1.78
+ 10.2.0.239
true
+
+ 34.202.178.10
+
+ 200278856672
+
false
+ true
+
+ 1
+ 1
+
-
- r-063763c7bd0616325
+ r-076deaba20c4af747
200278856672
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
+ i-0e1752ff841801f65
+ ami-5769193e
-
16
- running
+ 80
+ stopped
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
-
- ladas_test
+
+
+ User initiated (2018-09-03 12:12:01 GMT)
+ EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-05T14:04:30.000Z
+ 2018-09-03T12:10:36.000Z
- us-east-1d
+ us-east-1e
default
+ aki-1eceaf77
disabled
- 10.233.77.119
- 54.81.241.87
-
- sg-28999abf
- launch-wizard-12
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -15704,61 +30251,77 @@ http_interactions:
-
/dev/sda1
- vol-02a26016b0b7a9450
+ vol-076672a9b80ac2e25
attached
- 2017-05-05T14:04:33.000Z
+ 2018-09-03T12:10:36.000Z
true
paravirtual
- qWVKg1493993070283
+
+
+ -
+ owner
+ UNKNOWN
+
+ -
+ Name
+ EmsRefreshSpec-PoweredOff
+
+
xen
false
+
+ 1
+ 1
+
-
- r-38bafd9b
+ r-05e4ba632b214dc1e
200278856672
-
- i-fb694e66
- ami-5769193e
+ i-0622ab75f5f2ba752
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-109.ec2.internal
+ ip-10-0-8-55.ec2.internal
-
- EmsRefreshSpec-KeyPair
+ User initiated (2018-06-11 07:36:51 GMT)
+ ladas_ansible
0
- t1.micro
- 2017-09-06T21:07:48.000Z
+ t2.nano
+ 2018-06-11T07:26:10.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -15766,93 +30329,85 @@ http_interactions:
-
/dev/sda1
- vol-3bc4d1ea
+ vol-06e9ef72a99dcc223
attached
- 2016-05-10T20:56:38.000Z
+ 2018-06-06T18:52:18.000Z
true
- paravirtual
- uBCLe1462913797292
+ hvm
+
-
Name
- VMstate-8
+ ladas_ansible_test_2__1
-
- owner
- UNKNOWN
+ TestTag2
+ test2__1
+
+ -
+ TestTag
+ test2__1
xen
-
- eni-a3902b84
- subnet-f849ff96
+ eni-e404c272
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-12a4c3e2
+ eni-attach-838d7a26
0
attached
- 2016-05-10T20:56:37.000Z
- true
-
-
- 54.163.162.32
-
- amazon
-
+ 2018-06-06T18:52:17.000Z
+ true
+
-
- 10.0.0.109
+ 10.0.8.55
true
-
- 54.163.162.32
-
- amazon
-
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-0ce8dea404618f3a5
- 200278856672
-
-
-
- i-03d706b95aa8b12ce
- ami-271e7c31
+ i-002ca40492fff0e67
+ ami-a4dc46db
80
stopped
- ip-10-0-1-229.ec2.internal
+ ip-10-0-8-133.ec2.internal
- User initiated (2017-06-20 17:19:50 GMT)
- james
- 0
+ User initiated (2018-06-15 13:10:24 GMT)
+ ladas_ansible
+ 1
- t2.medium
- 2017-06-16T20:54:01.000Z
+ t2.nano
+ 2018-06-15T13:08:32.000Z
us-east-1e
@@ -15861,14 +30416,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
@@ -15882,49 +30437,57 @@ http_interactions:
-
/dev/sda1
- vol-096d40746df01e27b
+ vol-096db62af3cb45d75
attached
- 2017-06-16T20:54:01.000Z
- false
+ 2018-06-06T18:52:18.000Z
+ true
hvm
- DpMDq1497646440165
+
+ -
+ TestTag
+ test2__0
+
-
Name
- Ansible Tower Trial Instance
+ ladas_ansible_test_2__0
+
+ -
+ TestTag2
+ test2__0
xen
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
+
200278856672
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-000ff571
- launch-wizard-46
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-4735d966
+ eni-attach-828d7a27
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.229
+ 10.0.8.133
true
@@ -15932,50 +30495,55 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-02d2f89dd4a54f2de
+ r-00a2f9d88c2068981
200278856672
-
- i-013f45a83fd938928
- ami-3f0e495a
+ i-05d2313e6b9a42b16
+ ami-6871a115
-
80
- stopped
+ 16
+ running
- ip-10-2-0-15.ec2.internal
+ ip-10-0-1-192.ec2.internal
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
+
+ julian cheal
0
t2.micro
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
- us-east-1c
+ us-east-1d
default
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
@@ -15984,58 +30552,43 @@ http_interactions:
-
/dev/sda1
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
+ vol-0eb5ddcf735f22184
attached
- 2017-06-07T15:59:48.000Z
- false
+ 2018-04-26T10:03:06.000Z
+ true
hvm
-
- -
- Name
- test_billy0001
-
-
xen
-
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
-
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-4cc30d32
- default
+ sg-041d424d
+ launch-wizard-36
- eni-attach-63ae77fb
+ eni-attach-7e503066
0
attached
- 2017-06-07T15:59:47.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.2.0.15
+ 10.0.1.192
true
@@ -16043,50 +30596,53 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-04c0352eb6024667f
+ r-09188ea8e40a2b4d8
200278856672
-
+
+
-
+ sg-347f9b5d
+ default
+
+
-
- i-091fe7ccd76ddac3b
- ami-0092b117
+ i-09b65a1400b9538ff
+ ami-5769193e
16
running
- ip-10-0-1-239.ec2.internal
-
+ ip-10-149-203-110.ec2.internal
+ ec2-75-101-229-189.compute-1.amazonaws.com
- bmclaugh
0
- t2.micro
- 2017-08-24T15:40:38.000Z
+ t1.micro
+ 2018-07-25T11:01:38.000Z
- us-east-1e
+ us-east-1c
default
+ aki-1eceaf77
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
- true
+ 10.149.203.110
+ 75.101.229.189
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-347f9b5d
+ default
x86_64
@@ -16096,139 +30652,68 @@ http_interactions:
-
/dev/sda1
- vol-04fc5431c4edd9bb6
+ vol-04d23aa0121812de9
attached
- 2017-05-16T18:19:22.000Z
+ 2018-07-25T11:01:38.000Z
true
- hvm
- HqLiY1494958760362
+ paravirtual
+
-
Name
- bmclaugh_console_test
+ mslemr-test4
xen
-
- -
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
-
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-88392ea7
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- -
- 10.0.0.129
- true
-
-
-
-
-
+
false
+
+ 1
+ 1
+
-
- r-1842f370
+ r-0a1dcdbc4e3f20db0
200278856672
-
- i-8b5739f2
- ami-5769193e
+ i-004f3bd30726946d1
+ ami-2051294a
16
running
- ip-10-0-0-254.ec2.internal
+ ip-10-0-8-25.ec2.internal
- EmsRefreshSpec-KeyPair
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
0
t1.micro
- 2017-09-13T16:07:19.000Z
+ 2018-02-06T09:49:36.000Z
us-east-1e
default
- aki-1eceaf77
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
+ 10.0.8.25
true
+ -
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
@@ -16241,253 +30726,189 @@ http_interactions:
-
/dev/sda1
- vol-67606d2d
+ vol-00198c2e466b380ac
attached
- 2013-09-23T20:11:57.000Z
+ 2018-02-06T09:49:36.000Z
true
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
- paravirtual
- aPCzL1379967112359
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
+ ladas-test-foreman.ec2.internal
xen
-
- eni-ad25f7cc
- subnet-f849ff96
+ eni-88c5a245
+ subnet-5f5a9670
vpc-ff49ff91
- Primary network interface
+
200278856672
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
+
-
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-05fac66f
+ eni-attach-d82c7915
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 54.208.119.197
-
- 200278856672
-
-
- 10.0.0.254
+ 10.0.8.25
true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
false
+
+ 1
+ 1
+
-
- r-0c0e56163429b9a46
+ r-18ca6cb0
200278856672
-
+
+
-
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
+
+
-
- i-0bca58e6e540ddc39
- ami-6869aa05
+ i-680071e9
+ ami-5769193e
16
running
- ip-10-2-0-239.ec2.internal
-
+ ip-10-91-143-248.ec2.internal
+ ec2-54-221-202-53.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
- t2.nano
- 2017-05-03T10:47:06.000Z
+ t1.micro
+ 2017-09-07T14:42:55.000Z
- us-east-1c
+ us-east-1e
default
+ aki-1eceaf77
disabled
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
- true
+ 10.91.143.248
+ 54.221.202.53
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-038e8a69
+ EmsRefreshSpec-SecurityGroup1
+
+ -
+ sg-12898d78
+ EmsRefreshSpec-SecurityGroup2
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-0628a6ce987d4cb6e
+ vol-b6fa656a
attached
- 2017-05-03T10:47:07.000Z
+ 2016-01-07T19:58:39.000Z
true
- hvm
- EmsRe-WebSe-1229KQXQO3HUK
+ paravirtual
+ JwNdr1452196715903
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
+ owner
+ UNKNOWN
-
- aws:cloudformation:logical-id
- WebServerInstance
+ Name
+ EmsRefreshSpec-PoweredOn-Basic3
xen
-
- -
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
- true
-
-
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
-
- eni-attach-cbd22453
- 0
- attached
- 2017-05-03T10:47:06.000Z
- true
-
-
- 34.202.178.10
-
- 200278856672
-
-
- -
- 10.2.0.239
- true
-
- 34.202.178.10
-
- 200278856672
-
-
-
-
-
-
+
false
- true
+
+ 1
+ 1
+
-
- r-051854d34993ed969
+ r-052a327ea7fccec89
200278856672
-
- i-0347d4075310c21e6
- ami-3f0e495a
+ i-0015ec0007f4d13a7
+ ami-70e8fd66
80
stopped
- ip-10-0-1-167.ec2.internal
+ ip-172-30-0-44.ec2.internal
- User initiated (2017-03-22 18:08:49 GMT)
- db
+ User initiated (2018-03-15 13:31:56 GMT)
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
0
- t2.small
- 2017-03-21T19:39:50.000Z
+ t2.micro
+ 2018-03-15T13:27:36.000Z
- us-east-1e
+ us-east-1a
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.44
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
@@ -16501,18 +30922,9 @@ http_interactions:
-
/dev/sda1
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
+ vol-0a184b5b739d382d8
attached
- 2017-03-21T19:39:51.000Z
+ 2018-03-15T13:27:37.000Z
false
@@ -16522,92 +30934,97 @@ http_interactions:
-
Name
- tina_test_march21001
+ smartstate
xen
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
200278856672
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
+ eni-attach-22e6878f
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 10.0.1.167
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-052a9ecb9d478b8d6
+ r-0cca17241eb40667c
200278856672
-
+
+
-
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+
+
-
- i-099e794cfa830e9be
- ami-2051294a
+ i-03769bc6ccaba947a
+ ami-2a69aa47
16
running
- ip-10-0-0-4.ec2.internal
-
+ ip-10-231-214-59.ec2.internal
+ ec2-54-196-64-159.compute-1.amazonaws.com
- ladas
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-09-04T13:26:00.000Z
+ t1.micro
+ 2018-09-04T13:39:05.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
enabled
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
- true
+ 10.231.214.59
+ 54.196.64.159
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
x86_64
@@ -16617,102 +31034,76 @@ http_interactions:
-
/dev/sda1
- vol-00306cda05dec2db5
+ vol-0eb026a02c6666ea0
attached
- 2017-09-04T13:26:01.000Z
+ 2018-09-04T13:39:05.000Z
true
- hvm
-
+ paravirtual
+ 51f59693-3b62-19f2-3fc8-f2545169143f_us-east-1d_1
-
- Name
- ladas_test112
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
- xen
-
-
- eni-6933e6c9
- subnet-f849ff96
- vpc-ff49ff91
- test
- 200278856672
- in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
- true
-
-
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
-
- eni-attach-de56932b
- 0
- attached
- 2017-09-04T13:26:00.000Z
- true
-
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.4
- true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
-
-
-
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
-
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+
+
+ xen
+
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-0330333bbdf03e149
+ r-09dd2a3970815aaee
200278856672
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
+ i-066465f361331dfa6
+ ami-a4dc46db
-
16
- running
+ 80
+ stopped
- ip-10-0-0-236.ec2.internal
+ ip-10-0-8-108.ec2.internal
-
- ladas
- 0
+ User initiated (2018-05-25 15:48:14 GMT)
+ ladas_ansible
+ 1
t2.micro
- 2017-09-07T12:23:45.000Z
+ 2018-05-25T15:39:08.000Z
us-east-1e
@@ -16721,17 +31112,20 @@ http_interactions:
disabled
- subnet-f849ff96
+ subnet-5f5a9670
vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
+ 10.0.8.108
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/sda1
@@ -16739,9 +31133,9 @@ http_interactions:
-
/dev/sda1
- vol-0ac7a66512bf0d20c
+ vol-0875db6c16a8e9335
attached
- 2017-09-07T12:23:46.000Z
+ 2018-05-24T13:44:27.000Z
true
@@ -16751,76 +31145,65 @@ http_interactions:
-
Name
- ladas_test_40
+ ladas_ansible_test_2
xen
-
- eni-b9cc7f19
- subnet-f849ff96
+ eni-47cd6fd0
+ subnet-5f5a9670
vpc-ff49ff91
-
+ Primary network interface
200278856672
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-08314440
+ launch-wizard-38
- eni-attach-0b3482fe
+ eni-attach-b64f3e14
0
attached
- 2017-09-07T12:23:45.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 52.70.78.137
-
- 200278856672
-
-
- 10.0.0.236
+ 10.0.8.108
true
-
- 52.70.78.137
-
- 200278856672
-
false
+ true
+
+ 1
+ 1
+
-
-
- -
- r-03174ab388e42d485
- 200278856672
-
-
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
+ i-0c37a7d012922752e
+ ami-a4dc46db
80
stopped
- ip-10-0-1-70.ec2.internal
+ ip-10-0-8-189.ec2.internal
- User initiated (2017-05-02 13:12:28 GMT)
+ User initiated (2018-05-25 15:48:15 GMT)
+ ladas_ansible
0
- t2.medium
- 2017-04-12T18:17:01.000Z
+ t2.micro
+ 2018-05-25T15:39:09.000Z
us-east-1e
@@ -16829,14 +31212,14 @@ http_interactions:
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
+ subnet-5f5a9670
+ vpc-ff49ff91
+ 10.0.8.189
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
@@ -16850,19 +31233,10 @@ http_interactions:
-
/dev/sda1
- vol-0816f373502e8db24
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
+ vol-06bc83fa0e7bd77c4
attached
- 2017-04-12T18:17:03.000Z
- false
+ 2018-05-24T13:44:27.000Z
+ true
@@ -16871,37 +31245,37 @@ http_interactions:
-
Name
- tina_take_two002
+ ladas_ansible_test_2
xen
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-24362241
- default
+ sg-08314440
+ launch-wizard-38
- eni-attach-59c6f675
+ eni-attach-494c3deb
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.70
+ 10.0.8.189
true
@@ -16909,97 +31283,109 @@ http_interactions:
false
+ true
+
+ 1
+ 1
+
-
- r-01228013207b85dad
+ r-0b0ebf36d34acdaa6
200278856672
-
- i-08c033357b433ea2c
- ami-0b33d91d
+ i-0a67c549558c9c392
+ ami-26ebbc5c
-
16
- running
+ 80
+ stopped
- ip-10-0-1-155.ec2.internal
+ ip-10-0-1-165.ec2.internal
-
- bd
+ User initiated (2018-07-09 19:41:17 GMT)
0
- t2.nano
- 2017-09-05T13:28:00.000Z
+ t2.micro
+ 2018-04-24T18:47:14.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.165
true
-
- sg-65d59519
- launch-wizard-37
+ sg-b00affc6
+ launch-wizard-23
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- vol-01aca96e22103f767
+ vol-0b80eb1a867cd27f8
attached
- 2017-02-14T16:18:29.000Z
+ 2018-02-28T16:08:25.000Z
true
hvm
- hPmBd1487089108162
+
-
Name
- mhild
+ julian_le_noir
+
+ -
+ tag_key
+ test_tag
xen
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
Primary network interface
200278856672
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-65d59519
- launch-wizard-37
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-2d92e207
+ eni-attach-87883f81
0
attached
- 2017-02-14T16:18:28.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.0.1.155
+ 10.0.1.165
true
@@ -17008,61 +31394,65 @@ http_interactions:
false
true
+
+ 1
+ 1
+
-
- r-0e0f81bfeea774100
+ r-0b5184e8fed7c403a
200278856672
-
- i-0951b95d6db76519d
- ami-b63769a1
+ i-02007c8f386e74470
+ ami-55ef662f
-
80
- stopped
+ 16
+ running
- ip-172-30-0-105.ec2.internal
+ ip-10-0-1-179.ec2.internal
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
+
+ bronaghkeypair1213
0
t2.micro
- 2017-08-29T15:52:11.000Z
+ 2017-12-13T15:04:34.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.105
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.179
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-2899b45d
+ launch-wizard-16
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
+
+
x86_64
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- vol-0ea3efc6f99654381
+ vol-07be95279f27e791f
attached
- 2017-07-26T15:15:30.000Z
+ 2017-12-13T15:04:35.000Z
true
@@ -17072,101 +31462,96 @@ http_interactions:
-
Name
- MIQ_SSA
+ bronagh1213
+
+ -
+ AWS_Tier
+ Gold
xen
-
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
-
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-4451b1a7
+ eni-attach-e6616b3e
0
attached
- 2017-07-26T15:15:29.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 10.0.1.179
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-18ca6cb0
+ r-0dbeaadfed0a4ba6a
200278856672
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
-
- i-680071e9
- ami-5769193e
+ i-00eda271fc8d71e7e
+ ami-2a69aa47
16
running
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
+ ip-10-182-106-171.ec2.internal
+ ec2-54-237-177-195.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-09-07T14:42:55.000Z
+ 2018-09-06T08:19:39.000Z
- us-east-1e
+ us-east-1c
default
- aki-1eceaf77
+ aki-919dcaf8
- disabled
+ enabled
- 10.91.143.248
- 54.221.202.53
+ 10.182.106.171
+ 54.237.177.195
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
x86_64
@@ -17176,77 +31561,92 @@ http_interactions:
-
/dev/sda1
- vol-b6fa656a
+ vol-0491256daac0cf880
attached
- 2016-01-07T19:58:39.000Z
+ 2018-09-06T08:19:39.000Z
true
paravirtual
- JwNdr1452196715903
+ bd2596b7-dc7c-e25d-b21e-8361e927627f_us-east-1c_1
-
- owner
- UNKNOWN
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
-
- Name
- EmsRefreshSpec-PoweredOn-Basic3
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-gato4drzgerpy
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-gato4drzgerpy-WebServerGroup-UPQDGUBBE1FL
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
xen
false
+
+ 1
+ 1
+
+ 940372691376
-
- r-06a48602fb689eb1b
+ r-0dee19ffc1a9d96c4
200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
+
-
- i-047886b9fd2397967
- ami-5769193e
+ i-0fb9010fdcfe4d050
+ ami-70e8fd66
80
stopped
-
+ ip-172-30-0-213.ec2.internal
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
+ User initiated (2018-04-17 08:32:22 GMT)
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
0
- t1.micro
- 2017-09-26T07:48:52.000Z
+ t2.micro
+ 2018-04-17T08:15:14.000Z
- us-east-1e
+ us-east-1a
default
- aki-1eceaf77
disabled
+ subnet-e88815d5
+ vpc-aee2a6ca
+ 172.30.0.213
+ true
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ sg-67541b15
+ smartstate
@@ -17260,51 +31660,89 @@ http_interactions:
-
/dev/sda1
- vol-0c2aaf810c8925376
+ vol-070d695244916edf4
attached
- 2017-09-26T07:48:52.000Z
- true
+ 2018-02-26T18:31:28.000Z
+ false
- paravirtual
- lGtNQ1506412131645
+ hvm
+
-
Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
+ smartstate
xen
-
+
+ -
+ eni-8fbc5335
+ subnet-e88815d5
+ vpc-aee2a6ca
+
+ 200278856672
+ in-use
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
-
+ sg-67541b15
+ smartstate
+
+
+
+ eni-attach-fbede525
+ 0
+ attached
+ 2018-02-26T18:31:27.000Z
+ true
+
+
+ -
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
+ true
+
+
+
+
+
+
+ arn:aws:iam::200278856672:instance-profile/smartstate
+ AIPAIEFE3FI2IMU2XKWNS
+
false
+
+ 1
+ 1
+
-
- r-0cac97e7f6d09c34a
+ r-08722bad9d42340ba
200278856672
-
- i-0fca61ededa522f1a
+ i-0639022117944a668
ami-63ac180a
16
running
- ip-10-0-0-36.ec2.internal
+ ip-10-0-0-98.ec2.internal
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
us-east-1e
@@ -17316,8 +31754,8 @@ http_interactions:
subnet-f849ff96
vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
+ 10.0.0.98
+ 54.172.168.193
true
-
@@ -17332,15 +31770,15 @@ http_interactions:
-
/dev/sda1
- vol-097f300050f495d06
+ vol-0b2d1d3b42eb03555
attached
- 2017-05-02T19:39:50.000Z
+ 2018-03-15T13:28:48.000Z
true
paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
+ 30d588a7-6504-b4a9-4edc-d2c47645937c_subnet-f849ff96_1
-
aws:autoscaling:groupName
@@ -17350,14 +31788,14 @@ http_interactions:
xen
-
- eni-fe24b408
+ eni-17e6c4d8
subnet-f849ff96
vpc-ff49ff91
200278856672
in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -17366,23 +31804,23 @@ http_interactions:
- eni-attach-0e5ec721
+ eni-attach-5225809d
0
attached
- 2017-05-02T19:39:49.000Z
+ 2018-03-15T13:28:47.000Z
true
- 54.145.134.133
+ 54.172.168.193
amazon
-
- 10.0.0.36
+ 10.0.0.98
true
- 54.145.134.133
+ 54.172.168.193
amazon
@@ -17392,46 +31830,50 @@ http_interactions:
false
+
+ 1
+ 1
+
226008221399
-
- r-045f6da0fe48accc5
+ r-0098192b5619646aa
200278856672
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
+ i-0d0cbf4c0a5e4f8fc
+ ami-26ebbc5c
80
stopped
- ip-172-30-0-113.ec2.internal
+ ip-172-30-3-177.ec2.internal
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
+ User initiated (2018-08-03 11:03:07 GMT)
+ stomsa
0
t2.micro
- 2017-07-17T21:02:54.000Z
+ 2018-03-15T07:09:23.000Z
- us-east-1a
+ us-east-1d
default
disabled
- subnet-e88815d5
+ subnet-bc418ce4
vpc-aee2a6ca
- 172.30.0.113
+ 172.30.3.177
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
@@ -17445,9 +31887,9 @@ http_interactions:
-
/dev/sda1
- vol-0657f371b97c0f147
+ vol-00991e8e4231720cb
attached
- 2017-07-17T19:21:46.000Z
+ 2018-03-12T13:48:52.000Z
true
@@ -17457,80 +31899,81 @@ http_interactions:
-
Name
- MIQ_SSA
+ stomsa
xen
-
- eni-5836d558
- subnet-e88815d5
+ eni-44432b95
+ subnet-bc418ce4
vpc-aee2a6ca
-
+ Primary network interface
200278856672
in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a86bf7de
+ stomsa
- eni-attach-cd97a82d
+ eni-attach-2bb4992d
0
attached
- 2017-07-17T19:21:45.000Z
+ 2018-03-12T13:48:51.000Z
true
-
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+ true
+
+ 1
+ 1
+
-
- r-001ade0887ad9089f
+ r-0edfc71118172d410
200278856672
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
-
- i-025623c4c4e4f84a0
+ i-038bc46a57b2ad428
ami-2a69aa47
16
running
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
+ ip-10-88-183-52.ec2.internal
+ ec2-54-237-142-243.compute-1.amazonaws.com
EmsRefreshSpec-KeyPair
0
t1.micro
- 2017-08-31T00:02:52.000Z
+ 2018-09-06T08:19:19.000Z
- us-east-1d
+ us-east-1c
default
@@ -17538,12 +31981,12 @@ http_interactions:
enabled
- 10.51.177.218
- 54.224.115.150
+ 10.88.183.52
+ 54.237.142.243
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
x86_64
@@ -17553,86 +31996,95 @@ http_interactions:
-
/dev/sda1
- vol-04eb2f294c5f9f7eb
+ vol-02bb1bb157d7f12de
attached
- 2017-08-31T00:02:52.000Z
+ 2018-09-06T08:19:19.000Z
true
paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
+ 452596b7-db43-25da-9bdf-1665323d18a3_us-east-1c_1
-
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
+ aws:autoscaling:groupName
+ SC-200278856672-pp-u2tepcnttldko-WebServerGroup-1JRWA7TZE4G12
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
-
aws:cloudformation:logical-id
WebServerGroup
-
- aws:autoscaling:groupName
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-u2tepcnttldko
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
-
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
xen
false
+
+ 1
+ 1
+
- 226008221399
+ 940372691376
-
- r-06c8896ff6d4d039d
+ r-094143b846043daef
200278856672
-
- i-0b1ec6330e0180f75
- ami-b63769a1
+ i-0b2631823a0fdfc76
+ ami-5769193e
-
80
- stopped
+ 16
+ running
- ip-172-30-0-103.ec2.internal
-
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
+ ip-172-30-1-91.ec2.internal
+ ec2-18-209-8-70.compute-1.amazonaws.com
+
0
- t2.micro
- 2017-09-23T18:24:21.000Z
+ t1.micro
+ 2018-07-25T10:56:16.000Z
- us-east-1a
+ us-east-1b
default
+ aki-1eceaf77
disabled
- subnet-e88815d5
+ subnet-56f55f20
vpc-aee2a6ca
- 172.30.0.103
+ 172.30.1.91
+ 18.209.8.70
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -17640,62 +32092,66 @@ http_interactions:
-
/dev/sda1
- vol-0d805ae0a434871aa
+ vol-0d62d6706c88af498
attached
- 2017-09-23T18:24:22.000Z
+ 2018-07-25T10:56:17.000Z
true
- hvm
+ paravirtual
-
- -
- Name
- MIQ_SSA
-
-
xen
-
- eni-7b9a4078
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
200278856672
in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-aa928893
+ eni-attach-d57a046c
0
attached
- 2017-09-23T18:24:21.000Z
+ 2018-07-25T10:56:16.000Z
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
false
+
+ 1
+ 1
+
@@ -17738,6 +32194,10 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+
+
+
x86_64
ebs
/dev/sda1
@@ -17818,51 +32278,55 @@ http_interactions:
false
+
+ 1
+ 1
+
-
- r-00811be44fc3b2c8f
+ r-0afdcc8251cc93fd7
200278856672
-
+
+
-
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
+ i-0aa433595b855eeeb
+ ami-2a69aa47
-
80
- stopped
+ 16
+ running
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
+ ip-10-185-167-107.ec2.internal
+ ec2-54-161-0-45.compute-1.amazonaws.com
+
+ EmsRefreshSpec-KeyPair
0
- t2.micro
- 2017-03-13T12:10:54.000Z
+ t1.micro
+ 2018-03-01T21:31:04.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
+ 10.185.167.107
+ 54.161.0.45
-
- sg-82c99dfe
- launch-wizard-38
+ sg-ea9605fc
+ EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
x86_64
ebs
/dev/sda1
@@ -17870,112 +32334,156 @@ http_interactions:
-
/dev/sda1
- vol-0e251f8b387b2d87d
+ vol-007e8c0663020ed1c
attached
- 2017-02-16T16:28:16.000Z
+ 2018-03-01T21:31:05.000Z
true
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
- hvm
- Wewzf1487262494337
+ paravirtual
+ a085878d-e710-e9cf-f52e-11e54cd1828c_us-east-1d_1
-
EmsRefreshSpecResourceGroupTag
EmsRefreshSpecResourceGroupTagValue
-
- owner
- Ladas
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStackWithAutoscalingGroup2
-
- Name
- ladas_test_5
+ aws:autoscaling:groupName
+ EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
xen
-
+
+ false
+
+ 1
+ 1
+
+
+
+ 226008221399
+
+ -
+ r-0bd40467050d37fd3
+ 200278856672
+
+
-
+ sg-347f9b5d
+ default
+
+
+
+ -
+ i-0235e2c2b4fcabeab
+ ami-5769193e
+
+
16
+ running
+
+ ip-10-180-71-172.ec2.internal
+ ec2-54-87-20-125.compute-1.amazonaws.com
+
+ 0
+
+ m3.medium
+ 2018-03-14T21:43:12.000Z
+
+ us-east-1b
+
+ default
+
+ aki-1eceaf77
+
+ disabled
+
+ 10.180.71.172
+ 54.87.20.125
+
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
+ sg-347f9b5d
+ default
+
+
+ x86_64
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ vol-07667df1666e2060a
attached
- 2017-02-16T16:28:15.000Z
+ 2018-03-14T21:43:13.000Z
true
-
-
-
-
- 10.0.1.86
- true
-
-
-
+
-
+
+ paravirtual
+
+ xen
+
false
+
+ 1
+ 1
+
-
- r-08595d55d4aa901a4
+ r-0d025657762e468f5
200278856672
-
- i-0c1542ba946875280
- ami-3f0e495a
+ i-0a7aebaf459f1f9e7
+ ami-4bf3d731
80
stopped
- ip-10-0-1-90.ec2.internal
+ ip-10-0-1-19.ec2.internal
- User initiated (2017-03-23 19:13:13 GMT)
- db
+ User initiated (2018-03-06 05:50:18 GMT)
+ james2
0
-
- t2.small
- 2017-03-21T19:41:22.000Z
+
+ -
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ t2.micro
+ 2018-03-06T05:28:40.000Z
- us-east-1e
+ us-east-1d
default
disabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
+ subnet-16c70477
+ vpc-ff49ff91
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
@@ -17989,58 +32497,49 @@ http_interactions:
-
/dev/sda1
- vol-035c47f5f5190ddc8
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
+ vol-09a10c5f98f2dd67c
attached
- 2017-03-21T19:41:23.000Z
+ 2018-03-06T05:28:40.000Z
false
hvm
-
+ 152031409666653601
-
Name
- tina_test_march21003
+ james
xen
-
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ Primary network interface
200278856672
in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-2217e50e
+ eni-attach-3a325e3c
0
attached
- 2017-03-21T19:41:22.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 10.0.1.90
+ 10.0.1.19
true
@@ -18048,45 +32547,52 @@ http_interactions:
false
+ false
+
+ 1
+ 1
+
-
- r-01136b3a8909eb8ef
+ r-0d3845bde588bc6ff
200278856672
-
+
+
-
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
+
+
-
- i-035fa3affa815d81d
- ami-3f0e495a
+ i-0e48bff566d8742b3
+ ami-2a69aa47
-
80
- stopped
+ 48
+ terminated
- ip-10-0-1-230.ec2.internal
+
- User initiated (2017-03-22 19:02:26 GMT)
- db
+ User initiated (2018-09-06 08:15:05 GMT)
+ EmsRefreshSpec-KeyPair
0
- t2.small
- 2017-03-21T19:39:52.000Z
+ t1.micro
+ 2018-09-04T12:12:02.000Z
- us-east-1e
+ us-east-1d
default
+ aki-919dcaf8
- disabled
+ enabled
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
- true
-
- sg-24362241
- default
+ sg-0cb547c6a2f770a80
+ SC-200278856672-pp-dpnpbpe64657e-InstanceSecurityGroup-TNPLXSRBPWNI
@@ -18096,5652 +32602,4867 @@ http_interactions:
x86_64
ebs
/dev/sda1
-
+
+ paravirtual
+ cbb59691-fc9b-c494-3d26-7a8f038db610_us-east-1d_1
+
-
- /dev/sda1
-
- vol-059f5f4b2a5663e65
- attached
- 2017-03-21T19:39:52.000Z
- false
-
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
-
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
- attached
- 2017-03-21T19:39:52.000Z
- false
-
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
-
- hvm
-
-
-
- Name
- tina_test_march21002
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-dpnpbpe64657e
-
- xen
-
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-9413e1b8
- 0
- attached
- 2017-03-21T19:39:52.000Z
- true
-
-
- -
- 10.0.1.230
- true
-
-
-
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
-
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-dpnpbpe64657e/aaec44d0-b03b-11e8-9dea-50d5cd24fac6
+
+ -
+ aws:cloudformation:logical-id
+ WebServerGroup
+
+ -
+ aws:autoscaling:groupName
+ SC-200278856672-pp-dpnpbpe64657e-WebServerGroup-QFZOO75XCGGD
+
+
+ xen
+
false
+
+ 1
+ 1
+
+
+
+ 940372691376
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:28 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=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091528Z
+ X-Amz-Content-Sha256:
+ - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0b7c6765a397b5be5dc028afecf5839b7077a6d83d783c68f2db2d754e1c3451
+ 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, 06 Sep 2018 09:15:27 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 5c52a101-ebbe-4c57-9046-25a083efd9af
+
+ -
+ ami-0908219546812fe3e
+ 200278856672/dberger-clone
+ available
+ 200278856672
+ 2018-08-27T21:46:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ dberger-clone
+ Clone of bronagh1213
+ ebs
+ /dev/xvda
+
+
-
+ /dev/xvda
+
+ snap-07e530b95d909f36d
+ 8
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-098d7f1f
+ 200278856672/lads_image_from_volume
+ available
+ 200278856672
+ 2017-01-27T15:52:29.000Z
+ false
+ x86_64
+ machine
+ lads_image_from_volume
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fb2163b24646b146
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-0b8474d3c25191349
+ 200278856672/import-ami-09bf69373591f57dc
+ available
+ 200278856672
+ 2018-08-31T14:30:06.000Z
+ false
+ x86_64
+ machine
+ import-ami-09bf69373591f57dc
+ AWS-VMImport service: Linux - CentOS Linux release 7.5.1804 (Core) - 3.10.0-862.11.6.el7.x86_64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03e398e6e95827703
+ 67
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ simaishi-g5
+
+
+ xen
+ true
+
+ -
+ ami-1b3cc30d
+ jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ available
+ 200278856672
+ 2017-01-30T22:12:24.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ jerryk_instance_store_ami01
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-204c8436
+ 200278856672/Ladas_test_5_image
+ available
+ 200278856672
+ 2017-02-16T15:23:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ Ladas_test_5_image
+ testing snapshot events
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-eafde662
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-20e90e49
+ jf-test-copy/jf-test-copy.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
+
-
+ Name
+
+
+
+ xen
+
+ -
+ ami-22470534
+ 200278856672/ssa-agent-0525
+ available
+ 200278856672
+ 2017-05-25T18:23:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-0525
+ working version 1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-08810574
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-25a81c4c
+ 200278856672/suse-11-server-64
+ available
+ 200278856672
+ 2012-08-22T01:42:54.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ suse-11-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6eee471d
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+ suse-11-server-64
+
+
+ xen
+
+ -
+ ami-320c005a
+ 200278856672/t2 rhel 7.1
+ available
+ 200278856672
+ 2015-04-28T17:25:53.000Z
+ false
+ x86_64
+ machine
+ t2 rhel 7.1
+ rhel
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8b289bec
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ mkanoor_t2_rhel
+
+
+ xen
+
+ -
+ ami-3bae1a52
+ 200278856672/ubuntu-11.10-server-32
+ available
+ 200278856672
+ 2012-08-22T00:31:49.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-11.10-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-968927e5
+ 8
+ false
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-32
+
+
+ xen
+
+ -
+ ami-3f0e495a
+ 200278856672/CFME5.5.0
+ available
+ 200278856672
+ 2015-09-30T16:31:07.000Z
+ false
+ x86_64
+ machine
+ CFME5.5.0
+ Red Hat CloudForms 5.5 AMI
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1d177976
+ 40
+ false
+ standard
+ false
+
+
+ -
+ /dev/sdf
+
+ snap-9dd602d7
+ 50
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+ cfme-5.5
-
+
+ xen
-
- r-05ad2451777d582ec
- 200278856672
-
+ ami-45c9df3e
+ 200278856672/ladas_test_111_snapshot_image_sdd
+ available
+ 200278856672
+ 2017-09-04T15:05:02.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image_sdd
+
+ ebs
+ /dev/sdd
+
-
- sg-347f9b5d
- default
+ /dev/sdd
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
-
-
+
+ paravirtual
+
-
- i-02c925747e07a8118
- ami-5769193e
-
-
16
- running
-
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
-
- 0
-
- m3.medium
- 2017-07-24T19:18:26.000Z
-
- us-east-1d
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.102.130.251
- 54.162.181.195
-
- -
- sg-347f9b5d
- default
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-05eb880e2e337b3f1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
-
- paravirtual
-
-
- -
- Name
- testtina123456
-
-
- xen
-
- false
+ Name
+
-
+
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:26 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeAddresses&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075226Z
- X-Amz-Content-Sha256:
- - 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=23f6fd9da7058f9ae6db19a783eecdabcb441ad6493e5264d270217405037e72
- Content-Length:
- - '43'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:20 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 973db1ab-4ad4-4ae7-8912-b076fdeb04a7
-
-
- 23.23.198.134
- standard
-
+ ami-57318e3c
+ 200278856672/mkanoor_testing_vpc
+ available
+ 200278856672
+ 2015-08-24T15:36:54.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ mkanoor_testing_vpc
+ mkanoor_testing_vpc
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5ab0eb13
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- 23.23.209.146
- standard
-
+ ami-5769193e
+ 200278856672/EmsRefreshSpec-Image
+ available
+ 200278856672
+ 2013-06-22T02:28:44.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-Image
+ EmsRefreshSpec-Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5f38cd0e
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- 54.221.193.142
- standard
-
+ ami-5e86fe48
+ 200278856672/ssa-agent-hsong
+ available
+ 200278856672
+ 2017-05-18T14:44:02.000Z
+ false
+ x86_64
+ machine
+ simple
+ ssa-agent-hsong
+ [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a5070b29f3ddcd92
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- 54.221.202.53
- standard
- i-680071e9
+ ami-63026775
+ 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ available
+ 200278856672
+ 2017-04-26T15:30:36.000Z
+ false
+ x86_64
+ machine
+ aki-1eceaf77
+ EmsRefreshSpec-PoweredOn-VPC_snapshot
+ EmsRefreshSpec-PoweredOn-VPC_description
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0001b68fed820fb79
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+
+ snap-0f1eb18bc955eb28a
+ 1
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
-
- 54.221.202.64
- standard
-
+ ami-63ac180a
+ 200278856672/redhat-6.3-32
+ available
+ 200278856672
+ 2012-08-21T23:30:21.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ redhat-6.3-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d23a95a1
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ redhat-6.3-32
+
+
+ xen
-
- 52.5.18.129
- eipalloc-1f46572e
- vpc
- i-091fe7ccd76ddac3b
- eipassoc-9132d3a5
- eni-a66cca6f
- 200278856672
- 10.0.1.239
+ ami-67bc0b0e
+ 200278856672/miq-extract-base-ubuntu-12.04
+ available
+ 200278856672
+ 2012-08-27T19:14:39.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ miq-extract-base-ubuntu-12.04
+ ubuntu 12.04 + rvm/Ruby1.9
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d03941a3
+ 8
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ miq-extract-base-ubuntu-12.04
+
+
+ xen
-
- 34.202.178.10
- eipalloc-9a4472ab
- vpc
- i-0bca58e6e540ddc39
- eipassoc-13766e23
- eni-8fefae9b
- 200278856672
- 10.2.0.239
+ ami-7c4aa86a
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2017-01-13T11:31:28.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+ [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6054c98a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- 54.208.121.144
- eipalloc-8d53d7e3
- vpc
- i-099e794cfa830e9be
- eipassoc-d87fd3ec
- eni-6933e6c9
- 200278856672
- 10.0.0.4
+ ami-7d85fd6b
+ 200278856672/hsong-ssa-agent-v1
+ available
+ 200278856672
+ 2017-05-18T14:21:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ hsong-ssa-agent-v1
+ [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05ef19f30ffe6ceaa
+ 80
+ true
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
-
- 54.208.119.197
- eipalloc-ce53d7a0
- vpc
- i-8b5739f2
- eipassoc-cc6e58f1
- eni-ad25f7cc
- 200278856672
- 10.0.0.254
+ ami-8bf2e4f0
+ 200278856672/ladas_test_111_snapshot_image
+ available
+ 200278856672
+ 2017-09-04T15:04:28.000Z
+ false
+ x86_64
+ machine
+ ladas_test_111_snapshot_image
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04b8acc66d50b9a7b
+ 10
+ true
+ gp2
+ true
+
+
+
+ paravirtual
+
+ -
+ Name
+
+
+
+ xen
+
+ -
+ ami-95ad19fc
+ 200278856672/ubuntu-11.10-server-64
+ available
+ 200278856672
+ 2012-08-22T00:20:33.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ ubuntu-11.10-server-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-90bc12e3
+ 8
+ false
+ standard
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+
+ -
+ Name
+ ubuntu-11.10-server-64
+
+
+ xen
-
- 52.70.78.137
- eipalloc-3d8a720f
- vpc
- i-0b72e0b70e7fae3c9
- eipassoc-54289160
- eni-b9cc7f19
- 200278856672
- 10.0.0.236
+ ami-a7185ec2
+ 200278856672/CFME-55Image
+ available
+ 200278856672
+ 2015-10-01T15:35:55.000Z
+ false
+ x86_64
+ machine
+ CFME-55Image
+ CFME-55Image
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-249e4c6c
+ 40
+ false
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+
+ 30
+ false
+ gp2
+ false
+
+
+
+ hvm
+
+ -
+ Name
+
+
+
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:27 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeVolumes&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075228Z
- X-Amz-Content-Sha256:
- - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=493906eae4b55b556cf2aab26aff8663b46f901f831432f0e48de4cff15bdb35
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:24 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 4817ae66-75fd-45d9-b2a9-f24e706075a9
-
-
- vol-834804c4
- 50
-
- us-east-1d
- available
- 2015-04-21T13:54:22.140Z
-
+ ami-ad43a4c4
+ rpo-images/miq-ec2-proto.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
-
Name
- cfme-raw-vmdb
+ extract-proto0
- gp2
- 150
- false
+ xen
-
- vol-d40b2c93
- 30
-
- us-east-1d
- available
- 2015-04-28T12:21:59.090Z
-
+ ami-bbc9dac0
+ 200278856672/ladas_test111
+ available
+ 200278856672
+ 2017-09-06T15:25:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ ladas_test111
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09505262c29651f47
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
-
Name
- cfme2-raw-vmdb
+
- gp2
- 100
- false
+ xen
-
- vol-68af0c92
- 40
-
- us-east-1d
- available
- 2015-09-29T21:36:13.514Z
-
+ ami-bda014d4
+ 200278856672/redhat-6.3-64
+ available
+ 200278856672
+ 2012-08-21T21:31:39.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ redhat-6.3-64
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5210bc21
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
-
Name
- cfme55
+ redhat-6.3-64
- standard
- false
+ xen
-
- vol-ee3a9614
- 50
-
- us-east-1d
- available
- 2015-09-30T15:57:16.028Z
-
+ ami-c68639af
+ miq-extract-images/evm-extract.manifest.xml
+ available
+ 200278856672
+ 2012-10-11T20:34:52.000Z
+ false
+ x86_64
+ machine
+ aki-825ea7eb
+ evm-extract
+ instance-store
+
+
-
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
-
Name
- cfme55vmdb
+ evm-extract
- gp2
- 150
- false
+ xen
-
- vol-02a26016b0b7a9450
- 1
- snap-0fb2163b24646b146
- us-east-1d
- in-use
- 2017-05-05T14:04:33.747Z
-
+ ami-cd43a4a4
+ rpo-images/miq-ec2-extract.img.manifest.xml
+ available
+ 200278856672
+
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+
+ paravirtual
+
-
- vol-02a26016b0b7a9450
- i-0b59b1d8461965bd1
- /dev/sda1
- attached
- 2017-05-05T14:04:33.000Z
- true
+ Name
+ extract-proto-old
-
- gp2
- 100
- false
+
+ xen
-
- vol-05eb880e2e337b3f1
- 7
- snap-5f38cd0e
- us-east-1d
- in-use
- 2017-07-24T19:18:26.730Z
-
+ ami-cf08bda6
+ rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ available
+ 200278856672
+ 2012-08-19T18:43:47.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ instance-store
+ /dev/sda1
+
-
- vol-05eb880e2e337b3f1
- i-02c925747e07a8118
- /dev/sda1
- attached
- 2017-07-24T19:18:26.000Z
- true
+ sdb
+ ephemeral0
-
- standard
- false
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
+
+ -
+ Name
+ extract-proto3
+
+
+ xen
-
- vol-04eb2f294c5f9f7eb
- 8
- snap-4177dea1
- us-east-1d
- in-use
- 2017-08-31T00:02:52.693Z
-
+ ami-cf96afb0
+ 200278856672/dberger_test_image
+ available
+ 200278856672
+ 2018-07-17T15:29:53.000Z
+ true
+ x86_64
+ machine
+ simple
+ dberger_test_image
+ Just a test image
+ ebs
+ /dev/sda1
+
-
- vol-04eb2f294c5f9f7eb
- i-025623c4c4e4f84a0
- /dev/sda1
- attached
- 2017-08-31T00:02:52.000Z
- true
+ /dev/sda1
+
+ snap-0400b13c0acfdffa9
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+
+ -
+ org
+ cfme
+
+
+ xen
+ true
-
- vol-0d8fcf26bf27ab650
- 1
-
- us-east-1a
- available
- 2017-01-27T15:36:00.023Z
-
+ ami-ebcb7e82
+ rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T02:47:43.000Z
+ false
+ x86_64
+ machine
+ aki-6a0cf803
+ ubuntu10.04-rvm-ruby1.9
+ instance-store
+ /dev/sda1
+
+
-
+ sdb
+ ephemeral0
+
+ -
+ sdc
+ ephemeral1
+
+
+ paravirtual
-
Name
- ladas_volume
+ ubuntu-10.04-rvm-ruby1.9
- gp2
- 100
- false
+ xen
-
- vol-0e6f4b53711466c8b
- 1
-
- us-east-1a
- available
- 2017-05-22T13:13:04.847Z
-
+ ami-edaa1f84
+ rpo-work/miq-test.img.manifest.xml
+ available
+ 200278856672
+ 2012-08-15T18:51:02.000Z
+ false
+ i386
+ machine
+ aki-a71cf9ce
+ ari-a51cf9cc
+ instance-store
+ /dev/sda1
+
+
-
+ sda2
+ ephemeral0
+
+
+ paravirtual
-
Name
- test
+ test-linux
- gp2
- 100
- false
+ xen
-
- vol-0395fe9f0370fabdf
- 3
-
- us-east-1a
- available
- 2017-06-22T20:36:16.182Z
-
+ ami-edad1984
+ 200278856672/ubuntu-12.04-server-32
+ available
+ 200278856672
+ 2012-08-22T00:07:18.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ ubuntu-12.04-server-32
+
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8ec06efd
+ 8
+ true
+ standard
+ false
+
+
+ -
+ /dev/sda2
+ ephemeral0
+
+
+ paravirtual
-
Name
- dberger-test
+ ubuntu-12.04-server-32
+
+ xen
+
+ -
+ ami-f3a81c9a
+ 200278856672/suse-11-server-32
+ available
+ 200278856672
+ 2012-08-22T01:57:01.000Z
+ false
+ i386
+ machine
+ aki-805ea7e9
+ suse-11-server-32
+
+ ebs
+ /dev/sda1
+
-
- Owner
- Dan
+ /dev/sda1
+
+ snap-baf35ac9
+ 10
+ false
+ standard
+ false
+
+
+ paravirtual
+
-
- Joe
- Smith
+ Name
+ suse-11-server-32
- gp2
- 100
- false
+ xen
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:29 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091529Z
+ X-Amz-Content-Sha256:
+ - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=66ae028d48424e492ecff145a48a20f9b11a1bda16325d5e60da35503ff6cb76
+ Content-Length:
+ - '110'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:30 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ 6d5e7aa6-f6cc-4996-858b-4125d45ad937
+
-
- vol-0a53d5f020485f470
- 2
-
- us-east-1a
- available
- 2017-06-30T16:27:26.909Z
-
-
+ ami-0293da6a
+ 309956199498/RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T20:32:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- bronagh-volume-test
+ /dev/sda1
+
+ snap-4bfb05c4
+ 6
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0acc4b093d87d2ecd
- 1
-
- us-east-1a
- available
- 2017-06-30T17:19:21.552Z
-
-
-
-
- foo
- bar
-
+ ami-02a9ce6b
+ 309956199498/RHEL-6.4_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-04-10T22:38:50.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.4_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- dberger-test2
+ /dev/sda1
+
+ snap-c3be779a
+ 7
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0657f371b97c0f147
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-07-17T19:21:46.880Z
-
-
- vol-0657f371b97c0f147
- i-06c2e2feb85b5c8b2
- /dev/sda1
- attached
- 2017-07-17T19:21:46.000Z
- true
+ /dev/sdf
+ ephemeral0
-
- gp2
- 100
- false
-
- -
- vol-0ea3efc6f99654381
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-07-26T15:15:30.182Z
-
-
- vol-0ea3efc6f99654381
- i-0951b95d6db76519d
- /dev/sda1
- attached
- 2017-07-26T15:15:30.000Z
- true
+ /dev/sdg
+ ephemeral1
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-06c6dccf34b2a6c72
- 1
-
- us-east-1a
- available
- 2017-07-27T13:06:30.936Z
-
-
+ ami-02ba6009c5e7a02ab
+ 309956199498/RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-11T01:14:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_delete_me_soon
+ /dev/sda1
+
+ snap-01c28ef48fde91a74
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ false
-
- vol-0f151bad0c041c2db
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-08-10T19:10:06.592Z
-
+ ami-036a036a
+ 309956199498/RHEL-6.1_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:23:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.1_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0f151bad0c041c2db
- i-02975d4eb8e53bafd
- /dev/sda1
- attached
- 2017-08-10T19:10:06.000Z
- true
+ /dev/sda1
+
+ snap-b9b870e4
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0d805ae0a434871aa
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-09-23T18:24:22.738Z
-
+ ami-03d01c6a
+ 309956199498/RHEL-5.5-Starter-EBS-i386-14-Access2
+ available
+ 309956199498
+ 2011-10-10T14:02:38.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.5-Starter-EBS-i386-14-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0d805ae0a434871aa
- i-0b1ec6330e0180f75
- /dev/sda1
- attached
- 2017-09-23T18:24:22.000Z
- true
+ /dev/sda1
+
+ snap-9693f8f5
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-67606d2d
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2013-09-23T20:11:57.000Z
-
-
- vol-67606d2d
- i-8b5739f2
- /dev/sda1
- attached
- 2013-09-23T20:11:57.000Z
- true
+ /dev/sdf
+ ephemeral0
-
-
-
- Name
- EmsRefreshSpec-PoweredOn-VPC-root
+ /dev/sdg
+ ephemeral1
-
- standard
- false
+
+ paravirtual
+ xen
-
- vol-b6fa656a
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-01-07T19:58:39.495Z
-
-
-
- vol-b6fa656a
- i-680071e9
- /dev/sda1
- attached
- 2016-01-07T19:58:39.000Z
- true
-
-
-
+ ami-0456c465f72bd0c95
+ 309956199498/RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-15T15:58:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpec-PoweredOn-Basic3-root
+ /dev/sda1
+
+ snap-01cc239ae078f91f5
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
+ true
-
- vol-3bc4d1ea
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-05-10T20:56:38.389Z
-
+ ami-0707307d
+ 309956199498/RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-23T02:44:16.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-3bc4d1ea
- i-fb694e66
- /dev/sda1
- attached
- 2016-05-10T20:56:38.000Z
- true
+ /dev/sda1
+
+ snap-0474fffe1f2eded28
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-da190f08
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2016-08-30T07:17:59.338Z
-
+ ami-071c247d
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ available
+ 679593333241
+ 2018-01-29T11:05:45.000Z
+ false
+
-
- vol-da190f08
- i-c72af2f6
- /dev/sda1
- attached
- 2016-08-30T07:17:59.000Z
- true
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-22
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpec-PoweredOn-VPC1-root
+ /dev/sda1
+
+ snap-06c7170eb18e5058c
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0dda5ecf4b2b3dc57
- 1
-
- us-east-1e
- in-use
- 2017-01-27T15:58:07.337Z
-
-
- vol-0dda5ecf4b2b3dc57
- i-0a922b9826b3dfd0d
- /dev/sdf
- attached
- 2017-03-13T13:38:45.000Z
- false
+ /dev/sdb
+ ephemeral0
-
-
-
- Name
- ladas-volume-3
+ /dev/sdc
+ ephemeral1
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0d780233c22848be7
- 1
- snap-0fb2163b24646b146
- us-east-1e
- available
- 2017-01-27T15:59:20.784Z
-
-
+ ami-0845091f
+ 309956199498/RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-05T21:30:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas-volume-from-snap2
+ /dev/sda1
+
+ snap-93baa0ea
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-01aca96e22103f767
- 8
- snap-037f1f9e6c8ea4d65
- us-east-1e
- in-use
- 2017-02-14T16:18:29.762Z
-
+ ami-086f9875
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ available
+ 679593333241
+ 2018-03-02T05:49:09.000Z
+ false
+
-
- vol-01aca96e22103f767
- i-08c033357b433ea2c
- /dev/xvda
- attached
- 2017-02-14T16:18:29.000Z
- true
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
- gp2
- 100
- false
-
- -
- vol-0e251f8b387b2d87d
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:28:15.962Z
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-02-22
+ ebs
+ /dev/sda1
+
-
- vol-0e251f8b387b2d87d
- i-0a922b9826b3dfd0d
- /dev/sda1
- attached
- 2017-02-16T16:28:16.000Z
- true
+ /dev/sda1
+
+ snap-0fd087ac74cf66429
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-06c7662068fe81b92
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:40:47.792Z
-
-
- vol-06c7662068fe81b92
- i-0999c6f9b18ead5fc
- /dev/sda1
- attached
- 2017-02-16T16:40:47.000Z
- true
+ /dev/sdb
+ ephemeral0
-
- gp2
- 100
- false
-
- -
- vol-0e1613cacf4688009
- 1
-
- us-east-1e
- available
- 2017-03-17T07:20:08.273Z
-
-
-
- Name
- EmsRefreshSpecForSnapshot
+ /dev/sdc
+ ephemeral1
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0e4c86c12b28cead8
- 1
- snap-055095f47fab5e749
- us-east-1e
- in-use
- 2017-03-17T07:21:35.798Z
-
-
-
- vol-0e4c86c12b28cead8
- i-8b5739f2
- /dev/sdf
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
-
+ ami-09ae22a8a98cc4f9d
+ 309956199498/RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-16T19:16:22.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecForVpcVm
+ /dev/sda1
+
+ snap-074d480ddb740eb71
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0acad09812d803c09
- 1
-
- us-east-1e
- in-use
- 2017-03-17T07:23:54.211Z
-
+ ami-0bd11d62
+ 309956199498/RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T15:11:49.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-5.5-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0acad09812d803c09
- i-c72af2f6
- /dev/sdf
- attached
- 2017-03-17T07:25:12.000Z
- false
+ /dev/sda1
+
+ snap-4c2d472f
+ 6
+ true
+ standard
+ false
+
-
-
-
- Name
- EmsRefreshSpecForVpc1
+ /dev/sdf
+ ephemeral0
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- -
- vol-0e9caee6ef7b23c31
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:51.246Z
-
-
- vol-0e9caee6ef7b23c31
- i-0347d4075310c21e6
- /dev/sda1
- attached
- 2017-03-21T19:39:51.000Z
- false
+ /dev/sdg
+ ephemeral1
-
- standard
- false
+
+ paravirtual
+ xen
-
- vol-059f5f4b2a5663e65
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:52.887Z
-
+ ami-0d70a070
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:42:07.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-059f5f4b2a5663e65
- i-035fa3affa815d81d
- /dev/sda1
- attached
- 2017-03-21T19:39:52.000Z
- false
+ /dev/sda1
+
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
+ true
-
- vol-098f6a0ae86c0bf2f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:51.351Z
-
+ ami-0e782571
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-25T17:10:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-098f6a0ae86c0bf2f
- i-0347d4075310c21e6
- /dev/sdf
- attached
- 2017-03-21T19:39:51.000Z
- false
+ /dev/sda1
+
+ snap-010aa1159136454b2
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 150
- false
+
+ hvm
+ xen
+ true
-
- vol-03be1ddce0ee8a66f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:53.038Z
-
+ ami-0fe82466
+ 309956199498/RHEL-6.1-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2011-10-10T21:32:39.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.1-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
-
- vol-03be1ddce0ee8a66f
- i-035fa3affa815d81d
- /dev/sdf
- attached
- 2017-03-21T19:39:52.000Z
- false
+ /dev/sda1
+
+ snap-0292e761
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 150
- false
-
- -
- vol-035c47f5f5190ddc8
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:41:23.396Z
-
-
- vol-035c47f5f5190ddc8
- i-0c1542ba946875280
- /dev/sda1
- attached
- 2017-03-21T19:41:23.000Z
- false
+ /dev/sdf
+ ephemeral0
-
- standard
- false
-
- -
- vol-0c365b31acf12c5f0
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:41:23.491Z
-
-
- vol-0c365b31acf12c5f0
- i-0c1542ba946875280
- /dev/sdf
- attached
- 2017-03-21T19:41:23.000Z
- false
+ /dev/sdg
+ ephemeral1
-
- gp2
- 150
- false
-
- -
- vol-001c8985b0f091c9b
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-04-11T18:27:25.671Z
-
- gp2
- 150
- false
-
- -
- vol-03f74085d10e667e8
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-04-11T18:27:25.488Z
-
- standard
- false
+
+ paravirtual
+ xen
-
- vol-0dc50783929797846
- 30
-
- us-east-1e
- in-use
- 2017-04-12T18:17:02.946Z
-
+ ami-10251c7a
+ 309956199498/RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:22:53.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0dc50783929797846
- i-0659dcbc66cb830e5
- /dev/sdb
- attached
- 2017-04-12T18:17:03.000Z
- false
+ /dev/sda1
+
+ snap-7d72846a
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-0816f373502e8db24
- 40
- snap-249e4c6c
- us-east-1e
- in-use
- 2017-04-12T18:17:02.827Z
-
+ ami-10663b78
+ 309956199498/RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-25T20:24:21.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0816f373502e8db24
- i-0659dcbc66cb830e5
- /dev/sda1
- attached
- 2017-04-12T18:17:03.000Z
- false
+ /dev/sda1
+
+ snap-bf56423e
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 120
- false
+
+ hvm
+ xen
-
- vol-0f5da4a455ff03c28
- 2
-
- us-east-1e
- available
- 2017-04-24T16:16:47.488Z
-
-
+ ami-11322278
+ 309956199498/RHEL-6.5_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2014-04-01T13:58:44.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- bronaghs-test-volume
+ /dev/sda1
+
+ snap-ed50b637
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-097f300050f495d06
- 7
- snap-d23a95a1
- us-east-1e
- in-use
- 2017-05-02T19:39:50.053Z
-
+ ami-13d0f569
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ available
+ 679593333241
+ 2018-01-12T06:52:56.000Z
+ false
+
-
- vol-097f300050f495d06
- i-0fca61ededa522f1a
- /dev/sda1
- attached
- 2017-05-02T19:39:50.000Z
- true
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
- standard
- false
-
- -
- vol-04a25be409ef70789
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:17:19.803Z
-
- standard
- false
-
- -
- vol-01a843e049100c874
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:17:19.775Z
-
- gp2
- 150
- false
-
- -
- vol-0330dfaa90ec5155f
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:35:13.310Z
-
- standard
- false
-
- -
- vol-033e5a7bf386767a0
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:35:13.320Z
-
- gp2
- 150
- false
-
- -
- vol-04fc5431c4edd9bb6
- 6
- snap-e159bf6a
- us-east-1e
- in-use
- 2017-05-16T18:19:22.353Z
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-10
+ ebs
+ /dev/sda1
+
-
- vol-04fc5431c4edd9bb6
- i-091fe7ccd76ddac3b
- /dev/sda1
- attached
- 2017-05-16T18:19:22.000Z
- true
+ /dev/sda1
+
+ snap-017d1cfcc9b402d3e
+ 8
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0ba3a2953d84534d2
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-17T18:40:13.269Z
-
- gp2
- 150
- false
-
- -
- vol-0c7a1e46f3e5596ca
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-17T18:40:13.127Z
-
- standard
- false
-
- -
- vol-05ff7a30b06f27ac5
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-22T20:22:02.773Z
-
- standard
- false
-
- -
- vol-035a92ec4bb5b53c8
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-22T20:22:02.894Z
-
- gp2
- 150
- false
-
- -
- vol-0ed526ebed417656f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-05-22T20:35:57.755Z
-
-
- vol-0ed526ebed417656f
- i-0bad1e8ff60a6f29a
- /dev/sdf
- attached
- 2017-05-22T20:35:57.000Z
- false
+ /dev/sdb
+ ephemeral0
-
- gp2
- 150
- false
-
- -
- vol-0385dfce3061ff5a9
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-05-22T20:35:57.665Z
-
-
- vol-0385dfce3061ff5a9
- i-0bad1e8ff60a6f29a
- /dev/sda1
- attached
- 2017-05-22T20:35:57.000Z
- false
+ /dev/sdc
+ ephemeral1
-
- standard
- false
-
- -
- vol-0344f9e572891ae90
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:19:18.000Z
-
- gp2
- 100
- false
+
+ hvm
+ xen
+ true
-
- vol-0ef01a328c30eb4b2
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:30:09.864Z
-
- gp2
- 100
- false
+ ami-140eaf7d
+ 309956199498/RHEL-6.3-Starter-i386-1-Access2
+ available
+ 309956199498
+ 2012-06-04T19:10:28.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-6.3-Starter-i386-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-186d0067
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- vol-0c66d91c30044f68f
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- available
- 2017-06-16T20:44:40.594Z
-
- gp2
- 100
- false
+ ami-14e9c76e
+ 309956199498/RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-18T21:29:08.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0f42b03b4565e957e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- vol-096d40746df01e27b
- 8
- snap-0f9a8e1fc22263c6c
- us-east-1e
- in-use
- 2017-06-16T20:54:01.693Z
-
+ ami-179db56c
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ available
+ 679593333241
+ 2017-08-10T00:08:51.000Z
+ false
+
-
- vol-096d40746df01e27b
- i-03d706b95aa8b12ce
- /dev/sda1
- attached
- 2017-06-16T20:54:01.000Z
- false
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
- gp2
- 100
- false
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-061b22038dcd055dd
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- vol-01e50a745302d3299
- 2
-
- us-east-1e
- available
- 2017-06-22T20:38:28.321Z
-
-
+ ami-180a540f
+ 309956199498/RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T20:06:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- name
- dberger-test2
+ /dev/sda1
+
+ snap-88a0f200
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-0f1d1fbc7a35cdbab
- 2
-
- us-east-1e
- available
- 2017-07-03T14:45:12.273Z
-
-
+ ami-1c43ff74
+ 309956199498/RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-09T20:00:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-6.5_GA-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- bronagh-ebs-test
+ /dev/sda1
+
+ snap-7d0526da
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-000f77902b1a16428
- 80
- snap-05ef19f30ffe6ceaa
- us-east-1e
- in-use
- 2017-08-29T19:14:36.922Z
-
+ ami-1def2374
+ 309956199498/RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ available
+ 309956199498
+ 2011-10-10T20:38:43.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.0-Starter-EBS-x86_64-13-Access2
+ ebs
+ /dev/sda1
+
-
- vol-000f77902b1a16428
- i-0c1eee2b86c7aa4a1
- /dev/sda1
- attached
- 2017-08-29T19:14:36.000Z
- true
+ /dev/sda1
+
+ snap-dc5227bf
+ 6
+ true
+ standard
+ false
+
-
-
-
- hsong-ssa
-
+ /dev/sdf
+ ephemeral0
-
- gp2
- 240
- false
-
- -
- vol-00306cda05dec2db5
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2017-09-04T13:26:01.140Z
-
-
- vol-00306cda05dec2db5
- i-099e794cfa830e9be
- /dev/sda1
- attached
- 2017-09-04T13:26:01.000Z
- true
+ /dev/sdg
+ ephemeral1
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-01ff7e549707b8e54
- 1
-
- us-east-1e
- available
- 2017-09-04T14:45:47.319Z
-
-
+ ami-227b0c4a
+ 309956199498/RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-05T22:18:23.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_test_111_encrypted
+ /dev/sda1
+
+ snap-bb531132
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ hvm
+ xen
-
- vol-01f455f7af32c1206
- 10
- snap-04b8acc66d50b9a7b
- us-east-1e
- available
- 2017-09-04T15:18:12.952Z
-
-
+ ami-261f5a4c
+ 309956199498/Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-17T16:53:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_tesT_111_volume_from_snapshot_that_has_image
+ /dev/sda1
+
+ snap-7a8a411b
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+
+ hvm
+ xen
-
- vol-0ac7a66512bf0d20c
- 10
- snap-ba40cac8
- us-east-1e
- in-use
- 2017-09-07T12:23:46.502Z
-
+ ami-2a532b40
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0ac7a66512bf0d20c
- i-0b72e0b70e7fae3c9
- /dev/sda1
- attached
- 2017-09-07T12:23:46.000Z
- true
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-01d53264cef7468b5
- 1
-
- us-east-1e
- available
- 2017-09-08T20:44:15.915Z
-
-
+ ami-2facc546
+ 309956199498/RHEL-5.9_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T01:15:43.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.9_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
-
- name
- bronagh_sept
+ /dev/sda1
+
+ snap-46973f1b
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0c2aaf810c8925376
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2017-09-26T07:48:52.520Z
-
+ ami-30185959
+ 309956199498/RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ available
+ 309956199498
+ 2013-08-13T20:39:20.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_HVM_GA-x86_64-10-HVM-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0c2aaf810c8925376
- i-047886b9fd2397967
- /dev/sda1
- attached
- 2017-09-26T07:48:52.000Z
- true
+ /dev/sda1
+
+ snap-2cdf2b7b
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
+
+ hvm
+ xen
-
- vol-02e5c41d12060ab3b
- 8
- snap-25dd2ac1
- us-east-1c
- in-use
- 2017-05-02T19:39:37.154Z
-
+ ami-3068da58
+ 309956199498/RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T13:23:21.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-02e5c41d12060ab3b
- i-0150ac66c83e0eae8
- /dev/xvda
- attached
- 2017-05-02T19:39:37.000Z
- true
+ /dev/sda1
+
+ snap-008530a7
+ 6
+ true
+ gp2
+ false
+
-
- gp2
- 100
- false
+
+ paravirtual
+ xen
-
- vol-0628a6ce987d4cb6e
- 8
- snap-25dd2ac1
- us-east-1c
- in-use
- 2017-05-03T10:47:07.722Z
-
+ ami-3368015a
+ 309956199498/RHEL-6.0_GA-x86_64-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:51:24.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.0_GA-x86_64-6-Access2
+ ebs
+ /dev/sda1
+
-
- vol-0628a6ce987d4cb6e
- i-0bca58e6e540ddc39
- /dev/xvda
- attached
- 2017-05-03T10:47:07.000Z
- true
+ /dev/sda1
+
+ snap-3828e165
+ 6
+ true
+ standard
+ false
+
-
- gp2
- 100
- false
-
- -
- vol-0da3845ae07b3f322
- 50
- snap-9dd602d7
- us-east-1c
- available
- 2017-05-18T16:20:08.073Z
-
- gp2
- 150
- false
+
+ paravirtual
+ xen
-
- vol-09d73576072fbf6ae
- 40
- snap-1d177976
- us-east-1c
- available
- 2017-05-18T16:20:07.982Z
-
- standard
- false
+ ami-346b9c49
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ available
+ 679593333241
+ 2018-03-02T05:48:56.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-099825c0474cb713a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- vol-075964f66ea673e99
- 40
- snap-1d177976
- us-east-1c
- available
- 2017-05-18T16:45:59.675Z
-
- standard
- false
+ ami-3e6eb444
+ 309956199498/RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-24T16:16:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0d59b38500ea97665
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- vol-07e8bc444d8e10c9c
- 50
- snap-9dd602d7
- us-east-1c
- available
- 2017-05-18T16:45:59.776Z
-
- gp2
- 150
- false
+ ami-416a7028
+ 309956199498/RHEL-6.5_GA-i386-4-Access2
+ available
+ 309956199498
+ 2014-04-22T14:35:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-4-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09e954d6
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- vol-0a3ad9ef6f4a178f3
- 40
- snap-1d177976
- us-east-1c
- in-use
- 2017-06-07T15:59:48.204Z
-
+ ami-46a4f52e
+ 309956199498/RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-20T15:33:32.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0a3ad9ef6f4a178f3
- i-013f45a83fd938928
- /dev/sda1
- attached
- 2017-06-07T15:59:48.000Z
- false
+ /dev/sda1
+
+ snap-1af51e9b
+ 10
+ true
+ gp2
+ false
+
-
- standard
- false
+
+ hvm
+ xen
-
- vol-0382343901be51311
- 50
- snap-9dd602d7
- us-east-1c
- in-use
- 2017-06-07T15:59:48.363Z
-
+ ami-46b9b62e
+ 309956199498/RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-30T15:38:01.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0382343901be51311
- i-013f45a83fd938928
- /dev/sdf
- attached
- 2017-06-07T15:59:48.000Z
- false
+ /dev/sda1
+
+ snap-a93871dc
+ 10
+ true
+ gp2
+ false
+
-
- gp2
- 150
- false
+
+ hvm
+ xen
-
- vol-0290849f78dccf167
- 40
- snap-1d177976
- us-east-1c
- in-use
- 2017-06-09T15:00:47.137Z
-
+ ami-4769732e
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2014-04-22T15:09:36.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-7-HVM-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- vol-0290849f78dccf167
- i-0d794150f7fd264c4
- /dev/sda1
- attached
- 2017-06-09T15:00:47.000Z
- false
+ /dev/sda1
+
+ snap-d353ee0c
+ 10
+ true
+ standard
+ false
+
-
- standard
- false
+
+ hvm
+ xen
-
- vol-083b1f1e71831ba7e
- 50
- snap-9dd602d7
- us-east-1c
- in-use
- 2017-06-09T15:00:47.228Z
-
+ ami-4bf3d731
+ aws-marketplace/CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ available
+ 679593333241
+ 2018-01-12T20:33:32.000Z
+ false
+
-
- vol-083b1f1e71831ba7e
- i-0d794150f7fd264c4
- /dev/sdf
- attached
- 2017-06-09T15:00:47.000Z
- false
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
-
- gp2
- 150
- false
-
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:30 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeSnapshots&Owner.1=self&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075230Z
- X-Amz-Content-Sha256:
- - 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=543ee7e4bac5bc418984545cfae85ee34621e409000661fb116dd8097d543563
- Content-Length:
- - '56'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:25 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- f71279d3-ffb2-4a28-addb-84e567912a86
-
- -
- snap-1d177976
- vol-68af0c92
- completed
- 2015-09-30T16:31:07.000Z
-
- 200278856672
- 40
- Created by CreateImage(i-91154731) for ami-3f0e495a from vol-68af0c92
- false
-
- -
- snap-2187b94f
- vol-68af0c92
- completed
- 2015-09-30T15:47:18.000Z
-
- 200278856672
- 40
- cfme55dnd
- false
-
+
+ x86_64
+ machine
+ aws-marketplace
+ CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ CentOS Linux 7 x86_64 HVM EBS 1801_01
+ ebs
+ /dev/sda1
+
-
- Name
- cfme55dnd
+ /dev/sda1
+
+ snap-0061a4a372352a41e
+ 8
+ false
+ standard
+ false
+
-
-
- -
- snap-8b289bec
- vol-8c4f69cb
- completed
- 2015-04-28T17:26:04.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-85b8b979) for ami-320c005a from vol-8c4f69cb
- false
-
- -
- snap-08810574
- vol-06700f1376f73abee
- completed
- 2017-05-25T18:23:28.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-00ebdb6f40ba522b2) for ami-22470534 from vol-06700f1376f73abee
- false
+
+ hvm
+ xen
+ false
-
- snap-5210bc21
- vol-3e52bf45
- completed
- 2012-08-21T21:31:58.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-0553707e) for ami-bda014d4 from vol-3e52bf45
- false
-
+ ami-4d752124
+ 309956199498/RHEL-5.10_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:50:01.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.10_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- redhat-6.3-64-AMI-base
+ /dev/sda1
+
+ snap-d2b5f1d2
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-d23a95a1
- vol-22846b59
- completed
- 2012-08-21T23:30:35.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-99a183e2) for ami-63ac180a from vol-22846b59
- false
+ ami-4d7a0f32
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ available
+ 679593333241
+ 2018-06-01T11:25:10.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0bbdb96a310a18f2a
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- snap-8ec06efd
- vol-24f51a5f
- completed
- 2012-08-22T00:07:26.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-f1634e8a) for ami-edad1984 from vol-24f51a5f
- false
+ ami-4eaf3758
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-24T15:22:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-04ff5f6baaa0e6941
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-90bc12e3
- vol-26de315d
- completed
- 2012-08-22T00:20:43.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-eb5d7090) for ami-95ad19fc from vol-26de315d
- false
+ ami-4f53dd26
+ 309956199498/RHEL-5.9_GLD-x86_64-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:12:36.000Z
+ false
+ x86_64
+ machine
+ aki-ecfa0185
+ RHEL-5.9_GLD-x86_64-1-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-52b6db1e
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- snap-968927e5
- vol-32d13e49
- completed
- 2012-08-22T00:31:58.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-7b2f0200) for ami-3bae1a52 from vol-32d13e49
- false
+ ami-4f85ec26
+ 309956199498/RHEL-5.6_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-19T16:36:21.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.6_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ef87c53
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-6eee471d
- vol-1421ce6f
- completed
- 2012-08-22T01:43:11.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-b13a17ca) for ami-25a81c4c from vol-1421ce6f
- false
+ ami-4fe2fa58
+ 309956199498/RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-03T15:56:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05db0f9172aa4584a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-baf35ac9
- vol-84719eff
- completed
- 2012-08-22T01:57:13.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-0bbe9370) for ami-f3a81c9a from vol-84719eff
- false
+ ami-531c4a29
+ 309956199498/RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:33:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05276352df4811187
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-d03941a3
- vol-eb25f490
- completed
- 2012-08-27T19:14:40.000Z
-
- 200278856672
- 8
- Created by CreateImage(i-888366f2) for ami-67bc0b0e from vol-eb25f490
- false
+ ami-5328fe38
+ 309956199498/RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-07-17T02:08:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4a7c1639
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-5ab0eb13
- vol-06e3f7fe
- completed
- 2015-08-24T15:37:26.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-90fdc16f) for ami-57318e3c from vol-06e3f7fe
- false
+ ami-563ca440
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-25T00:42:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02a781e1733af35eb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-249e4c6c
- vol-68af0c92
- completed
- 2015-10-01T15:35:55.000Z
-
- 200278856672
- 40
- Created by CreateImage(i-91154731) for ami-a7185ec2 from vol-68af0c92
- false
+ ami-5dff9c4a
+ 309956199498/RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-08-25T14:32:56.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c4e89758
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-9dd602d7
- vol-ee3a9614
- completed
- 2015-09-30T16:31:08.000Z
-
- 200278856672
- 50
- Created by CreateImage(i-91154731) for ami-3f0e495a from vol-ee3a9614
- false
+ ami-5ebdda37
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ available
+ 309956199498
+ 2013-04-11T02:10:05.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-5-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c37bb19a
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ hvm
+ xen
-
- snap-5f38cd0e
- vol-ad4fa2f7
- completed
- 2013-06-22T02:29:08.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-1c237c77) for ami-5769193e from vol-ad4fa2f7
- false
+ ami-6178480b
+ 309956199498/RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-19T23:05:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-af3b8ed0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-6054c98a
- vol-ffffffff
- completed
- 2017-01-13T11:31:33.000Z
-
- 200278856672
- 7
- Copied for DestinationAmi ami-7c4aa86a from SourceAmi ami-bda014d4 for SourceSnapshot snap-5210bc21. Task created on 1,484,307,087,854.
- false
+ ami-61b69108
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ available
+ 309956199498
+ 2013-11-20T21:42:28.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-4-HVM-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0db87915
+ 6
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
-
- snap-eafde662
- vol-0fdc4b8ad070c46e5
- completed
- 2017-02-16T15:24:10.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-065dac88ae4c48202) for ami-204c8436 from vol-0fdc4b8ad070c46e5
- false
+ ami-61d4ac77
+ 309956199498/RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-05-18T18:23:45.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0bd1c49ec2e5f5faf
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
-
- snap-0fb2163b24646b146
- vol-0d8fcf26bf27ab650
- completed
- 2017-01-27T15:51:33.000Z
-
- 200278856672
- 1
-
- false
-
+ ami-645bae0c
+ 309956199498/RHEL-7.0_GA_HVM-x86_64-3-Access2
+ available
+ 309956199498
+ 2014-05-28T19:16:58.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_GA_HVM-x86_64-3-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_volume_snap_show
+ /dev/sda1
+
+ snap-0ac125df
+ 10
+ true
+ standard
+ false
+
-
+
+ hvm
+ xen
-
- snap-0dff7febfe74867d0
- vol-0b517fa1
- completed
- 2017-02-08T22:21:55.000Z
-
- 200278856672
- 40
- Testing Snapshot Locations
- false
-
+ ami-68ee1915
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-01T23:39:39.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- test-snap-01
+ /dev/sda1
+
+ snap-0b9e559310af1cd36
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- snap-09505262c29651f47
- vol-00306cda05dec2db5
- completed
- 2017-09-06T15:25:23.000Z
-
- 200278856672
- 10
- Created by CreateImage(i-099e794cfa830e9be) for ami-bbc9dac0 from vol-00306cda05dec2db5
- false
+ ami-6ea1e806
+ 309956199498/RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-09T22:54:38.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-6b906be4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-04b8acc66d50b9a7b
- vol-01ff7e549707b8e54
- completed
- 2017-09-04T15:01:01.000Z
-
- 200278856672
- 1
-
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
+ ami-6fc25c15
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ available
+ 679593333241
+ 2017-11-30T05:32:04.000Z
+ false
+
-
- Name
- ladas_test_111_snapshot
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0a17e753d76724406
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- snap-03d5e23022317b3a5
- vol-0bae2310332a3a1b5
- completed
- 2017-09-04T14:41:23.000Z
-
- 200278856672
- 10
-
- false
-
+ ami-7305bd18
+ 309956199498/RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2015-08-27T11:36:17.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ladas_test_111_1
+ /dev/sda1
+
+ snap-f7944281
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- snap-0e04c9c244477559b
- vol-ffffffff
- completed
- 2017-07-03T15:40:06.000Z
-
- 200278856672
- 2
- [Copied snap-034acb0cf077bc06c from us-east-1]
- false
+ ami-7368011a
+ 309956199498/RHEL-6.0_GA-i386-6-Access2
+ available
+ 309956199498
+ 2013-05-17T20:44:20.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.0_GA-i386-6-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4119d01c
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-034acb0cf077bc06c
- vol-0a53d5f020485f470
- completed
- 2017-07-03T15:39:49.000Z
-
- 200278856672
- 2
-
- false
-
+ ami-7375211a
+ 309956199498/RHEL-5.10-GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-09-27T21:48:28.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.10-GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- snapshot-bronagh-volume-test
+ /dev/sda1
+
+ snap-2ea9ed2e
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-0cbf55eb6acc05486
- vol-0395fe9f0370fabdf
- completed
- 2017-06-30T16:01:21.000Z
-
- 200278856672
- 3
- Testing snapshot event
- false
-
+ ami-73aac31a
+ 309956199498/RHEL-5.7_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:09:06.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.7_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- dberger-test-snapshot
+ /dev/sda1
+
+ snap-ddfc5580
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-0a5070b29f3ddcd92
- vol-ffffffff
- completed
- 2017-05-18T14:44:04.000Z
-
- 200278856672
- 10
- Copied for DestinationAmi ami-5e86fe48 from SourceAmi ami-464a2c26 for SourceSnapshot snap-0d6ff47e657599428. Task created on 1,495,118,641,744.
- false
+ ami-74b17c1c
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2
+ available
+ 309956199498
+ 2014-07-14T21:53:46.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-98227e33
+ 10
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-05ef19f30ffe6ceaa
- vol-ffffffff
- completed
- 2017-05-18T14:22:14.000Z
-
- 200278856672
- 10
- Copied for DestinationAmi ami-7d85fd6b from SourceAmi ami-224c2a42 for SourceSnapshot snap-087bd8461c5cd52a0. Task created on 1,495,117,314,923.
- false
+ ami-766ad81e
+ 309956199498/RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ available
+ 309956199498
+ 2014-10-06T12:58:23.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_GA-20141003-i386-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-1405afb3
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-0001b68fed820fb79
- vol-67606d2d
- completed
- 2017-04-26T15:30:37.000Z
-
- 200278856672
- 7
- Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-67606d2d
- false
+ ami-78175611
+ 309956199498/RHEL-6.4_GA-i386-10-Access2
+ available
+ 309956199498
+ 2013-08-13T19:30:50.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-10-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-49bc491e
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- snap-0f1eb18bc955eb28a
- vol-0e4c86c12b28cead8
- completed
- 2017-04-26T15:30:37.000Z
-
- 200278856672
- 1
- Created by CreateImage(i-8b5739f2) for ami-63026775 from vol-0e4c86c12b28cead8
- false
+ ami-78400710
+ 309956199498/RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-29T01:07:35.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-2d5685a0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
- snap-0c78ca2afaa671102
- vol-0acad09812d803c09
- completed
- 2017-03-17T07:24:40.000Z
-
- 200278856672
- 1
- EmsRefreshSpecSnapshotOfVpc1Desc
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
+ ami-79adc410
+ 309956199498/RHEL-5.8_GA-i386-3-Access2
+ available
+ 309956199498
+ 2013-05-19T00:44:18.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-5.8_GA-i386-3-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecSnapshotOfVpc1
+ /dev/sda1
+
+ snap-fe3990a3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- snap-055095f47fab5e749
- vol-0e1613cacf4688009
- completed
- 2017-03-17T07:21:12.000Z
-
- 200278856672
- 1
- EmsRefreshSpecSnapshotDesc
- false
-
+ ami-7a96b801
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:37:28.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- EmsRefreshSpecSnapshot
+ /dev/sda1
+
+ snap-0822784885cd20aff
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:32 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeInstances&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075232Z
- X-Amz-Content-Sha256:
- - 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f575ff6abbbda3560f79fc97d2ebe6aecad2127fc80ca2f9b299e084bc93aef5
- Content-Length:
- - '43'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:27 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 6787b6a4-5ad6-4d7c-85a1-44d89ed52c98
-
-
- r-06329810cfd223fe6
- 200278856672
-
-
+ ami-7adcf900
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ available
+ 679593333241
+ 2018-01-12T06:51:53.000Z
+ false
+
-
- i-0c1eee2b86c7aa4a1
- ami-7d85fd6b
-
-
16
- running
-
- ip-10-0-1-85.ec2.internal
-
-
- MIQ_SSA
- 0
-
- t2.micro
- 2017-08-29T19:14:36.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.85
- true
-
- -
- sg-38511448
- launch-wizard-47
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-000f77902b1a16428
- attached
- 2017-08-29T19:14:36.000Z
- true
-
-
-
- hvm
- ptDPo1504034075390
-
- -
- hsong-ssa
-
-
-
- xen
-
- -
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
- true
-
-
-
- sg-38511448
- launch-wizard-47
-
-
-
- eni-attach-075e6227
- 0
- attached
- 2017-08-29T19:14:36.000Z
- true
-
-
- -
- 10.0.1.85
- true
-
-
-
-
-
- false
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-03fbeeb66a6618d09
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- r-003249dcbdd91448e
- 200278856672
-
-
+ ami-7b0c6312
+ 309956199498/RHEL-6.4_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:29.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-7-Access2
+ ebs
+ /dev/sda1
+
-
- i-0bad1e8ff60a6f29a
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-87.ec2.internal
-
- User initiated (2017-06-07 16:32:25 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-22T20:35:56.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.87
- true
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0385dfce3061ff5a9
- attached
- 2017-05-22T20:35:57.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0ed526ebed417656f
- attached
- 2017-05-22T20:35:57.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy_20170522_v2
-
-
- xen
-
- -
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
- true
-
-
-
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-ff35f0d1
- 0
- attached
- 2017-05-22T20:35:56.000Z
- true
-
-
- -
- 10.0.1.87
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-03a50c59
+ 7
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-0e65ce29775f6d8fc
- 200278856672
-
-
+ ami-7dea2614
+ 309956199498/RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ available
+ 309956199498
+ 2011-10-10T23:01:40.000Z
+ false
+ x86_64
+ machine
+ aki-08ed0761
+ RHEL-6.1-Starter-EBS-x86_64-8-Access2
+ ebs
+ /dev/sda1
+
-
- i-0d794150f7fd264c4
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-2-0-191.ec2.internal
-
- User initiated (2017-06-26 19:23:18 GMT)
- 0
-
- t2.small
- 2017-06-09T15:00:46.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.191
- true
-
- -
- sg-4cc30d32
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0290849f78dccf167
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-083b1f1e71831ba7e
- attached
- 2017-06-09T15:00:47.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy0002
-
-
- xen
-
- -
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
- true
-
-
-
- sg-4cc30d32
- default
-
-
-
- eni-attach-877ba01f
- 0
- attached
- 2017-06-09T15:00:46.000Z
- true
-
-
- -
- 10.2.0.191
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-2ec9bc4d
+ 6
+ true
+ standard
+ false
+
-
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-057ea81c4767b9a2a
- 200278856672
-
-
+ ami-7f0c6316
+ 309956199498/RHEL-6.4_GA-i386-7-Access2
+ available
+ 309956199498
+ 2013-05-09T23:47:46.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.4_GA-i386-7-Access2
+ ebs
+ /dev/sda1
+
-
- i-02975d4eb8e53bafd
- ami-b63769a1
-
-
16
- running
-
- ip-172-30-0-205.ec2.internal
- ec2-34-229-68-74.compute-1.amazonaws.com
-
- MIQ_SSA
- 0
-
- t2.micro
- 2017-09-25T18:21:15.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.205
- 34.229.68.74
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0f151bad0c041c2db
- attached
- 2017-08-10T19:10:06.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-29e88329
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-f902c21c
- 0
- attached
- 2017-08-10T19:10:05.000Z
- true
-
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
- -
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
-
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-7fa40d25
+ 7
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7f6af100
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T12:44:23.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-057d3a00fab9a4150
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-02b7af2df00a8de50
- 200278856672
-
-
+ ami-81122afb
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ available
+ 679593333241
+ 2018-01-29T11:06:15.000Z
+ false
+
-
- i-0150ac66c83e0eae8
- ami-6869aa05
-
-
16
- running
-
- ip-10-0-0-159.ec2.internal
- ec2-34-200-241-140.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-02T19:39:36.000Z
-
- us-east-1c
-
- default
-
-
- enabled
-
- subnet-de2363bb
- vpc-c3d2f1a5
- 10.0.0.159
- 34.200.241.140
- true
-
- -
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-02e5c41d12060ab3b
- attached
- 2017-05-02T19:39:37.000Z
- true
-
-
-
- hvm
- ab8e0ff3-1141-455a-925a-da17a35336f6_subnet-de2363bb_1
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
-
- -
- aws:cloudformation:logical-id
- WebServerFleet
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- Network
- Public
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
-
- xen
-
- -
- eni-3e17562a
- subnet-de2363bb
- vpc-c3d2f1a5
-
- 200278856672
- in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
- true
-
-
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
-
-
-
- eni-attach-3a6592a2
- 0
- attached
- 2017-05-02T19:39:36.000Z
- true
-
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
-
- -
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
- true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
-
-
-
-
-
-
- false
- true
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
- 226008221399
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-094d0e7007d8b3169
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
-
- r-083cc6d943a6cc2e8
- 200278856672
-
-
+ ami-81573ee8
+ 309956199498/RHEL-5.7_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T21:56:07.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.7_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- i-0999c6f9b18ead5fc
- ami-b63769a1
-
-
16
- running
-
- ip-10-0-1-78.ec2.internal
-
-
- bsorota
- 0
-
- t2.micro
- 2017-09-13T14:58:47.000Z
-
- us-east-1e
-
- default
-
-
- enabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.78
- true
-
- -
- sg-9ff8ace3
- launch-wizard-39
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-06c7662068fe81b92
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
-
- hvm
- IIQTn1487263246120
-
- -
- foo
- bar
-
- -
- Name
- bronagh-events-test
-
- -
- owner
- bronaghs
-
-
- xen
-
- -
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
- true
-
-
-
- sg-9ff8ace3
- launch-wizard-39
-
-
-
- eni-attach-45f9a86f
- 0
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- -
- 10.0.1.78
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-7a0aa627
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-063763c7bd0616325
- 200278856672
-
+ ami-817bf7fe
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ available
+ 679593333241
+ 2018-05-09T17:44:39.000Z
+ false
+
-
- sg-28999abf
- launch-wizard-12
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
-
-
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-04-23
+ ebs
+ /dev/sda1
+
-
- i-0b59b1d8461965bd1
- ami-098d7f1f
-
-
16
- running
-
- ip-10-233-77-119.ec2.internal
- ec2-54-81-241-87.compute-1.amazonaws.com
-
- ladas_test
- 0
-
- t1.micro
- 2017-05-05T14:04:30.000Z
-
- us-east-1d
-
- default
-
-
- disabled
-
- 10.233.77.119
- 54.81.241.87
-
- -
- sg-28999abf
- launch-wizard-12
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-02a26016b0b7a9450
- attached
- 2017-05-05T14:04:33.000Z
- true
-
-
-
- paravirtual
- qWVKg1493993070283
- xen
-
- false
+ /dev/sda1
+
+ snap-0399eb57c40c5f605
+ 8
+ true
+ gp2
+ false
+
-
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- r-38bafd9b
- 200278856672
-
-
+ ami-836c05ea
+ 309956199498/RHEL-6.2_GA-x86_64-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:20:34.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.2_GA-x86_64-4-Access2
+ ebs
+ /dev/sda1
+
-
- i-fb694e66
- ami-5769193e
-
-
16
- running
-
- ip-10-0-0-109.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-06T21:07:48.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.109
- 54.163.162.32
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-3bc4d1ea
- attached
- 2016-05-10T20:56:38.000Z
- true
-
-
-
- paravirtual
- uBCLe1462913797292
-
- -
- Name
- VMstate-8
-
- -
- owner
- UNKNOWN
-
-
- 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.163.162.32
-
- amazon
-
-
- -
- 10.0.0.109
- true
-
- 54.163.162.32
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-d7854e8a
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-0ce8dea404618f3a5
- 200278856672
-
-
+ ami-89756fe0
+ 309956199498/RHEL-6.5_GA-x86_64-7-Access2
+ available
+ 309956199498
+ 2014-04-22T14:32:02.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.5_GA-x86_64-7-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-03d706b95aa8b12ce
- ami-271e7c31
-
-
80
- stopped
-
- ip-10-0-1-229.ec2.internal
-
- User initiated (2017-06-20 17:19:50 GMT)
- james
- 0
-
- t2.medium
- 2017-06-16T20:54:01.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.229
- true
-
- -
- sg-000ff571
- launch-wizard-46
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-096d40746df01e27b
- attached
- 2017-06-16T20:54:01.000Z
- false
-
-
-
- hvm
- DpMDq1497646440165
-
- -
- Name
- Ansible Tower Trial Instance
-
-
- xen
-
- -
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
- true
-
-
-
- sg-000ff571
- launch-wizard-46
-
-
-
- eni-attach-4735d966
- 0
- attached
- 2017-06-16T20:54:01.000Z
- true
-
-
- -
- 10.0.1.229
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-c9ff4216
+ 10
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-02d2f89dd4a54f2de
- 200278856672
-
-
+ ami-8b52dce2
+ 309956199498/RHEL-5.9_GLD-i386-1-Access2
+ available
+ 309956199498
+ 2013-01-02T22:04:19.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.9_GLD-i386-1-Access2
+ ebs
+ /dev/sda1
+
-
- i-013f45a83fd938928
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-2-0-15.ec2.internal
-
- User initiated (2017-06-07 16:32:24 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t2.micro
- 2017-06-07T15:59:47.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.15
- true
-
- -
- sg-4cc30d32
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0a3ad9ef6f4a178f3
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0382343901be51311
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- test_billy0001
-
-
- xen
-
- -
- eni-8f6f6d9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
- true
-
-
-
- sg-4cc30d32
- default
-
-
-
- eni-attach-63ae77fb
- 0
- attached
- 2017-06-07T15:59:47.000Z
- true
-
-
- -
- 10.2.0.15
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-a04b26ec
+ 6
+ true
+ standard
+ false
+
-
-
- -
- r-04c0352eb6024667f
- 200278856672
-
-
-
- i-091fe7ccd76ddac3b
- ami-0092b117
-
-
16
- running
-
- ip-10-0-1-239.ec2.internal
-
-
- bmclaugh
- 0
-
- t2.micro
- 2017-08-24T15:40:38.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.239
- 52.5.18.129
- true
-
- -
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-04fc5431c4edd9bb6
- attached
- 2017-05-16T18:19:22.000Z
- true
-
-
-
- hvm
- HqLiY1494958760362
-
- -
- Name
- bmclaugh_console_test
-
-
- xen
-
- -
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
- true
-
-
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
-
-
-
- eni-attach-88392ea7
- 0
- attached
- 2017-05-16T18:19:21.000Z
- true
-
-
- 52.5.18.129
-
- 200278856672
-
-
- -
- 10.0.1.239
- true
-
- 52.5.18.129
-
- 200278856672
-
-
-
-
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
- -
- 10.0.0.129
- true
-
-
-
-
-
- false
+ /dev/sdf
+ ephemeral0
-
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-1842f370
- 200278856672
-
-
+ ami-8cbd6de4
+ 309956199498/RHEL-5.11_Beta-i386-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:56.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.11_Beta-i386-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-8b5739f2
- ami-5769193e
-
-
16
- running
-
- ip-10-0-0-254.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-13T16:07:19.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.254
- 54.208.119.197
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-67606d2d
- attached
- 2013-09-23T20:11:57.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0e4c86c12b28cead8
- attached
- 2017-03-17T07:22:23.000Z
- false
-
-
-
- paravirtual
- aPCzL1379967112359
-
- -
- Name
- EmsRefreshSpec-PoweredOn-VPC
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- -
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-05fac66f
- 0
- attached
- 2013-09-23T20:11:52.000Z
- true
-
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.254
- true
-
- 54.208.119.197
-
- 200278856672
-
-
- -
- 10.0.0.208
-
- false
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-bd864512
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
+ xen
-
- r-0c0e56163429b9a46
- 200278856672
-
-
+ ami-8d0bdae4
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ available
+ 309956199498
+ 2012-01-31T16:22:44.000Z
+ false
+ i386
+ machine
+ aki-eafa0183
+ RHEL-5.8-RC2-Starter-EBS-i386-7-Access2
+ ebs
+ /dev/sda1
+
-
- i-0bca58e6e540ddc39
- ami-6869aa05
-
-
16
- running
-
- ip-10-2-0-239.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.nano
- 2017-05-03T10:47:06.000Z
-
- us-east-1c
-
- default
-
-
- disabled
-
- subnet-2190b144
- vpc-8cf117f5
- 10.2.0.239
- 34.202.178.10
- true
-
- -
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-0628a6ce987d4cb6e
- attached
- 2017-05-03T10:47:07.000Z
- true
-
-
-
- hvm
- EmsRe-WebSe-1229KQXQO3HUK
-
- -
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- WebServerInstance
-
-
- xen
-
- -
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
-
- 200278856672
- in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
- true
-
-
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
-
-
-
- eni-attach-cbd22453
- 0
- attached
- 2017-05-03T10:47:06.000Z
- true
-
-
- 34.202.178.10
-
- 200278856672
-
-
- -
- 10.2.0.239
- true
-
- 34.202.178.10
-
- 200278856672
-
-
-
-
-
-
- false
- true
+ /dev/sda1
+
+ snap-e6b3ab82
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-8e502c98
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:58:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-09a24861343c92e4a
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-051854d34993ed969
- 200278856672
-
-
+ ami-8e5a67e4
+ 309956199498/RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-25T00:30:40.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0347d4075310c21e6
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-167.ec2.internal
-
- User initiated (2017-03-22 18:08:49 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:39:50.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.167
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0e9caee6ef7b23c31
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-098f6a0ae86c0bf2f
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21001
-
-
- xen
-
- -
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-8a10e2a6
- 0
- attached
- 2017-03-21T19:39:50.000Z
- true
-
-
- -
- 10.0.1.167
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-10fb9f02
+ 5
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-052a9ecb9d478b8d6
- 200278856672
-
-
+ ami-90a8bbfa
+ 309956199498/RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-04-13T01:07:13.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-099e794cfa830e9be
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-4.ec2.internal
-
-
- ladas
- 0
-
- t2.micro
- 2017-09-04T13:26:00.000Z
-
- us-east-1e
-
- default
-
-
- enabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.4
- 54.208.121.144
- true
-
- -
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-00306cda05dec2db5
- attached
- 2017-09-04T13:26:01.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- ladas_test112
-
-
- xen
-
- -
- eni-6933e6c9
- subnet-f849ff96
- vpc-ff49ff91
- test
- 200278856672
- in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
- true
-
-
-
- sg-1e2cf271
- default
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
- -
- sg-7c69ed05
- launch-wizard-12
-
-
-
- eni-attach-de56932b
- 0
- attached
- 2017-09-04T13:26:00.000Z
- true
-
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.4
- true
-
- 54.208.121.144
-
- 200278856672
-
-
- -
- 10.0.0.199
-
- false
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-fcafc1e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-0330333bbdf03e149
- 200278856672
-
-
+ ami-936a03fa
+ 309956199498/RHEL-6.1_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-17T21:31:04.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.1_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
-
- i-0b72e0b70e7fae3c9
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-236.ec2.internal
-
-
- ladas
- 0
-
- t2.micro
- 2017-09-07T12:23:45.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.236
- 52.70.78.137
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0ac7a66512bf0d20c
- attached
- 2017-09-07T12:23:46.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- ladas_test_40
-
-
- xen
-
- -
- eni-b9cc7f19
- subnet-f849ff96
- vpc-ff49ff91
-
- 200278856672
- in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0b3482fe
- 0
- attached
- 2017-09-07T12:23:45.000Z
- true
-
-
- 52.70.78.137
-
- 200278856672
-
-
- -
- 10.0.0.236
- true
-
- 52.70.78.137
-
- 200278856672
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-6bc60e36
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-03174ab388e42d485
- 200278856672
-
-
+ ami-93bdadfa
+ 309956199498/RHEL-6.5_GA-i386-1-Access2
+ available
+ 309956199498
+ 2014-04-02T17:52:41.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.5_GA-i386-1-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0659dcbc66cb830e5
- ami-a7185ec2
-
-
80
- stopped
-
- ip-10-0-1-70.ec2.internal
-
- User initiated (2017-05-02 13:12:28 GMT)
- 0
-
- t2.medium
- 2017-04-12T18:17:01.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.70
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0816f373502e8db24
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- -
- /dev/sdb
-
- vol-0dc50783929797846
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_take_two002
-
-
- xen
-
- -
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-59c6f675
- 0
- attached
- 2017-04-12T18:17:01.000Z
- true
-
-
- -
- 10.0.1.70
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-29be68f3
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-95005f82
+ 309956199498/RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-25T21:19:31.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3d4278c4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-950e95ea
+ 309956199498/RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T15:08:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b24b01fd1db26eeb
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-9819ad8e
+ 309956199498/RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-03-20T03:38:51.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0898973d25521cccd
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-01228013207b85dad
- 200278856672
-
-
+ ami-990b64f0
+ 309956199498/RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ available
+ 309956199498
+ 2013-05-10T00:09:00.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-x86_64-7-HVM-Access2
+ ebs
+ /dev/sda1
+
-
- i-08c033357b433ea2c
- ami-0b33d91d
-
-
16
- running
-
- ip-10-0-1-155.ec2.internal
-
-
- bd
- 0
-
- t2.nano
- 2017-09-05T13:28:00.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.155
- true
-
- -
- sg-65d59519
- launch-wizard-37
-
-
- x86_64
- ebs
- /dev/xvda
-
- -
- /dev/xvda
-
- vol-01aca96e22103f767
- attached
- 2017-02-14T16:18:29.000Z
- true
-
-
-
- hvm
- hPmBd1487089108162
-
- -
- Name
- mhild
-
-
- xen
-
- -
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
- true
-
-
-
- sg-65d59519
- launch-wizard-37
-
-
-
- eni-attach-2d92e207
- 0
- attached
- 2017-02-14T16:18:28.000Z
- true
-
-
- -
- 10.0.1.155
- true
-
-
-
-
-
- false
- true
+ /dev/sda1
+
+ snap-b1278eeb
+ 7
+ true
+ standard
+ false
+
-
+
+ hvm
+ xen
-
- r-0e0f81bfeea774100
- 200278856672
-
-
+ ami-9ceabde6
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T01:55:41.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0951b95d6db76519d
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-105.ec2.internal
-
- User initiated (2017-08-29 19:12:48 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-08-29T15:52:11.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.105
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0ea3efc6f99654381
- attached
- 2017-07-26T15:15:30.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-6e7aa46e
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-4451b1a7
- 0
- attached
- 2017-07-26T15:15:29.000Z
- true
-
-
- -
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-0a1cfc902770c514d
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-18ca6cb0
- 200278856672
-
-
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
+ ami-9d2f098b
+ 309956199498/RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:15:03.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ /dev/sda1
+
+ snap-0ee220de9f1633620
+ 10
+ true
+ gp2
+ false
+
-
-
+
+ hvm
+ xen
+
+ -
+ ami-a05415c9
+ 309956199498/RHEL-6.4_GA-x86_64-10-Access2
+ available
+ 309956199498
+ 2013-08-14T13:38:22.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.4_GA-x86_64-10-Access2
+ ebs
+ /dev/sda1
+
-
- i-680071e9
- ami-5769193e
-
-
16
- running
-
- ip-10-91-143-248.ec2.internal
- ec2-54-221-202-53.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-07T14:42:55.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.91.143.248
- 54.221.202.53
-
- -
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-b6fa656a
- attached
- 2016-01-07T19:58:39.000Z
- true
-
-
-
- paravirtual
- JwNdr1452196715903
-
- -
- owner
- UNKNOWN
-
- -
- Name
- EmsRefreshSpec-PoweredOn-Basic3
-
-
- xen
-
- false
+ /dev/sda1
+
+ snap-46dc1211
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-06a48602fb689eb1b
- 200278856672
-
+ ami-a090b8db
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ available
+ 679593333241
+ 2017-08-10T00:09:12.000Z
+ false
+
-
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ebs
+ /dev/sda1
+
-
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
+ /dev/sda1
+
+ snap-0520447773371dd49
+ 8
+ true
+ gp2
+ false
+
-
-
-
- i-047886b9fd2397967
- ami-5769193e
-
-
80
- stopped
-
-
-
- User initiated (2017-09-26 07:49:58 GMT)
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-09-26T07:48:52.000Z
-
- us-east-1e
-
- default
-
- aki-1eceaf77
-
- disabled
-
-
- -
- sg-038e8a69
- EmsRefreshSpec-SecurityGroup1
-
- -
- sg-12898d78
- EmsRefreshSpec-SecurityGroup2
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0c2aaf810c8925376
- attached
- 2017-09-26T07:48:52.000Z
- true
-
-
-
- paravirtual
- lGtNQ1506412131645
-
- -
- Name
- EmsRefreshSpec-PoweredOff
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- false
+ /dev/sdb
+ ephemeral0
-
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
-
- r-0cac97e7f6d09c34a
- 200278856672
-
-
+ ami-a1563fc8
+ 309956199498/RHEL-5.8_GA-x86_64-3-Access2
+ available
+ 309956199498
+ 2013-05-18T22:28:38.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-5.8_GA-x86_64-3-Access2
+ ebs
+ /dev/sda1
+
-
- i-0fca61ededa522f1a
- ami-63ac180a
-
-
16
- running
-
- ip-10-0-0-36.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-05-02T19:39:49.000Z
-
- us-east-1e
-
- default
-
- aki-36ed075f
-
- enabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.36
- 54.145.134.133
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- i386
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-097f300050f495d06
- attached
- 2017-05-02T19:39:50.000Z
- true
-
-
-
- paravirtual
- 959c932c-ab59-4f97-b1a4-c7a8c5544406_subnet-f849ff96_1
-
- -
- aws:autoscaling:groupName
- default-scaling-group
-
-
- xen
-
- -
- eni-fe24b408
- subnet-f849ff96
- vpc-ff49ff91
-
- 200278856672
- in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0e5ec721
- 0
- attached
- 2017-05-02T19:39:49.000Z
- true
-
-
- 54.145.134.133
-
- amazon
-
-
- -
- 10.0.0.36
- true
-
- 54.145.134.133
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-f48926a9
+ 6
+ true
+ standard
+ false
+
-
- 226008221399
+
+ paravirtual
+ xen
-
- r-045f6da0fe48accc5
- 200278856672
-
-
+ ami-a15a33c8
+ 309956199498/RHEL-6.3_GA-x86_64-5-Access2
+ available
+ 309956199498
+ 2013-05-18T14:27:58.000Z
+ false
+ x86_64
+ machine
+ aki-30ceaf59
+ RHEL-6.3_GA-x86_64-5-Access2
+ ebs
+ /dev/sda1
+
-
- i-06c2e2feb85b5c8b2
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-113.ec2.internal
-
- User initiated (2017-09-25 18:15:24 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-07-17T21:02:54.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.113
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0657f371b97c0f147
- attached
- 2017-07-17T19:21:46.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-cd97a82d
- 0
- attached
- 2017-07-17T19:21:45.000Z
- true
-
-
- -
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-3bf75166
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-001ade0887ad9089f
- 200278856672
-
+ ami-a16eacc8
+ 309956199498/RHEL-6.0-Starter-EBS-i386-15-Access2
+ available
+ 309956199498
+ 2011-09-23T19:21:41.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-6.0-Starter-EBS-i386-15-Access2
+ ebs
+ /dev/sda1
+
-
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
+ /dev/sda1
+
+ snap-54fb0b37
+ 6
+ true
+ standard
+ false
+
-
-
-
- i-025623c4c4e4f84a0
- ami-2a69aa47
-
-
16
- running
-
- ip-10-51-177-218.ec2.internal
- ec2-54-224-115-150.compute-1.amazonaws.com
-
- EmsRefreshSpec-KeyPair
- 0
-
- t1.micro
- 2017-08-31T00:02:52.000Z
-
- us-east-1d
-
- default
-
- aki-919dcaf8
-
- enabled
-
- 10.51.177.218
- 54.224.115.150
-
- -
- sg-ea9605fc
- EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-04eb2f294c5f9f7eb
- attached
- 2017-08-31T00:02:52.000Z
- true
-
-
-
- paravirtual
- 5cb9673a-f465-409b-9fb5-7fe96fe5ebe3_us-east-1d_1
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- aws:cloudformation:logical-id
- WebServerGroup
-
- -
- aws:autoscaling:groupName
- EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStackWithAutoscalingGroup2/33742240-12e1-11e7-a3d5-500c288f18d1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStackWithAutoscalingGroup2
-
-
- xen
-
- false
+ /dev/sdf
+ ephemeral0
-
- 226008221399
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
-
- r-06c8896ff6d4d039d
- 200278856672
-
-
+ ami-a33668b4
+ 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T22:32:26.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0b1ec6330e0180f75
- ami-b63769a1
-
-
80
- stopped
-
- ip-172-30-0-103.ec2.internal
-
- User initiated (2017-09-25 20:41:52 GMT)
- MIQ_SSA
- 0
-
- t2.micro
- 2017-09-23T18:24:21.000Z
-
- us-east-1a
-
- default
-
-
- disabled
-
- subnet-e88815d5
- vpc-aee2a6ca
- 172.30.0.103
- true
-
- -
- sg-97cd32e6
- MIQ_SSA
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0d805ae0a434871aa
- attached
- 2017-09-23T18:24:22.000Z
- true
-
-
-
- hvm
-
-
- -
- Name
- MIQ_SSA
-
-
- xen
-
- -
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
-
- 200278856672
- in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-aa928893
- 0
- attached
- 2017-09-23T18:24:21.000Z
- true
-
-
- -
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
-
-
-
- arn:aws:iam::200278856672:instance-profile/MIQ_SSA
- AIPAIJRTLQ4ESZDNWVESU
-
- false
+ /dev/sda1
+
+ snap-b9a222c1
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-e08e325e
- 200278856672
-
-
+ ami-a45cf6cc
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:55:37.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.10_GA-x86_64-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-c72af2f6
- ami-2051294a
-
-
16
- running
-
- ip-10-0-0-122.ec2.internal
-
-
- EmsRefreshSpec-KeyPair
- 0
-
- t2.micro
- 2017-09-26T07:43:04.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-f849ff96
- vpc-ff49ff91
- 10.0.0.122
- 54.208.71.4
- true
-
- -
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-da190f08
- attached
- 2016-08-30T07:17:59.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0acad09812d803c09
- attached
- 2017-03-17T07:25:12.000Z
- false
-
-
-
- hvm
- BWJjo1472541478233
-
- -
- Name
- EmsRefreshSpec-PoweredOn-VPC1
-
- -
- owner
- UNKNOWN
-
-
- xen
-
- -
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- Primary network interface
- 200278856672
- in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-455ec9ed
- 0
- attached
- 2016-08-30T07:17:58.000Z
- true
-
-
- 54.208.71.4
-
- amazon
-
-
- -
- 10.0.0.122
- true
-
- 54.208.71.4
-
- amazon
-
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-efcdd344
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a5d21ecc
+ 309956199498/RHEL-5.6-Starter-EBS-i386-13-Access2
+ available
+ 309956199498
+ 2011-10-10T16:11:55.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.6-Starter-EBS-i386-13-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-76630915
+ 6
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ paravirtual
+ xen
+
+ -
+ ami-a82204be
+ 309956199498/RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:04:05.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06cad1de61450c3f0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a93531c3
+ 309956199498/RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-03-10T18:46:47.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d585efd0
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
-
- r-00811be44fc3b2c8f
- 200278856672
-
-
+ ami-ac5ff5c4
+ 309956199498/RHEL-5.10_GA-i386-8-Access2-GP2
+ available
+ 309956199498
+ 2014-09-24T14:43:39.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-5.10_GA-i386-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0a922b9826b3dfd0d
- ami-b63769a1
-
-
80
- stopped
-
- ip-10-0-1-86.ec2.internal
-
- User initiated (2017-05-03 10:34:26 GMT)
- ladas_test
- 0
-
- t2.micro
- 2017-03-13T12:10:54.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.86
- true
-
- -
- sg-82c99dfe
- launch-wizard-38
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-0e251f8b387b2d87d
- attached
- 2017-02-16T16:28:16.000Z
- true
-
-
- -
- /dev/sdf
-
- vol-0dda5ecf4b2b3dc57
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
-
- hvm
- Wewzf1487262494337
-
- -
- EmsRefreshSpecResourceGroupTag
- EmsRefreshSpecResourceGroupTagValue
-
- -
- owner
- Ladas
-
- -
- Name
- ladas_test_5
-
-
- xen
-
- -
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- Primary network interface
- 200278856672
- in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
- true
-
-
-
- sg-82c99dfe
- launch-wizard-38
-
-
-
- eni-attach-56d3827c
- 0
- attached
- 2017-02-16T16:28:15.000Z
- true
-
-
- -
- 10.0.1.86
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-b36b7318
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
+ xen
-
- r-08595d55d4aa901a4
- 200278856672
-
-
+ ami-ac910ed6
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-11-29T19:11:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-0c1542ba946875280
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-90.ec2.internal
-
- User initiated (2017-03-23 19:13:13 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:41:22.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.90
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-035c47f5f5190ddc8
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-0c365b31acf12c5f0
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21003
-
-
- xen
-
- -
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-2217e50e
- 0
- attached
- 2017-03-21T19:41:22.000Z
- true
-
-
- -
- 10.0.1.90
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-023ae83387e571ca7
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+ true
-
- r-01136b3a8909eb8ef
- 200278856672
-
-
+ ami-acac51c4
+ 309956199498/RHEL-6.5_GA-i386-6-Access2
+ available
+ 309956199498
+ 2014-06-11T10:45:09.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-i386-6-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-035fa3affa815d81d
- ami-3f0e495a
-
-
80
- stopped
-
- ip-10-0-1-230.ec2.internal
-
- User initiated (2017-03-22 19:02:26 GMT)
- db
- 0
-
- t2.small
- 2017-03-21T19:39:52.000Z
-
- us-east-1e
-
- default
-
-
- disabled
-
- subnet-ac904787
- vpc-a06de3c5
- 10.0.1.230
- true
-
- -
- sg-24362241
- default
-
-
-
- Client.UserInitiatedShutdown
- Client.UserInitiatedShutdown: User initiated shutdown
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-059f5f4b2a5663e65
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- -
- /dev/sdf
-
- vol-03be1ddce0ee8a66f
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
-
- hvm
-
-
- -
- Name
- tina_test_march21002
-
-
- xen
-
- -
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
-
- 200278856672
- in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-9413e1b8
- 0
- attached
- 2017-03-21T19:39:52.000Z
- true
-
-
- -
- 10.0.1.230
- true
-
-
-
-
-
- false
+ /dev/sda1
+
+ snap-a0a94077
+ 10
+ true
+ standard
+ false
+
-
+
+ paravirtual
+ xen
-
- r-05ad2451777d582ec
- 200278856672
-
+ ami-af5c35c6
+ 309956199498/RHEL-6.3_GA-i386-5-Access2
+ available
+ 309956199498
+ 2013-05-18T15:25:25.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.3_GA-i386-5-Access2
+ ebs
+ /dev/sda1
+
-
- sg-347f9b5d
- default
+ /dev/sda1
+
+ snap-1b08ae46
+ 6
+ true
+ standard
+ false
+
-
-
+
+ paravirtual
+ xen
+
+ -
+ ami-b1e0e7a6
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-12-06T19:09:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161129-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- i-02c925747e07a8118
- ami-5769193e
-
-
16
- running
-
- ip-10-102-130-251.ec2.internal
- ec2-54-162-181-195.compute-1.amazonaws.com
-
- 0
-
- m3.medium
- 2017-07-24T19:18:26.000Z
-
- us-east-1d
-
- default
-
- aki-1eceaf77
-
- disabled
-
- 10.102.130.251
- 54.162.181.195
-
- -
- sg-347f9b5d
- default
-
-
- x86_64
- ebs
- /dev/sda1
-
- -
- /dev/sda1
-
- vol-05eb880e2e337b3f1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
-
- paravirtual
-
-
- -
- Name
- testtina123456
-
-
- xen
-
- false
+ /dev/sda1
+
+ snap-c4464775
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
+ xen
+
+ -
+ ami-b214e6da
+ 309956199498/RHEL-6.5_GA_HVM-x86_64-6-Access2
+ available
+ 309956199498
+ 2014-06-10T19:16:46.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_GA_HVM-x86_64-6-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3baca6ef
+ 10
+ true
+ standard
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-b2bd6dda
+ 309956199498/RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-08-08T13:07:31.000Z
+ false
+ x86_64
+ machine
+ aki-919dcaf8
+ RHEL-5.11_Beta-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4f8043e0
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-b35925a5
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:55:09.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fc148ef3438d1e04
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:35 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=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075235Z
- X-Amz-Content-Sha256:
- - 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=fab8c9694197ca087c80a805c951defec39e61f4cd62d3069d364ef62d096b97
- 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:
- - Tue, 26 Sep 2017 07:52:29 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 74573796-faa8-474c-a02f-e337eccbbd86
-
-
- ami-098d7f1f
- 200278856672/lads_image_from_volume
+ ami-b4a21ddc
+ 309956199498/RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
available
- 200278856672
- 2017-01-27T15:52:29.000Z
+ 309956199498
+ 2014-10-10T13:34:45.000Z
false
x86_64
machine
- lads_image_from_volume
-
+ RHEL-6.5_GA_HVM-20140929-x86_64-11-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0fb2163b24646b146
- 1
+ snap-bbafa91c
+ 10
true
gp2
false
- paravirtual
+ hvm
xen
-
- ami-1b3cc30d
- jerryk-instance-store-amis/bundle_folder/test_instance_store_instance01/image.manifest.xml
+ ami-b62589c9
+ 309956199498/RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-01-30T22:12:24.000Z
+ 309956199498
+ 2018-04-19T18:55:57.000Z
false
x86_64
machine
- aki-825ea7eb
- jerryk_instance_store_ami01
- instance-store
+ simple
+ RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-02109fa20ec701636
+ 10
+ true
+ gp2
+ false
+
hvm
xen
-
- ami-204c8436
- 200278856672/Ladas_test_5_image
+ ami-bb8c62d0
+ 309956199498/RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
available
- 200278856672
- 2017-02-16T15:23:41.000Z
+ 309956199498
+ 2015-06-04T17:30:59.000Z
false
- i386
+ x86_64
machine
- aki-36ed075f
- Ladas_test_5_image
- testing snapshot events
+ simple
+ RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-eafde662
- 7
+ snap-8d1009f8
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+
+ -
+ ami-bd8daeaa
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-11-08T17:14:19.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
- ephemeral0
-
- -
- /dev/sdg
- ephemeral1
+ /dev/sda1
+
+ snap-a4c8f515
+ 10
+ true
+ gp2
+ false
+
- paravirtual
+ hvm
xen
-
- ami-20e90e49
- jf-test-copy/jf-test-copy.img.manifest.xml
+ ami-be6a98d6
+ 309956199498/RHEL-6.5_GA-x86_64-9-Access2
available
- 200278856672
-
+ 309956199498
+ 2014-06-11T03:08:30.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
+ aki-919dcaf8
+ RHEL-6.5_GA-x86_64-9-Access2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-97627d43
+ 10
+ true
+ standard
+ false
+
+
+
paravirtual
xen
-
- ami-22470534
- 200278856672/ssa-agent-0525
+ ami-befed2d6
+ 309956199498/RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-25T18:23:14.000Z
+ 309956199498
+ 2015-03-19T21:05:30.000Z
false
x86_64
machine
simple
- ssa-agent-0525
- working version 1
+ RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-08810574
+ snap-bd88c7d5
10
true
gp2
@@ -23753,58 +37474,81 @@ http_interactions:
xen
-
- ami-25a81c4c
- 200278856672/suse-11-server-64
+ ami-c35767a9
+ 309956199498/RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
available
- 200278856672
- 2012-08-22T01:42:54.000Z
+ 309956199498
+ 2016-02-20T03:54:06.000Z
false
x86_64
machine
- aki-825ea7eb
- suse-11-server-64
-
+ simple
+ RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-6eee471d
+ snap-0b675a0f
10
true
- standard
+ gp2
false
- paravirtual
-
+ hvm
+ xen
+
+ -
+ ami-c56c05ac
+ 309956199498/RHEL-6.2_GA-i386-4-Access2
+ available
+ 309956199498
+ 2013-05-17T22:12:17.000Z
+ false
+ i386
+ machine
+ aki-68ceaf01
+ RHEL-6.2_GA-i386-4-Access2
+ ebs
+ /dev/sda1
+
-
- Name
- suse-11-server-64
+ /dev/sda1
+
+ snap-be7cb4e3
+ 6
+ true
+ standard
+ false
+
-
+
+ paravirtual
xen
-
- ami-320c005a
- 200278856672/t2 rhel 7.1
+ ami-c5a094bf
+ 309956199498/RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-04-28T17:25:53.000Z
+ 309956199498
+ 2018-01-22T17:34:06.000Z
false
x86_64
machine
- t2 rhel 7.1
- rhel
+ simple
+ RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8b289bec
+ snap-0fba1838228dc629f
10
true
gp2
@@ -23813,119 +37557,124 @@ http_interactions:
hvm
-
+ xen
+ true
+
+ -
+ ami-c63d82ae
+ 309956199498/RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ available
+ 309956199498
+ 2014-10-10T14:57:48.000Z
+ false
+ i386
+ machine
+ aki-8f9dcae6
+ RHEL-6.5_GA-20140929-i386-11-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- mkanoor_t2_rhel
+ /dev/sda1
+
+ snap-4d7a7aea
+ 10
+ true
+ gp2
+ false
+
-
+
+ paravirtual
xen
-
- ami-3bae1a52
- 200278856672/ubuntu-11.10-server-32
+ ami-c787eeae
+ 309956199498/RHEL-5.5_GA-i386-4-Access2
available
- 200278856672
- 2012-08-22T00:31:49.000Z
+ 309956199498
+ 2013-05-19T18:39:37.000Z
false
i386
machine
- aki-805ea7e9
- ubuntu-11.10-server-32
-
+ aki-68ceaf01
+ RHEL-5.5_GA-i386-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-968927e5
- 8
- false
+ snap-0fdb5d52
+ 6
+ true
standard
false
- -
- /dev/sda2
- ephemeral0
-
paravirtual
-
- -
- Name
- ubuntu-11.10-server-32
-
-
xen
-
- ami-3f0e495a
- 200278856672/CFME5.5.0
+ ami-cbd306a2
+ 309956199498/RHEL-6.2-Starter-EBS-i386-4-Access2
available
- 200278856672
- 2015-09-30T16:31:07.000Z
+ 309956199498
+ 2011-12-19T17:51:18.000Z
false
- x86_64
+ i386
machine
- CFME5.5.0
- Red Hat CloudForms 5.5 AMI
+ aki-36ed075f
+ RHEL-6.2-Starter-EBS-i386-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-1d177976
- 40
- false
+ snap-75094510
+ 6
+ true
standard
false
-
/dev/sdf
-
- snap-9dd602d7
- 50
- false
- gp2
- false
-
+ ephemeral0
-
- hvm
-
-
- Name
- cfme-5.5
+ /dev/sdg
+ ephemeral1
-
+
+ paravirtual
xen
-
- ami-45c9df3e
- 200278856672/ladas_test_111_snapshot_image_sdd
+ ami-cd5b32a4
+ 309956199498/RHEL-5.9_GA-x86_64-3-Access2
available
- 200278856672
- 2017-09-04T15:05:02.000Z
+ 309956199498
+ 2013-05-18T13:21:46.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image_sdd
-
+ aki-30ceaf59
+ RHEL-5.9_GA-x86_64-3-Access2
ebs
- /dev/sdd
+ /dev/sda1
-
- /dev/sdd
+ /dev/sda1
- snap-04b8acc66d50b9a7b
- 10
+ snap-04f75059
+ 6
true
- gp2
- true
+ standard
+ false
@@ -23933,82 +37682,88 @@ http_interactions:
xen
-
- ami-57318e3c
- 200278856672/mkanoor_testing_vpc
+ ami-cdc96aa6
+ 309956199498/RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
available
- 200278856672
- 2015-08-24T15:36:54.000Z
+ 309956199498
+ 2015-08-04T17:23:22.000Z
false
x86_64
machine
- aki-1eceaf77
- mkanoor_testing_vpc
- mkanoor_testing_vpc
+ simple
+ RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-5ab0eb13
- 7
+ snap-91688ce5
+ 10
true
- standard
+ gp2
false
- paravirtual
+ hvm
xen
-
- ami-5769193e
- 200278856672/EmsRefreshSpec-Image
+ ami-cfd31fa6
+ 309956199498/RHEL-5.6-Starter-EBS-x86_64-12-Access2
available
- 200278856672
- 2013-06-22T02:28:44.000Z
+ 309956199498
+ 2011-10-10T17:09:26.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-Image
- EmsRefreshSpec-Image
+ aki-08ed0761
+ RHEL-5.6-Starter-EBS-x86_64-12-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5f38cd0e
- 7
+ snap-32a7cd51
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
paravirtual
xen
-
- ami-5e86fe48
- 200278856672/ssa-agent-hsong
+ ami-d2d06aba
+ 309956199498/RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:44:02.000Z
+ 309956199498
+ 2014-10-17T20:41:16.000Z
false
x86_64
machine
- simple
- ssa-agent-hsong
- [Copied ami-464a2c26 from us-west-2] ssa-agent-hsong
+ RHEL-6.6_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0a5070b29f3ddcd92
+ snap-110804b7
10
true
gp2
@@ -24020,64 +37775,82 @@ http_interactions:
xen
-
- ami-63026775
- 200278856672/EmsRefreshSpec-PoweredOn-VPC_snapshot
+ ami-d2d369ba
+ 309956199498/RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-04-26T15:30:36.000Z
+ 309956199498
+ 2014-10-17T20:29:05.000Z
false
x86_64
machine
- aki-1eceaf77
- EmsRefreshSpec-PoweredOn-VPC_snapshot
- EmsRefreshSpec-PoweredOn-VPC_description
+ RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0001b68fed820fb79
- 7
+ snap-de444878
+ 10
true
- standard
+ gp2
false
+
+ hvm
+ xen
+
+ -
+ ami-d97120a3
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T21:29:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdf
+ /dev/sda1
- snap-0f1eb18bc955eb28a
- 1
+ snap-056379444619d757b
+ 10
true
gp2
false
- paravirtual
+ hvm
xen
+ true
-
- ami-63ac180a
- 200278856672/redhat-6.3-32
+ ami-d9ed21b0
+ 309956199498/RHEL-5.7-Starter-EBS-x86_64-3-Access2
available
- 200278856672
- 2012-08-21T23:30:21.000Z
+ 309956199498
+ 2011-10-10T19:01:04.000Z
false
- i386
+ x86_64
machine
- aki-36ed075f
- redhat-6.3-32
-
+ aki-08ed0761
+ RHEL-5.7-Starter-EBS-x86_64-3-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-d23a95a1
- 7
+ snap-a6dfb5c5
+ 6
true
standard
false
@@ -24093,36 +37866,95 @@ http_interactions:
paravirtual
-
+ xen
+
+ -
+ ami-dbb45dcd
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-17T19:59:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- redhat-6.3-32
+ /dev/sda1
+
+ snap-07e0629666eb37658
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-67bc0b0e
- 200278856672/miq-extract-base-ubuntu-12.04
+ ami-def37ea1
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-27T19:14:39.000Z
+ 309956199498
+ 2018-05-08T21:48:36.000Z
false
x86_64
machine
- aki-825ea7eb
- miq-extract-base-ubuntu-12.04
- ubuntu 12.04 + rvm/Ruby1.9
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-d03941a3
+ snap-0b8a46e49a52d14ee
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-e2c45a98
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ available
+ 679593333241
+ 2017-11-30T05:31:28.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0f90a5c0b7f575bf8
8
true
- standard
+ gp2
false
@@ -24132,39 +37964,105 @@ http_interactions:
paravirtual
-
+ xen
+ false
+
+ -
+ ami-e97bf796
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
+ available
+ 679593333241
+ 2018-05-09T17:38:24.000Z
+ false
+
-
- Name
- miq-extract-base-ubuntu-12.04
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
-
+
+ x86_64
+ machine
+ aki-919dcaf8
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-05db1cc1fdb7d5484
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
xen
+ false
-
- ami-7c4aa86a
- 200278856672/redhat-6.3-64
+ ami-e984ed80
+ 309956199498/RHEL-5.5_GA-x86_64-4-Access2
available
- 200278856672
- 2017-01-13T11:31:28.000Z
+ 309956199498
+ 2013-05-19T17:59:35.000Z
false
x86_64
machine
- aki-08ed0761
- redhat-6.3-64
- [Copied ami-bda014d4 from us-east-1] redhat-6.3-64
+ aki-30ceaf59
+ RHEL-5.5_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-6054c98a
- 7
+ snap-29b03774
+ 6
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-e9ec2080
+ 309956199498/RHEL-5.7-Starter-EBS-i386-5-Access2
+ available
+ 309956199498
+ 2011-10-10T18:04:32.000Z
+ false
+ i386
+ machine
+ aki-36ed075f
+ RHEL-5.7-Starter-EBS-i386-5-Access2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8e90faed
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
@@ -24174,25 +38072,25 @@ http_interactions:
xen
-
- ami-7d85fd6b
- 200278856672/hsong-ssa-agent-v1
+ ami-eb0a7694
+ 309956199498/RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-05-18T14:21:55.000Z
+ 309956199498
+ 2018-06-06T21:58:13.000Z
false
x86_64
machine
simple
- hsong-ssa-agent-v1
- [Copied ami-224c2a42 from us-west-2] hsong-ssa-agent-v1
+ RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-05ef19f30ffe6ceaa
- 80
+ snap-076491f21bfe39630
+ 10
true
gp2
false
@@ -24203,55 +38101,63 @@ http_interactions:
xen
-
- ami-8bf2e4f0
- 200278856672/ladas_test_111_snapshot_image
+ ami-ebba9e90
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-04T15:04:28.000Z
+ 309956199498
+ 2017-08-01T13:55:21.000Z
false
x86_64
machine
- ladas_test_111_snapshot_image
-
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-04b8acc66d50b9a7b
+ snap-05b0394bb3b8b42d0
10
true
gp2
- true
+ false
- paravirtual
+ hvm
xen
-
- ami-95ad19fc
- 200278856672/ubuntu-11.10-server-64
+ ami-ec601593
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
available
- 200278856672
- 2012-08-22T00:20:33.000Z
+ 679593333241
+ 2018-06-01T11:50:23.000Z
false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
x86_64
machine
- aki-825ea7eb
- ubuntu-11.10-server-64
-
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-05-22
ebs
/dev/sda1
-
/dev/sda1
- snap-90bc12e3
+ snap-029167631d7dbab96
8
- false
- standard
+ true
+ gp2
false
@@ -24259,94 +38165,70 @@ http_interactions:
/dev/sdb
ephemeral0
-
- paravirtual
-
-
- Name
- ubuntu-11.10-server-64
+ /dev/sdc
+ ephemeral1
-
+
+ hvm
xen
+ true
-
- ami-a7185ec2
- 200278856672/CFME-55Image
+ ami-ee0eaf87
+ 309956199498/RHEL-6.3-Starter-x86_64-1-Access2
available
- 200278856672
- 2015-10-01T15:35:55.000Z
+ 309956199498
+ 2012-06-04T19:11:15.000Z
false
x86_64
machine
- CFME-55Image
- CFME-55Image
+ aki-ecfa0185
+ RHEL-6.3-Starter-x86_64-1-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-249e4c6c
- 40
- false
- gp2
+ snap-0a6f0275
+ 7
+ true
+ standard
false
-
- /dev/sdb
-
- 30
- false
- gp2
- false
-
+ /dev/sdf
+ ephemeral0
-
- hvm
- xen
-
- -
- ami-ad43a4c4
- rpo-images/miq-ec2-proto.img.manifest.xml
- available
- 200278856672
-
- false
- i386
- machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
-
- Name
- extract-proto0
+ /dev/sdg
+ ephemeral1
-
+
+ paravirtual
xen
-
- ami-bbc9dac0
- 200278856672/ladas_test111
+ ami-eea69e86
+ 309956199498/RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
available
- 200278856672
- 2017-09-06T15:25:11.000Z
+ 309956199498
+ 2015-04-14T16:05:15.000Z
false
x86_64
machine
simple
- ladas_test111
-
+ RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-09505262c29651f47
+ snap-f7bff783
10
true
gp2
@@ -24358,333 +38240,306 @@ http_interactions:
xen
-
- ami-bda014d4
- 200278856672/redhat-6.3-64
+ ami-ef0ddc86
+ 309956199498/RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
available
- 200278856672
- 2012-08-21T21:31:39.000Z
+ 309956199498
+ 2012-01-31T17:25:19.000Z
false
x86_64
machine
- aki-08ed0761
- redhat-6.3-64
-
+ aki-ecfa0185
+ RHEL-5.8-RC2-Starter-EBS-x86_64-7-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-5210bc21
- 7
+ snap-a26c77c6
+ 6
true
standard
false
+ -
+ /dev/sdf
+ ephemeral0
+
-
/dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- redhat-6.3-64
-
-
xen
-
- ami-c68639af
- miq-extract-images/evm-extract.manifest.xml
+ ami-f1c75d8e
+ 309956199498/RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-10-11T20:34:52.000Z
+ 309956199498
+ 2018-05-22T20:49:43.000Z
false
x86_64
machine
- aki-825ea7eb
- evm-extract
- instance-store
+ simple
+ RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
-
- /dev/sdb
- ephemeral0
+ /dev/sda1
+
+ snap-034ca7106de61d544
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- evm-extract
-
-
+ hvm
xen
-
- ami-cd43a4a4
- rpo-images/miq-ec2-extract.img.manifest.xml
+ ami-f22c838f
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
available
- 200278856672
-
+ 309956199498
+ 2018-04-05T14:03:24.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
-
- paravirtual
-
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- extract-proto-old
+ /dev/sda1
+
+ snap-082db2812440be4e6
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
+ true
-
- ami-cf08bda6
- rpo-images/ubuntu10.04/miq-extract-work3.manifest.xml
+ ami-f4f16b9d
+ 309956199498/RHEL-6.4_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-19T18:43:47.000Z
+ 309956199498
+ 2013-03-28T15:27:20.000Z
false
x86_64
machine
- aki-6a0cf803
- instance-store
+ aki-ecfa0185
+ RHEL-6.4_GA-x86_64-4-Access2
+ ebs
/dev/sda1
-
- sdb
+ /dev/sda1
+
+ snap-11a7ef56
+ 7
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
ephemeral0
-
- sdc
+ /dev/sdg
ephemeral1
paravirtual
-
- -
- Name
- extract-proto3
-
-
xen
-
- ami-ebcb7e82
- rpo-images/ubuntu10.04/ubuntu10.04-rvm-ruby1.9.manifest.xml
+ ami-fb261f91
+ 309956199498/RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
available
- 200278856672
- 2012-08-15T02:47:43.000Z
+ 309956199498
+ 2016-03-02T16:35:59.000Z
false
x86_64
machine
- aki-6a0cf803
- ubuntu10.04-rvm-ruby1.9
- instance-store
+ simple
+ RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sdb
- ephemeral0
-
- -
- sdc
- ephemeral1
+ /dev/sda1
+
+ snap-493b545c
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- ubuntu-10.04-rvm-ruby1.9
-
-
+ hvm
xen
-
- ami-edaa1f84
- rpo-work/miq-test.img.manifest.xml
+ ami-fbc89880
+ 309956199498/RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-15T18:51:02.000Z
+ 309956199498
+ 2017-07-24T15:44:37.000Z
false
- i386
+ x86_64
machine
- aki-a71cf9ce
- ari-a51cf9cc
- instance-store
+ simple
+ RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
/dev/sda1
-
- sda2
- ephemeral0
+ /dev/sda1
+
+ snap-06b3fdee8ff92a35b
+ 10
+ true
+ gp2
+ false
+
- paravirtual
-
- -
- Name
- test-linux
-
-
+ hvm
xen
-
- ami-edad1984
- 200278856672/ubuntu-12.04-server-32
+ ami-fc94dd94
+ 309956199498/RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
available
- 200278856672
- 2012-08-22T00:07:18.000Z
+ 309956199498
+ 2015-02-09T21:01:42.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- ubuntu-12.04-server-32
-
+ aki-919dcaf8
+ RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-8ec06efd
- 8
+ snap-4c738dc3
+ 6
true
- standard
+ gp2
false
- -
- /dev/sda2
- ephemeral0
-
paravirtual
-
+ xen
+
+ -
+ ami-ff13f292
+ 309956199498/RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-05-03T20:13:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- Name
- ubuntu-12.04-server-32
+ /dev/sda1
+
+ snap-5f073bba
+ 10
+ true
+ gp2
+ false
+
-
+
+ hvm
xen
-
- ami-f3a81c9a
- 200278856672/suse-11-server-32
+ ami-ff83ea96
+ 309956199498/RHEL-5.6_GA-x86_64-4-Access2
available
- 200278856672
- 2012-08-22T01:57:01.000Z
+ 309956199498
+ 2013-05-19T15:16:36.000Z
false
- i386
+ x86_64
machine
- aki-805ea7e9
- suse-11-server-32
-
+ aki-30ceaf59
+ RHEL-5.6_GA-x86_64-4-Access2
ebs
/dev/sda1
-
/dev/sda1
- snap-baf35ac9
- 10
- false
+ snap-0215af5f
+ 6
+ true
standard
false
paravirtual
-
- -
- Name
- suse-11-server-32
-
-
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:36 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeImages&ExecutableBy.1=self&Filter.1.Name=image-type&Filter.1.Value.1=machine&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075236Z
- X-Amz-Content-Sha256:
- - 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=65596dd6d9d0af3c4daacbf07c1da8466e93791d203c9cead4af79a7842583c5
- Content-Length:
- - '110'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:31 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 10fc5803-cad0-4ff4-9dd4-dce0068d652e
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:37 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:33 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeImages&Filter.1.Name=image-id&Filter.1.Value.1=ami-0092b117&Filter.1.Value.2=ami-0b33d91d&Filter.1.Value.3=ami-2051294a&Filter.1.Value.4=ami-271e7c31&Filter.1.Value.5=ami-2a69aa47&Filter.1.Value.6=ami-6869aa05&Filter.1.Value.7=ami-b63769a1&Version=2016-11-15
+ string: Action=DescribeImages&Filter.1.Name=image-id&Filter.1.Value.1=ami-2051294a&Filter.1.Value.2=ami-26ebbc5c&Filter.1.Value.3=ami-2a69aa47&Filter.1.Value.4=ami-55ef662f&Filter.1.Value.5=ami-6869aa05&Filter.1.Value.6=ami-6871a115&Filter.1.Value.7=ami-70e8fd66&Filter.1.Value.8=ami-a4dc46db&Filter.1.Value.9=ami-c998b6b2&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075237Z
+ - 20180906T091533Z
X-Amz-Content-Sha256:
- - f52000e36b875b76018d0e28e8c0342a390dbb630d6167a9a1ab820afc3ab9e4
+ - 580e07b6af629233c2627e4335e534dcf2d47f4e334c4d55a9b526e459cf11bc
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=44dd700f94e2e42a0488ff0ca4da917767f023826d7a8838630f2ba21c964d33
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=30f04db1bee517d08fee85fabe74e35e532bd86f1bb8d8e535c95ca56334120b
Content-Length:
- - '273'
+ - '333'
Accept:
- "*/*"
response:
@@ -24699,7 +38554,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:32 GMT
+ - Thu, 06 Sep 2018 09:15:34 GMT
Server:
- AmazonEC2
body:
@@ -24707,27 +38562,57 @@ http_interactions:
string: |-
- 7ae4e428-169c-4334-b685-b35bdcfaa32d
+ 44084a9b-1094-4dc8-bdad-590467786bd7
-
- ami-0092b117
- 125523088429/Fedora-Cloud-Base-25-20161108.n.1.x86_64-us-east-1-HVM-gp2-0
+ ami-2051294a
+ 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
+ available
+ 309956199498
+ 2015-11-12T21:06:58.000Z
+ true
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ba40cac8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-26ebbc5c
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Hourly2-GP2
available
- 125523088429
- 2016-11-08T17:29:08.000Z
+ 309956199498
+ 2018-01-04T01:55:42.000Z
true
x86_64
machine
- Fedora-Cloud-Base-25-20161108.n.1.x86_64-us-east-1-HVM-gp2-0
- Created from build Fedora-Cloud-Base-25-20161108.n.1.x86_64
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Hourly2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-e159bf6a
- 6
+ snap-0a1cfc902770c514d
+ 10
true
gp2
false
@@ -24736,27 +38621,58 @@ http_interactions:
hvm
xen
+ true
+
+ -
+ ami-2a69aa47
+ amazon/amzn-ami-pv-2016.03.3.x86_64-ebs
+ available
+ 137112412989
+ 2016-06-22T06:11:54.000Z
+ true
+ x86_64
+ machine
+ aki-919dcaf8
+ amazon
+ amzn-ami-pv-2016.03.3.x86_64-ebs
+ Amazon Linux AMI 2016.03.3 x86_64 PV EBS
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-4177dea1
+ 8
+ true
+ standard
+ false
+
+
+
+ paravirtual
+ xen
-
- ami-0b33d91d
- amazon/amzn-ami-hvm-2016.09.1.20170119-x86_64-gp2
+ ami-55ef662f
+ amazon/amzn-ami-hvm-2017.09.1.20171120-x86_64-gp2
available
137112412989
- 2017-01-20T23:39:56.000Z
+ 2017-11-20T22:29:51.000Z
true
x86_64
machine
simple
amazon
- amzn-ami-hvm-2016.09.1.20170119-x86_64-gp2
- Amazon Linux AMI 2016.09.1.20170119 x86_64 HVM GP2
+ amzn-ami-hvm-2017.09.1.20171120-x86_64-gp2
+ Amazon Linux AMI 2017.09.1.20171120 x86_64 HVM GP2
ebs
/dev/xvda
-
/dev/xvda
- snap-037f1f9e6c8ea4d65
+ snap-055cf1cfc1dda99fe
8
true
gp2
@@ -24769,25 +38685,26 @@ http_interactions:
true
-
- ami-2051294a
- 309956199498/RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
+ ami-6869aa05
+ amazon/amzn-ami-hvm-2016.03.3.x86_64-gp2
available
- 309956199498
- 2015-11-12T21:06:58.000Z
+ 137112412989
+ 2016-06-22T06:10:37.000Z
true
x86_64
machine
simple
- RHEL-7.2_HVM_GA-20151112-x86_64-1-Hourly2-GP2
- Provided by Red Hat, Inc.
+ amazon
+ amzn-ami-hvm-2016.03.3.x86_64-gp2
+ Amazon Linux AMI 2016.03.3 x86_64 HVM GP2
ebs
- /dev/sda1
+ /dev/xvda
-
- /dev/sda1
+ /dev/xvda
- snap-ba40cac8
- 10
+ snap-25dd2ac1
+ 8
true
gp2
false
@@ -24796,107 +38713,115 @@ http_interactions:
hvm
xen
+ true
-
- ami-271e7c31
- 900854079004/ansible-tower-5907e6c6-1b34-fc1c-d7f3-fbf29a09941f
+ ami-6871a115
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Hourly2-GP2
available
- 900854079004
- 2017-05-02T02:34:05.000Z
+ 309956199498
+ 2018-03-23T20:42:08.000Z
true
x86_64
machine
- ansible-tower-5907e6c6-1b34-fc1c-d7f3-fbf29a09941f
- Ansible Tower 3.1.3 on CentOS 7 x86_64
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Hourly2-GP2
+ Provided by Red Hat, Inc.
ebs
/dev/sda1
-
/dev/sda1
- snap-0f9a8e1fc22263c6c
- 8
- false
- standard
+ snap-02196f4f8507c9598
+ 10
+ true
+ gp2
false
hvm
xen
+ true
-
- ami-2a69aa47
- amazon/amzn-ami-pv-2016.03.3.x86_64-ebs
+ ami-70e8fd66
+ 410186602215/CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
available
- 137112412989
- 2016-06-22T06:11:54.000Z
+ 410186602215
+ 2017-07-17T17:47:40.000Z
true
x86_64
machine
- aki-919dcaf8
- amazon
- amzn-ami-pv-2016.03.3.x86_64-ebs
- Amazon Linux AMI 2016.03.3 x86_64 PV EBS
+ CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
+ CentOS Atomic Host 7 x86_64 HVM EBS 1706_01
ebs
/dev/sda1
-
/dev/sda1
- snap-4177dea1
- 8
- true
+ snap-00b622fadac39e90b
+ 10
+ false
standard
false
- paravirtual
+ hvm
xen
-
- ami-6869aa05
- amazon/amzn-ami-hvm-2016.03.3.x86_64-gp2
+ ami-a4dc46db
+ 099720109477/ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180522
available
- 137112412989
- 2016-06-22T06:10:37.000Z
+ 099720109477
+ 2018-05-22T18:51:04.000Z
true
x86_64
machine
simple
- amazon
- amzn-ami-hvm-2016.03.3.x86_64-gp2
- Amazon Linux AMI 2016.03.3 x86_64 HVM GP2
+ ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-20180522
+ Canonical, Ubuntu, 16.04 LTS, amd64 xenial image build on 2018-05-22
ebs
- /dev/xvda
+ /dev/sda1
-
- /dev/xvda
+ /dev/sda1
- snap-25dd2ac1
+ snap-0eea1ed47e203f3b8
8
true
gp2
false
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
hvm
xen
true
-
- ami-b63769a1
- 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Hourly2-GP2
+ ami-c998b6b2
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2
available
309956199498
- 2016-10-26T22:32:29.000Z
+ 2017-08-08T15:37:31.000Z
true
x86_64
machine
simple
- RHEL-7.3_HVM_GA-20161026-x86_64-1-Hourly2-GP2
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Hourly2-GP2
Provided by Red Hat, Inc.
ebs
/dev/sda1
@@ -24904,7 +38829,7 @@ http_interactions:
-
/dev/sda1
- snap-b9a222c1
+ snap-0822784885cd20aff
10
true
gp2
@@ -24914,11 +38839,12 @@ http_interactions:
hvm
xen
+ true
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:38 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:35 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -24931,14 +38857,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075238Z
+ - 20180906T091535Z
X-Amz-Content-Sha256:
- 398587829763af2624ad0faa257a51949217b85bb2957c3948946c38ab0fddac
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b8e27e156551057ab6dad964430b9fab652c100de093a958e80b69cdd3a56b7b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3ab7258e499c086e66be8c5d27f71a009f9156ccd39bda44efa7ee68e1284d7e
Content-Length:
- '48'
Accept:
@@ -24955,7 +38881,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:33 GMT
+ - Thu, 06 Sep 2018 09:15:35 GMT
Server:
- AmazonEC2
body:
@@ -24963,7 +38889,7 @@ http_interactions:
string: |-
- 1082153b-cd67-496e-b422-c9224671747b
+ 0643a617-e602-4c1e-8fa0-b3caf099dd7c
-
200278856672
@@ -26067,26 +39993,174 @@ http_interactions:
-
200278856672
- sg-000ff571
- launch-wizard-46
- launch-wizard-46 created 2017-06-16T16:53:45.929-04:00
- vpc-a06de3c5
+ sg-1b8a728d
+ launch-wizard-13
+ launch-wizard-13 created 2017-10-09T15:03:56.991+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-15d81e83
+ Ubuntu Server 14-04 LTS-14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-fde6206b
+ Ubuntu Server 14-04 LTS -HVM--14-04 LTS 20170803-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for Ubuntu Server 14.04 LTS (HVM) version 14.04 LTS 20170803 provided by Canonical Group Limited
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-f448eb62
+ launch-wizard-14
+ launch-wizard-14 created 2018-03-12T12:23:52.936+01:00
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-0a273fc133a84d430
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ Enable SSH access and HTTP access on the inbound port
-
tcp
80
80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
-
0.0.0.0/0
-
+
+
+
+
+
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-5pyltbgyzheqm
+
+
+
+ -
+ 200278856672
+ sg-0e16627de529ac186
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
+ Enable SSH access and HTTP access on the inbound port
+
+
-
+ tcp
+ 80
+ 80
+
-
- ::/0
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
-
+
+
+
-
@@ -26102,10 +40176,226 @@ http_interactions:
+
+
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-gato4drzgerpy
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+
+
+
+ -
+ 200278856672
+ sg-023dc6725e0004f03
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+ Enable SSH access and HTTP access on the inbound port
+
-
tcp
- 443
- 443
+ 80
+ 80
+
+
-
+ amazon-elb
+ sg-843f59ed
+ amazon-elb-sg
+
+
+
+
+
+
+ -
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ aws:servicecatalog:productArn
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+
+ -
+ aws:servicecatalog:provisioningPrincipalArn
+ arn:aws:iam::200278856672:user/VCR
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+
+ -
+ aws:servicecatalog:portfolioArn
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+
+ -
+ aws:cloudformation:stack-name
+ SC-200278856672-pp-u2tepcnttldko
+
+
+
+ -
+ 200278856672
+ sg-0142c27e
+ default
+ default VPC security group
+ vpc-c3d2f1a5
+
+
-
+ -1
+
+
-
+ 200278856672
+ sg-0142c27e
+
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-041d424d
+ launch-wizard-36
+ launch-wizard-36 created 2018-04-26T11:02:24.267+01:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-06ed824c
+ ladas_test_jul25_3
+ ladas_test_changed
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-08314440
+ launch-wizard-38
+ launch-wizard-38 created 2018-05-24T15:43:41.371+02:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+ -
+ icmp
+ -1
+ -1
-
@@ -26133,24 +40423,122 @@ 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
+
-
- Name
- Ansible tower
+ tcp
+ 2222
+ 2222
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
-
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
-
200278856672
- sg-00e3537c
- launch-wizard-27
- launch-wizard-27 created 2017-01-26T13:23:15.837-05:00
- vpc-a06de3c5
+ sg-14ca085e
+ ladas_test5
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
- 3389
- 3389
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-1e2cf271
+ default
+ default VPC security group
+ vpc-ff49ff91
+
+
-
+ -1
+
+
-
+ 200278856672
+ sg-1e2cf271
+
+
+
+
+
+
+
+
+ -
+ -1
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ 200278856672
+ sg-2899b45d
+ launch-wizard-16
+ launch-wizard-16 created 2017-12-13T10:04:20.108-05:00
+ vpc-ff49ff91
+
+
-
+ tcp
+ 22
+ 22
-
@@ -26177,20 +40565,21 @@ http_interactions:
-
200278856672
- sg-0142c27e
- default
- default VPC security group
- vpc-c3d2f1a5
+ sg-42071e09
+ ladas_test_jul10
+ ladas_test_changed
+ vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-0142c27e
+ 0.0.0.0/0
-
-
+
@@ -26211,25 +40600,11 @@ http_interactions:
-
200278856672
- sg-03ff5a67
- launch-wizard-5
- launch-wizard-5 created 2015-01-29T14:42:40.334-05:00
- vpc-a06de3c5
-
-
-
- tcp
- 22
- 22
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
+ sg-43cb9c27
+ launch-wizard-7
+ launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
+ vpc-ff49ff91
+
-
-1
@@ -26246,15 +40621,15 @@ 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
+ sg-45ea7f37
+ launch-wizard-52
+ launch-wizard-52 created 2017-10-19T17:55:15.762-04:00
+ vpc-8cf117f5
-
tcp
- 2222
- 2222
+ 22
+ 22
-
@@ -26281,36 +40656,21 @@ http_interactions:
-
200278856672
- sg-10362275
- DemoSecurityGroup
- for AWS Demos
- vpc-a06de3c5
+ sg-47168f0d
+ ladas_test_jul24_3
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
22
22
-
-
-
- 200278856672
- sg-10362275
-
-
-
-
-
-
- -
- tcp
- 3306
- 3306
-
+
+
-
- 200278856672
- sg-10362275
+ 0.0.0.0/0
-
-
+
@@ -26328,19 +40688,13 @@ http_interactions:
-
- -
- Name
- DemoSecGroup-Disallowed
-
-
-
200278856672
- sg-1da7d07a
- launch-wizard-9
- launch-wizard-9 created 2015-08-24T14:02:53.560-04:00
- vpc-a06de3c5
+ sg-4a6d4b38
+ launch-wizard-56
+ launch-wizard-56 created 2017-10-31T13:12:17.619-04:00
+ vpc-8cf117f5
-
tcp
@@ -26372,17 +40726,17 @@ http_interactions:
-
200278856672
- sg-1e2cf271
+ sg-4cc30d32
default
default VPC security group
- vpc-ff49ff91
+ vpc-8cf117f5
-
-1
-
200278856672
- sg-1e2cf271
+ sg-4cc30d32
@@ -26406,10 +40760,10 @@ http_interactions:
-
200278856672
- sg-1facdb78
- launch-wizard-11
- launch-wizard-11 created 2015-08-24T14:22:34.811-04:00
- vpc-a06de3c5
+ sg-4d0ec507
+ ladas_test
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -26441,20 +40795,21 @@ http_interactions:
-
200278856672
- sg-24362241
- default
- default VPC security group
- vpc-a06de3c5
+ sg-5096f91a
+ ladas_test_jul25_2
+ ladas_test_changed
+ vpc-ff49ff91
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-24362241
+ 0.0.0.0/0
-
-
+
@@ -26475,15 +40830,15 @@ http_interactions:
-
200278856672
- sg-2613e957
- launch-wizard-45
- launch-wizard-45 created 2017-06-16T16:44:29.050-04:00
- vpc-a06de3c5
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ Public ELB Security Group with HTTP access on port 80 from the internet
+ vpc-c3d2f1a5
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -26493,27 +40848,12 @@ http_interactions:
- -
- tcp
- 443
- 443
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
- -1
+ tcp
+ 80
+ 80
-
@@ -26524,13 +40864,27 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ aws:cloudformation:logical-id
+ PublicLoadBalancerSecurityGroup
+
+
-
200278856672
- sg-38511448
- launch-wizard-47
- launch-wizard-47 created 2017-08-29T15:13:44.025-04:00
- vpc-a06de3c5
+ sg-5b83ec11
+ ladas_test_jul25_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -26562,10 +40916,10 @@ http_interactions:
-
200278856672
- sg-398cb044
- launch-wizard-25
- launch-wizard-25 created 2016-12-20T17:45:43.702-05:00
- vpc-a06de3c5
+ sg-5c49922a
+ launch-wizard-26
+ launch-wizard-26 created 2018-03-06T13:29:21.183-05:00
+ vpc-8cf117f5
-
tcp
@@ -26597,15 +40951,15 @@ http_interactions:
-
200278856672
- sg-3ecff343
- launch-wizard-23
- launch-wizard-23 created 2016-12-20T16:19:45.863-05:00
- vpc-a06de3c5
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
+ ladas_ansible_test_1_sc_description
+ vpc-ff49ff91
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -26615,10 +40969,10 @@ http_interactions:
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -26628,19 +40982,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-434f323f
- launch-wizard-36
- launch-wizard-36 created 2017-02-10T16:43:58.127-05:00
- vpc-a06de3c5
-
-
tcp
- 22
- 22
+ 443
+ 443
-
@@ -26667,14 +41012,15 @@ http_interactions:
-
200278856672
- sg-43cb9c27
- launch-wizard-7
- launch-wizard-7 created 2015-04-28T12:59:48.381-04:00
- vpc-ff49ff91
-
-
+ sg-67541b15
+ smartstate
+ Security group for smartstate Agent
+ vpc-aee2a6ca
+
-
- -1
+ tcp
+ 80
+ 80
-
@@ -26684,31 +41030,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-4cc30d32
- default
- default VPC security group
- vpc-8cf117f5
-
-
-
- -1
-
-
-
- 200278856672
- sg-4cc30d32
-
-
-
-
-
-
-
-
-
- -1
+ tcp
+ 22
+ 22
-
@@ -26718,19 +41043,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-56a5d231
- launch-wizard-10
- launch-wizard-10 created 2015-08-24T14:06:10.925-04:00
- vpc-a06de3c5
-
-
tcp
- 22
- 22
+ 443
+ 443
-
@@ -26757,15 +41073,15 @@ http_interactions:
-
200278856672
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- Public ELB Security Group with HTTP access on port 80 from the internet
+ sg-68c28c1e
+ simaishi
+ launch-wizard-36 created 2018-03-21T17:44:48.938-04:00
vpc-c3d2f1a5
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -26775,12 +41091,27 @@ http_interactions:
+ -
+ tcp
+ 443
+ 443
+
+
+
-
+ 0.0.0.0/0
+
+
+
+ -
+ ::/0
+
+
+
+
-
- tcp
- 80
- 80
+ -1
-
@@ -26791,27 +41122,13 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
-
- -
- aws:cloudformation:logical-id
- PublicLoadBalancerSecurityGroup
-
-
-
200278856672
- sg-6106b61c
- launch-wizard-16
- launch-wizard-16 created 2016-11-15T16:12:37.114+01:00
- vpc-a06de3c5
+ sg-6b62e412
+ launch-wizard-15
+ launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
+ vpc-ff49ff91
-
tcp
@@ -26843,15 +41160,15 @@ http_interactions:
-
200278856672
- sg-65d59519
- launch-wizard-37
- launch-wizard-37 created 2017-02-14T17:18:15.823+01:00
- vpc-a06de3c5
+ sg-734efc0f
+ quick-create-2-lbtest3
+ quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
+ vpc-ff49ff91
-
tcp
- 22
- 22
+ 80
+ 80
-
@@ -26878,10 +41195,10 @@ http_interactions:
-
200278856672
- sg-67af5d03
- launch-wizard-2
- launch-wizard-2 created 2014-12-16T11:24:47.439-05:00
- vpc-a06de3c5
+ sg-75614707
+ launch-wizard-57
+ launch-wizard-57 created 2017-10-31T13:14:14.391-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -26913,28 +41230,15 @@ http_interactions:
-
200278856672
- sg-6b62e412
- launch-wizard-15
- launch-wizard-15 created 2016-01-06T18:07:46.074-05:00
- vpc-ff49ff91
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ Enable SSH access via port 22
+ vpc-8cf117f5
-
tcp
- 22
- 22
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
-
- -
- -1
+ 80
+ 80
-
@@ -26944,19 +41248,10 @@ http_interactions:
-
-
- -
- 200278856672
- sg-734efc0f
- quick-create-2-lbtest3
- quick-create-2 created on Friday, January 27, 2017 at 11:18:12 AM UTC+1
- vpc-ff49ff91
-
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -26980,13 +41275,35 @@ http_interactions:
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ aws:cloudformation:logical-id
+ InstanceSecurityGroup
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+
-
200278856672
- sg-73f74d0e
- launch-wizard-17
- launch-wizard-17 created 2016-11-17T11:08:15.164-05:00
- vpc-a06de3c5
+ sg-79f9e633
+ ladas_test2
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -27018,24 +41335,11 @@ http_interactions:
-
200278856672
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- Enable SSH access via port 22
- vpc-8cf117f5
+ sg-7b534930
+ ladas_test_jul11
+ ladas_test_changed
+ vpc-ff49ff91
-
-
- tcp
- 80
- 80
-
-
-
-
- 0.0.0.0/0
-
-
-
-
-
-
tcp
22
@@ -27063,28 +41367,6 @@ http_interactions:
-
- -
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
-
- -
- aws:cloudformation:logical-id
- InstanceSecurityGroup
-
- -
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
-
- -
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
-
-
-
200278856672
@@ -27123,10 +41405,10 @@ http_interactions:
-
200278856672
- sg-7ec11602
- launch-wizard-26
- launch-wizard-26 created 2017-01-17T15:47:44.393-05:00
- vpc-a06de3c5
+ sg-7f892508
+ launch-wizard-18
+ launch-wizard-18 created 2018-02-01T14:12:05.486-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -27206,10 +41488,10 @@ http_interactions:
-
200278856672
- sg-82c99dfe
- launch-wizard-38
- launch-wizard-38 created 2017-02-16T11:27:56.384-05:00
- vpc-a06de3c5
+ sg-8280c0f5
+ launch-wizard-22
+ launch-wizard-22 created 2018-02-14T15:09:29.980+01:00
+ vpc-ff49ff91
-
tcp
@@ -27241,28 +41523,11 @@ http_interactions:
-
200278856672
- sg-86e19cf8
- launch-wizard-40
- launch-wizard-40 created 2017-05-16T14:13:09.595-04:00
- vpc-a06de3c5
+ sg-8b4c9dc2
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-1
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
-
- udp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
-
-
-
tcp
22
@@ -27273,28 +41538,7 @@ http_interactions:
0.0.0.0/0
-
- -
- ::/0
-
-
-
-
- -
- tcp
- 9090
- 9090
-
-
-
-
- 0.0.0.0/0
-
-
-
- -
- ::/0
-
-
+
@@ -27314,10 +41558,10 @@ http_interactions:
-
200278856672
- sg-87838bf9
- launch-wizard-42
- launch-wizard-42 created 2017-06-05T17:22:54.552-04:00
- vpc-a06de3c5
+ sg-8dff68ff
+ launch-wizard-53
+ launch-wizard-53 created 2017-10-19T23:07:38.280-04:00
+ vpc-c3d2f1a5
-
tcp
@@ -27508,21 +41752,20 @@ http_interactions:
-
200278856672
- sg-999c6efd
- mk_test
- MK
- vpc-a06de3c5
+ sg-a493cddd
+ default
+ default VPC security group
+ vpc-aee2a6ca
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 173.3.23.48/32
+ 200278856672
+ sg-a493cddd
-
+
+
@@ -27543,10 +41786,10 @@ http_interactions:
-
200278856672
- sg-9e1be1ef
- launch-wizard-44
- launch-wizard-44 created 2017-06-16T16:29:17.135-04:00
- vpc-a06de3c5
+ sg-a5b994d0
+ launch-wizard-14
+ launch-wizard-14 created 2017-12-13T09:42:39.062-05:00
+ vpc-ff49ff91
-
tcp
@@ -27578,10 +41821,10 @@ http_interactions:
-
200278856672
- sg-9ed82afa
- launch-wizard-4
- launch-wizard-4 created 2014-12-16T16:49:57.781-05:00
- vpc-a06de3c5
+ sg-a66eedd0
+ launch-wizard-27
+ launch-wizard-27 created 2018-03-12T14:47:33.616+01:00
+ vpc-aee2a6ca
-
tcp
@@ -27590,7 +41833,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -27613,10 +41856,10 @@ http_interactions:
-
200278856672
- sg-9fe1a5e1
- launch-wizard-41
- launch-wizard-41 created 2017-05-18T11:06:38.403-04:00
- vpc-a06de3c5
+ sg-a84495e1
+ CentOS 7 -x86_64- - with Updates HVM-1803_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1803_01 provided by Centos.org
+ vpc-c3d2f1a5
-
tcp
@@ -27648,11 +41891,30 @@ http_interactions:
-
200278856672
- sg-9ff8ace3
- launch-wizard-39
- launch-wizard-39 created 2017-02-16T11:40:34.781-05:00
- vpc-a06de3c5
+ sg-a86bf7de
+ stomsa
+ stomsa
+ vpc-aee2a6ca
+
-
+ tcp
+ 8000
+ 8000
+
+
+
-
+ 0.0.0.0/0
+ SimpleHTTPServer
+
+
+
+ -
+ ::/0
+ SimpleHTTPServer
+
+
+
+
-
tcp
22
@@ -27660,7 +41922,12 @@ http_interactions:
-
- 0.0.0.0/0
+ 213.175.37.10/32
+ SSH office
+
+ -
+ 93.153.77.219/32
+ SSH VPN
@@ -27680,23 +41947,30 @@ http_interactions:
+
+ -
+ Name
+ stomsa
+
+
-
200278856672
- sg-a493cddd
- default
- default VPC security group
- vpc-aee2a6ca
+ sg-ac6543de
+ launch-wizard-55
+ launch-wizard-55 created 2017-10-31T13:11:15.686-04:00
+ vpc-c3d2f1a5
-
- -1
-
+ tcp
+ 22
+ 22
+
+
-
- 200278856672
- sg-a493cddd
+ 0.0.0.0/0
-
-
+
@@ -27717,10 +41991,10 @@ http_interactions:
-
200278856672
- sg-a6122edb
- launch-wizard-18
- launch-wizard-18 created 2016-12-20T14:51:03.563-05:00
- vpc-a06de3c5
+ sg-b00affc6
+ launch-wizard-23
+ launch-wizard-23 created 2018-02-28T16:08:13.133+00:00
+ vpc-ff49ff91
-
tcp
@@ -27752,10 +42026,10 @@ http_interactions:
-
200278856672
- sg-b5d624d1
- launch-wizard-3
- launch-wizard-3 created 2014-12-16T16:24:52.047-05:00
- vpc-a06de3c5
+ sg-b267fef8
+ ladas_test_jul24_1
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -27764,7 +42038,7 @@ http_interactions:
-
- 173.3.23.48/32
+ 0.0.0.0/0
@@ -27787,15 +42061,28 @@ http_interactions:
-
200278856672
- sg-c00e19a5
- DemoSecGroup-Allowed
- 80 and 443
- vpc-a06de3c5
+ sg-b83144f0
+ launch-wizard-37
+ launch-wizard-37 created 2018-05-24T15:39:49.093+02:00
+ vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
+
+
+ -
+ -1
-
@@ -27805,10 +42092,19 @@ http_interactions:
+
+
+ -
+ 200278856672
+ sg-da58eaa6
+ quick-create-2-for-lb-2
+ quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ vpc-ff49ff91
+
-
tcp
- 443
- 443
+ 80
+ 80
-
@@ -27835,10 +42131,10 @@ http_interactions:
-
200278856672
- sg-cd64e2b4
- launch-wizard-14
- launch-wizard-14 created 2016-01-06T18:06:11.447-05:00
- vpc-a06de3c5
+ sg-dbed8291
+ ladas_test_jul25_4
+ ladas_test_changed
+ vpc-ff49ff91
-
tcp
@@ -27870,10 +42166,10 @@ http_interactions:
-
200278856672
- sg-cf2dd7be
- launch-wizard-43
- launch-wizard-43 created 2017-06-16T16:18:58.509-04:00
- vpc-a06de3c5
+ sg-dfe6c6a6
+ launch-wizard-13
+ launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
+ vpc-ff49ff91
-
tcp
@@ -27888,6 +42184,19 @@ http_interactions:
+ -
+ udp
+ 19132
+ 19132
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
@@ -27905,10 +42214,10 @@ http_interactions:
-
200278856672
- sg-d2fb5eb6
- launch-wizard-6
- launch-wizard-6 created 2015-01-29T14:59:03.773-05:00
- vpc-a06de3c5
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
+ This security group was generated by AWS Marketplace and is based on recommended settings for CentOS 7 (x86_64) - with Updates HVM version 1801_01 provided by Centos.org
+ vpc-ff49ff91
-
tcp
@@ -27940,15 +42249,15 @@ http_interactions:
-
200278856672
- sg-da58eaa6
- quick-create-2-for-lb-2
- quick-create-2 created on Friday, January 27, 2017 at 10:53:00 AM UTC+1
+ sg-ee6ec399
+ launch-wizard-17
+ launch-wizard-17 created 2018-02-01T11:27:33.447-05:00
vpc-ff49ff91
-
tcp
- 80
- 80
+ 22
+ 22
-
@@ -27975,21 +42284,20 @@ http_interactions:
-
200278856672
- sg-dadae6a7
- launch-wizard-22
- launch-wizard-22 created 2016-12-20T16:03:30.798-05:00
- vpc-a06de3c5
+ sg-f318d184
+ default
+ default VPC security group
+ vpc-36cad24e
-
- tcp
- 22
- 22
-
-
+ -1
+
-
- 0.0.0.0/0
+ 200278856672
+ sg-f318d184
-
+
+
@@ -28010,11 +42318,24 @@ http_interactions:
-
200278856672
- sg-dfe6c6a6
- launch-wizard-13
- launch-wizard-13 created 2016-01-28T11:02:45.992-05:00
- vpc-ff49ff91
+ sg-f84e7d8d
+ simaishi
+ simaishi
+ vpc-aee2a6ca
+
-
+ tcp
+ 80
+ 80
+
+
+
-
+ 0.0.0.0/0
+
+
+
+
+
-
tcp
22
@@ -28029,9 +42350,9 @@ http_interactions:
-
- udp
- 19132
- 19132
+ tcp
+ 443
+ 443
-
@@ -28058,10 +42379,10 @@ http_interactions:
-
200278856672
- sg-f0d92a94
- launch-wizard-1
- launch-wizard-1 created 2014-12-15T17:32:09.146-05:00
- vpc-a06de3c5
+ sg-ff845f89
+ launch-wizard-25
+ launch-wizard-25 created 2018-03-06T11:33:01.209-05:00
+ vpc-c3d2f1a5
-
tcp
@@ -28094,7 +42415,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:40 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:37 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -28107,14 +42428,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075240Z
+ - 20180906T091537Z
X-Amz-Content-Sha256:
- 236069f72bf74f0c7ddff0a34b0defa8a21d1d6a897e588764e1b2ff6319f94a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c2fbb44dfe3e4c0b30bd190075535eea82302185b95e42b95d0bfa8a3ff12ed2
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=398df267085ea9cd3b368e746c24c8014a8e38fcc0dfecd6d2181338e2a0824b
Content-Length:
- '47'
Accept:
@@ -28125,15 +42446,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - a8d147fb-a28f-11e7-a73d-e5b04f6ab79d
+ - 6acfa4e2-b1b5-11e8-84b8-e518f53d604a
Content-Type:
- text/xml
Content-Length:
- - '12763'
+ - '17947'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:35 GMT
+ - Thu, 06 Sep 2018 09:15:37 GMT
body:
encoding: UTF-8
string: |
@@ -28163,7 +42484,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefreshSpec-LoadBalancer
@@ -28175,6 +42495,7 @@ http_interactions:
+ EmsRefreshSpec-LoadBalancer
2
30
@@ -28183,8 +42504,8 @@ http_interactions:
TCP:22
2013-08-09T14:53:25.760Z
-
+
EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com
@@ -28195,9 +42516,6 @@ http_interactions:
i-8b5739f2
-
- i-fb694e66
-
@@ -28214,7 +42532,6 @@ http_interactions:
200278856672
EmsRefreshSpec-SecurityGroup-VPC
- EmSRefreshSpecVPCELB
@@ -28235,6 +42552,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB
2
30
@@ -28243,13 +42561,13 @@ http_interactions:
HTTP:80/index.html
2016-08-09T08:16:14.340Z
+
+ sg-80f755ef
+
subnet-16c70477
subnet-f849ff96
-
- sg-80f755ef
-
EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
@@ -28257,9 +42575,6 @@ http_interactions:
vpc-ff49ff91
internet-facing
-
- i-fb694e66
-
i-8b5739f2
@@ -28279,7 +42594,6 @@ http_interactions:
200278856672
quick-create-1
- EmSRefreshSpecVPCELB2
@@ -28291,6 +42605,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB2
2
30
@@ -28299,13 +42614,13 @@ http_interactions:
TCP:22
2016-08-10T14:17:09.810Z
+
+ sg-0d2cd677
+
subnet-16c70477
subnet-f849ff96
-
- sg-0d2cd677
-
EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
@@ -28327,7 +42642,6 @@ http_interactions:
200278856672
quick-create-2-for-lb-2
- lb-test3
@@ -28357,6 +42671,7 @@ http_interactions:
+ lb-test3
2
30
@@ -28365,14 +42680,14 @@ http_interactions:
HTTP:1600/index.html
2017-01-27T10:18:32.770Z
-
- subnet-f849ff96
-
sg-734efc0f
sg-0d2cd677
sg-da58eaa6
+
+ subnet-f849ff96
+
lb-test3-322096868.us-east-1.elb.amazonaws.com
@@ -28380,7 +42695,7 @@ http_interactions:
internet-facing
- i-025623c4c4e4f84a0
+ i-0aa433595b855eeeb
@@ -28398,7 +42713,6 @@ http_interactions:
amazon-elb
amazon-elb-sg
- EmsRefres-ElasticL-UPI0RRUFR3HI
@@ -28410,6 +42724,7 @@ http_interactions:
+ EmsRefres-ElasticL-UPI0RRUFR3HI
5
30
@@ -28418,8 +42733,8 @@ http_interactions:
HTTP:80/
2017-03-27T11:33:40.770Z
-
+
EmsRefres-ElasticL-UPI0RRUFR3HI-278556787.us-east-1.elb.amazonaws.com
@@ -28428,7 +42743,7 @@ http_interactions:
internet-facing
- i-0150ac66c83e0eae8
+ i-0828f09c91ab89a97
@@ -28445,7 +42760,6 @@ http_interactions:
200278856672
EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- EmsRefres-PublicEl-15YIQXDK2TNOF
@@ -28457,6 +42771,7 @@ http_interactions:
+ EmsRefres-PublicEl-15YIQXDK2TNOF
5
90
@@ -28465,22 +42780,163 @@ http_interactions:
HTTP:80/
2017-03-27T12:21:17.830Z
-
- subnet-de2363bb
-
sg-5946c626
+
+ subnet-de2363bb
+
EmsRefres-PublicEl-15YIQXDK2TNOF-748726286.us-east-1.elb.amazonaws.com
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-03769bc6ccaba947a
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-04T13:38:44.050Z
+
+
+ SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-038bc46a57b2ad428
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-OHBTSYAE8C89
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-06T08:18:57.340Z
+
+
+ SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+ Z35SXDOTRQ7X7K
+ internet-facing
+
+
+ i-00eda271fc8d71e7e
+
+
+
+
+
+
+
+
+ us-east-1c
+ us-east-1d
+
+ SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
+
+ amazon-elb
+ amazon-elb-sg
+
+
+
+
+ 80
+ HTTP
+ HTTP
+ 80
+
+
+
+
+ SC-200278-ElasticL-G69XH7HDIQ0J
+
+ 5
+ 30
+ 3
+ 5
+ HTTP:80/
+
+ 2018-09-06T08:19:20.060Z
+
+
+ SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
- a8d147fb-a28f-11e7-a73d-e5b04f6ab79d
+ 6acfa4e2-b1b5-11e8-84b8-e518f53d604a
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:41 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:38 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -28493,14 +42949,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075241Z
+ - 20180906T091538Z
X-Amz-Content-Sha256:
- 19ba5dc918b1e927d0c1a179e1bed2a393fa8987b6fbc66e756823d414115566
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7e8c9f08f9c4e7d638b5a665e95808dc475d13fee9882e7f3f4e50c74830a1bb
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4ad10873db8bef7f545126c19f21d403d0fc8221c9de71a60e1e6e024ebb782d
Content-Length:
- '51'
Accept:
@@ -28517,7 +42973,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:37 GMT
+ - Thu, 06 Sep 2018 09:15:37 GMT
Server:
- AmazonEC2
body:
@@ -28525,39 +42981,39 @@ http_interactions:
string: |-
- a872f190-8102-437c-b674-7f7b57e2362b
+ 5610548e-00dd-4624-bbe7-cbd42c78915d
-
- eni-24b363d0
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-4adc5ec2
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:83:d4:40:c2:66
- 10.0.1.230
+ 0e:13:5d:02:dc:6e
+ 10.0.1.179
true
-
- sg-24362241
- default
+ sg-2899b45d
+ launch-wizard-16
- eni-attach-9413e1b8
- i-035fa3affa815d81d
+ eni-attach-e6616b3e
+ i-02007c8f386e74470
200278856672
0
attached
- 2017-03-21T19:39:52.000Z
+ 2017-12-13T15:04:34.000Z
true
-
- 10.0.1.230
+ 10.0.1.179
true
@@ -28565,36 +43021,28 @@ http_interactions:
interface
-
- eni-4ad1b2b8
- subnet-ac904787
- vpc-a06de3c5
+ eni-83fc5323
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+ ladastest2
200278856672
+ AIDAI37PIOA5B6VMIJRUU
false
- in-use
- 12:2c:b2:f2:9b:0e
- 10.0.1.78
+ available
+ 12:b7:bb:c9:a9:a8
+ 10.0.0.249
true
-
- sg-9ff8ace3
- launch-wizard-39
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
-
- eni-attach-45f9a86f
- i-0999c6f9b18ead5fc
- 200278856672
- 0
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- 10.0.1.78
+ 10.0.0.249
true
@@ -28602,75 +43050,87 @@ http_interactions:
interface
-
- eni-6e7aa46e
- subnet-e88815d5
+ eni-b20dbfd5
+ subnet-56f55f20
vpc-aee2a6ca
- us-east-1a
+ us-east-1b
200278856672
false
in-use
- 06:47:3a:69:12:cc
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 0a:5c:f1:ca:d7:26
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-a493cddd
+ default
- eni-attach-4451b1a7
- i-0951b95d6db76519d
+ eni-attach-d57a046c
+ i-0b2631823a0fdfc76
200278856672
0
attached
- 2017-07-26T15:15:29.000Z
+ 2018-07-25T10:56:16.000Z
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+ true
+
-
- 172.30.0.105
- ip-172-30-0-105.ec2.internal
+ 172.30.1.91
+ ip-172-30-1-91.ec2.internal
true
+
+ 18.209.8.70
+ ec2-18-209-8-70.compute-1.amazonaws.com
+ amazon
+ true
+
interface
-
- eni-7f10908d
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-d9169551
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:a2:dd:19:8d:bc
- 10.0.1.155
+ 0e:d1:46:9a:11:38
+ 10.0.1.66
true
-
- sg-65d59519
- launch-wizard-37
+ sg-a5b994d0
+ launch-wizard-14
- eni-attach-2d92e207
- i-08c033357b433ea2c
+ eni-attach-0dbdb6d5
+ i-0510954911e45949b
200278856672
0
attached
- 2017-02-14T16:18:28.000Z
+ 2017-12-13T14:43:34.000Z
true
-
- 10.0.1.155
+ 10.0.1.66
true
@@ -28678,48 +43138,54 @@ http_interactions:
interface
-
- eni-b6f161a2
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-179d9880
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 02:18:bf:52:9a:3e
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 12:7e:c1:7a:94:48
+ 10.0.0.129
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-734efc0f
+ quick-create-2-lbtest3
+
+ -
+ sg-0d2cd677
+ quick-create-1
+
+ -
+ sg-da58eaa6
+ quick-create-2-for-lb-2
- eni-attach-29495eb0
+ eni-attach-03212c56c09ef849f
amazon-elb
1
attached
- 2017-03-28T13:37:48.000Z
+ 2018-06-02T21:08:55.000Z
false
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
+ 52.6.7.19
+
amazon-elb
true
-
- 10.0.0.152
- ip-10-0-0-152.ec2.internal
+ 10.0.0.129
true
- 54.89.19.132
- ec2-54-89-19-132.compute-1.amazonaws.com
+ 52.6.7.19
+
amazon-elb
true
@@ -28729,46 +43195,48 @@ http_interactions:
interface
-
- eni-5d3479f7
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB
+ eni-5c2a35df
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 0e:ad:8f:b5:e7:56
- 10.0.1.191
+ 02:1e:4f:13:23:60
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-00664517cacff8d75
+ eni-attach-02e23f87add8aad1b
amazon-elb
1
attached
- 2017-09-06T21:09:18.000Z
+ 2018-05-25T12:03:25.000Z
false
- 52.20.26.89
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.1.191
+ 10.0.0.206
+ ip-10-0-0-206.ec2.internal
true
- 52.20.26.89
-
+ 54.89.19.132
+ ec2-54-89-19-132.compute-1.amazonaws.com
amazon-elb
true
@@ -28778,36 +43246,36 @@ http_interactions:
interface
-
- eni-36b969c2
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
-
+ eni-b6d41667
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ Primary network interface
200278856672
false
in-use
- 12:b7:67:3c:30:b6
- 10.0.1.90
+ 0e:ee:66:32:b5:ba
+ 10.0.1.19
true
-
- sg-24362241
- default
+ sg-e2d90694
+ CentOS 7 -x86_64- - with Updates HVM-1801_01-AutogenByAWSMP-
- eni-attach-2217e50e
- i-0c1542ba946875280
+ eni-attach-3a325e3c
+ i-0a7aebaf459f1f9e7
200278856672
0
attached
- 2017-03-21T19:41:22.000Z
+ 2018-03-06T05:28:40.000Z
true
-
- 10.0.1.90
+ 10.0.1.19
true
@@ -28815,156 +43283,122 @@ http_interactions:
interface
-
- eni-3e17562a
+ eni-47ff1251
subnet-de2363bb
vpc-c3d2f1a5
us-east-1c
-
+ Primary network interface
200278856672
false
in-use
- 02:b6:c8:9b:9e:80
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 02:b4:4f:21:d8:f0
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- sg-9242c2ed
- EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
+ sg-8dff68ff
+ launch-wizard-53
- eni-attach-3a6592a2
- i-0150ac66c83e0eae8
+ eni-attach-5fcc62c4
+ i-0274ada368eb4da36
200278856672
0
attached
- 2017-05-02T19:39:36.000Z
+ 2017-10-20T03:07:58.000Z
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
-
- 10.0.0.159
- ip-10-0-0-159.ec2.internal
+ 10.0.0.91
+ ip-10-0-0-91.ec2.internal
true
-
- 34.200.241.140
- ec2-34-200-241-140.compute-1.amazonaws.com
- amazon
- true
-
interface
-
- eni-a66cca6f
- subnet-ac904787
- vpc-a06de3c5
+ eni-e704c271
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:63:9d:b7:94:40
- 10.0.1.239
+ 12:d5:74:0d:84:56
+ 10.0.8.133
true
-
- sg-86e19cf8
- launch-wizard-40
-
- -
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-88392ea7
- i-091fe7ccd76ddac3b
+ eni-attach-828d7a27
+ i-002ca40492fff0e67
200278856672
0
attached
- 2017-05-16T18:19:21.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
-
- 10.0.1.239
+ 10.0.8.133
true
-
- 52.5.18.129
-
- 200278856672
- eipalloc-1f46572e
- eipassoc-9132d3a5
- true
-
interface
-
- eni-5dcd5d49
- subnet-de2363bb
- vpc-c3d2f1a5
- us-east-1c
- ELB EmsRefres-PublicEl-15YIQXDK2TNOF
+ eni-3af276f7
+ subnet-f849ff96
+ vpc-ff49ff91
+ us-east-1e
+ ELB EmSRefreshSpecVPCELB2
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 02:0f:73:10:12:3e
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 12:3b:28:53:d5:b2
+ 10.0.0.219
true
-
- sg-5946c626
- EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
+ sg-0d2cd677
+ quick-create-1
- eni-attach-57495ece
+ eni-attach-037d7ab06aa17cf3a
amazon-elb
1
attached
- 2017-03-28T13:37:12.000Z
+ 2018-02-04T01:58:12.000Z
false
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 52.86.128.239
+
amazon-elb
true
-
- 10.0.0.240
- ip-10-0-0-240.ec2.internal
+ 10.0.0.219
true
- 52.54.155.79
- ec2-52-54-155-79.compute-1.amazonaws.com
+ 52.86.128.239
+
amazon-elb
true
@@ -28974,94 +43408,85 @@ http_interactions:
interface
-
- eni-ad25f7cc
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
+ eni-a50a3f25
+ subnet-2190b144
+ vpc-8cf117f5
+ us-east-1c
Primary network interface
200278856672
false
in-use
- 22:d8:dc:13:0c:ca
- 10.0.0.254
+ 02:02:e2:97:a8:ba
+ 10.2.0.152
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5c49922a
+ launch-wizard-26
- eni-attach-05fac66f
- i-8b5739f2
+ eni-attach-3be67cff
+ i-0125949f65c1e5528
200278856672
0
attached
- 2013-09-23T20:11:52.000Z
+ 2018-03-06T18:29:43.000Z
true
- 54.208.119.197
+ 52.3.221.140
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+ amazon
true
-
- 10.0.0.254
+ 10.2.0.152
true
- 54.208.119.197
+ 52.3.221.140
- 200278856672
- eipalloc-ce53d7a0
- eipassoc-cc6e58f1
+ amazon
true
- -
- 10.0.0.208
-
- false
-
interface
-
- eni-c4d2710f
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-d143760f
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:c2:3e:bd:ae:92
- 10.0.1.229
+ 0e:63:ec:cc:98:b0
+ 10.0.1.165
true
-
- sg-000ff571
- launch-wizard-46
+ sg-b00affc6
+ launch-wizard-23
- eni-attach-4735d966
- i-03d706b95aa8b12ce
+ eni-attach-87883f81
+ i-0a67c549558c9c392
200278856672
0
attached
- 2017-06-16T20:54:01.000Z
+ 2018-02-28T16:08:24.000Z
true
-
- 10.0.1.229
+ 10.0.1.165
true
@@ -29069,104 +43494,117 @@ http_interactions:
interface
-
- eni-2132bad2
- subnet-f849ff96
+ eni-1eec3adb
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ELB lb-test3
+ us-east-1d
+ test-network-port
200278856672
- 210368014644
- true
- in-use
- 12:65:97:2b:af:ce
- 10.0.0.51
+ AIDAI37PIOA5B6VMIJRUU
+ false
+ available
+ 0e:49:87:ef:7f:c2
+ 10.0.1.129
true
-
- sg-734efc0f
- quick-create-2-lbtest3
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
+
+
+
-
- sg-0d2cd677
- quick-create-1
+ 10.0.1.129
+ true
+
+
+ interface
+
+ -
+ eni-44432b95
+ subnet-bc418ce4
+ vpc-aee2a6ca
+ us-east-1d
+ Primary network interface
+ 200278856672
+ false
+ in-use
+ 0e:82:90:10:a1:2a
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
+ true
+
-
- sg-da58eaa6
- quick-create-2-for-lb-2
+ sg-a86bf7de
+ stomsa
- eni-attach-c593d9ee
- amazon-elb
- 1
+ eni-attach-2bb4992d
+ i-0d0cbf4c0a5e4f8fc
+ 200278856672
+ 0
attached
- 2017-01-28T12:33:16.000Z
- false
+ 2018-03-12T13:48:51.000Z
+ true
-
- 54.88.156.69
-
- amazon-elb
- true
-
-
- 10.0.0.51
+ 172.30.3.177
+ ip-172-30-3-177.ec2.internal
true
-
- 54.88.156.69
-
- amazon-elb
- true
-
interface
-
- eni-f2397458
- subnet-16c70477
- vpc-ff49ff91
- us-east-1d
- ELB EmSRefreshSpecVPCELB2
+ eni-ba95b13a
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+
200278856672
- 210368014644
- true
+ false
in-use
- 0e:41:ba:7f:58:a6
- 10.0.1.146
+ 02:b4:45:6a:2d:8e
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
-
- sg-0d2cd677
- quick-create-1
+ sg-9242c2ed
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerSecurityGroup-JSH59X986IGE
- eni-attach-05098d3c56e0d49a6
- amazon-elb
- 1
+ eni-attach-f41e8d30
+ i-0828f09c91ab89a97
+ 200278856672
+ 0
attached
- 2017-09-06T21:09:17.000Z
- false
+ 2018-03-01T21:31:41.000Z
+ true
- 52.207.128.155
-
- amazon-elb
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
-
- 10.0.1.146
+ 10.0.0.166
+ ip-10-0-0-166.ec2.internal
true
- 52.207.128.155
-
- amazon-elb
+ 54.236.58.214
+ ec2-54-236-58-214.compute-1.amazonaws.com
+ amazon
true
@@ -29175,36 +43613,38 @@ http_interactions:
interface
-
- eni-8db36379
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-8449cf3e
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 12:55:d4:e9:51:bc
- 10.0.1.167
+ 06:76:b2:64:e1:40
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
-
- sg-24362241
- default
+ sg-67541b15
+ smartstate
- eni-attach-8a10e2a6
- i-0347d4075310c21e6
+ eni-attach-22e6878f
+ i-0015ec0007f4d13a7
200278856672
0
attached
- 2017-03-21T19:39:50.000Z
+ 2018-03-15T13:27:36.000Z
true
-
- 10.0.1.167
+ 172.30.0.44
+ ip-172-30-0-44.ec2.internal
true
@@ -29212,17 +43652,16 @@ http_interactions:
interface
-
- eni-83fc5323
+ eni-17e6c4d8
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- ladastest2
+
200278856672
- AIDAI37PIOA5B6VMIJRUU
false
- available
- 12:b7:bb:c9:a9:a8
- 10.0.0.249
+ in-use
+ 12:c3:f4:bf:2f:66
+ 10.0.0.98
true
-
@@ -29230,110 +43669,119 @@ http_interactions:
EmsRefreshSpec-SecurityGroup-VPC
+
+ eni-attach-5225809d
+ i-0639022117944a668
+ 200278856672
+ 0
+ attached
+ 2018-03-15T13:28:47.000Z
+ true
+
+
+ 54.172.168.193
+
+ amazon
+ true
+
-
- 10.0.0.249
+ 10.0.0.98
true
+
+ 54.172.168.193
+
+ amazon
+ true
+
interface
-
- eni-8fefae9b
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
+ eni-dc211166
+ subnet-e88815d5
+ vpc-aee2a6ca
+ us-east-1a
200278856672
false
in-use
- 02:a3:b9:61:d3:ee
- 10.2.0.239
+ 06:4a:c8:95:a8:12
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- sg-76c10f08
- EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+ sg-67541b15
+ smartstate
- eni-attach-cbd22453
- i-0bca58e6e540ddc39
+ eni-attach-39fcca94
+ i-02cc7ad4129cefe1b
200278856672
0
attached
- 2017-05-03T10:47:06.000Z
+ 2018-04-05T18:29:09.000Z
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
-
- 10.2.0.239
+ 172.30.0.32
+ ip-172-30-0-32.ec2.internal
true
-
- 34.202.178.10
-
- 200278856672
- eipalloc-9a4472ab
- eipassoc-13766e23
- true
-
interface
-
- eni-70385dde
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB
+ eni-2e2639ad
+ subnet-de2363bb
+ vpc-c3d2f1a5
+ us-east-1c
+ ELB EmsRefres-PublicEl-15YIQXDK2TNOF
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:cc:9f:fa:40:6a
- 10.0.0.245
+ 02:4a:7f:ba:fe:d6
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
+ sg-5946c626
+ EmsRefreshSpecVpcStackWithAutoscalingGroup-PublicLoadBalancerSecurityGroup-X9X3VQU3CVS
- eni-attach-0c6f467f93b126af7
+ eni-attach-0d27a2d0bd0ecc36e
amazon-elb
1
attached
- 2017-08-01T07:18:57.000Z
+ 2018-05-25T12:03:48.000Z
false
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
-
- 10.0.0.245
+ 10.0.0.130
+ ip-10-0-0-130.ec2.internal
true
- 52.44.144.54
-
+ 52.54.155.79
+ ec2-52-54-155-79.compute-1.amazonaws.com
amazon-elb
true
@@ -29343,56 +43791,17 @@ http_interactions:
interface
-
- eni-7b9a4078
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
- 200278856672
- false
- in-use
- 06:c3:e5:03:12:7a
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-aa928893
- i-0b1ec6330e0180f75
- 200278856672
- 0
- attached
- 2017-09-23T18:24:21.000Z
- true
-
-
-
- -
- 172.30.0.103
- ip-172-30-0-103.ec2.internal
- true
-
-
-
- interface
-
- -
- eni-1eec3adb
- subnet-16c70477
+ eni-bf97324c
+ subnet-f849ff96
vpc-ff49ff91
- us-east-1d
- test-network-port
+ us-east-1e
+ ladas-tst1
200278856672
AIDAI37PIOA5B6VMIJRUU
false
available
- 0e:49:87:ef:7f:c2
- 10.0.1.129
+ 12:fa:36:7f:7f:c2
+ 10.0.0.87
true
-
@@ -29403,7 +43812,7 @@ http_interactions:
-
- 10.0.1.129
+ 10.0.0.87
true
@@ -29411,34 +43820,34 @@ http_interactions:
interface
-
- eni-239477d1
- subnet-f849ff96
+ eni-85c03154
+ subnet-16c70477
vpc-ff49ff91
- us-east-1e
- ELB EmSRefreshSpecVPCELB2
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:d8:ca:93:45:92
- 10.0.0.211
+ 0e:fb:8d:c6:e6:10
+ 10.0.1.253
true
-
- sg-0d2cd677
- quick-create-1
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-85db02af
+ eni-attach-04ccde3ecf22b7a4a
amazon-elb
1
attached
- 2017-02-08T01:57:57.000Z
+ 2018-03-05T02:06:29.000Z
false
- 52.206.189.251
+ 52.203.95.138
amazon-elb
true
@@ -29446,10 +43855,10 @@ http_interactions:
-
- 10.0.0.211
+ 10.0.1.253
true
- 52.206.189.251
+ 52.203.95.138
amazon-elb
true
@@ -29460,46 +43869,7 @@ http_interactions:
interface
-
- eni-5836d558
- subnet-e88815d5
- vpc-aee2a6ca
- us-east-1a
-
- 200278856672
- false
- in-use
- 06:3b:f0:7f:9b:c4
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
- sg-97cd32e6
- MIQ_SSA
-
-
-
- eni-attach-cd97a82d
- i-06c2e2feb85b5c8b2
- 200278856672
- 0
- attached
- 2017-07-17T19:21:45.000Z
- true
-
-
-
- -
- 172.30.0.113
- ip-172-30-0-113.ec2.internal
- true
-
-
-
- interface
-
- -
- eni-8f6f6d9b
+ eni-8fefae9b
subnet-2190b144
vpc-8cf117f5
us-east-1c
@@ -29507,139 +43877,139 @@ http_interactions:
200278856672
false
in-use
- 02:10:c3:95:2d:ac
- 10.2.0.15
+ 02:a3:b9:61:d3:ee
+ 10.2.0.239
true
-
- sg-4cc30d32
- default
+ sg-76c10f08
+ EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
- eni-attach-63ae77fb
- i-013f45a83fd938928
+ eni-attach-cbd22453
+ i-0bca58e6e540ddc39
200278856672
0
attached
- 2017-06-07T15:59:47.000Z
+ 2017-05-03T10:47:06.000Z
true
+
+ 34.202.178.10
+
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
+ true
+
-
- 10.2.0.15
+ 10.2.0.239
true
+
+ 34.202.178.10
+
+ 200278856672
+ eipalloc-9a4472ab
+ eipassoc-13766e23
+ true
+
interface
-
- eni-ac3c310d
- subnet-ac904787
- vpc-a06de3c5
+ eni-ad25f7cc
+ subnet-f849ff96
+ vpc-ff49ff91
us-east-1e
Primary network interface
200278856672
false
in-use
- 12:20:f8:1f:cd:66
- 10.0.1.85
+ 22:d8:dc:13:0c:ca
+ 10.0.0.254
true
-
- sg-38511448
- launch-wizard-47
+ sg-80f755ef
+ EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-075e6227
- i-0c1eee2b86c7aa4a1
+ eni-attach-05fac66f
+ i-8b5739f2
200278856672
0
attached
- 2017-08-29T19:14:36.000Z
+ 2013-09-23T20:11:52.000Z
true
+
+ 54.208.119.197
+
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
+ true
+
-
- 10.0.1.85
+ 10.0.0.254
true
+
+ 54.208.119.197
+
+ 200278856672
+ eipalloc-ce53d7a0
+ eipassoc-cc6e58f1
+ true
+
-
-
- interface
-
- -
- eni-3f67fd15
- subnet-1852bb33
- vpc-a06de3c5
- us-east-1e
- Primary network interface
- 200278856672
- false
- in-use
- 12:ab:25:25:79:4c
- 10.0.0.129
- true
-
-
-
- sg-24362241
- default
-
-
-
- eni-attach-62fceb4d
- i-091fe7ccd76ddac3b
- 200278856672
- 1
- attached
- 2017-05-16T18:56:22.000Z
- false
-
-
-
-
- 10.0.0.129
- true
+ 10.0.0.208
+
+ false
interface
-
- eni-24eb88d6
- subnet-ac904787
- vpc-a06de3c5
- us-east-1e
+ eni-2665f5bf
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
Primary network interface
200278856672
false
in-use
- 12:25:f7:aa:41:7c
- 10.0.1.86
+ 0e:4e:cb:3b:0c:14
+ 10.0.1.192
true
-
- sg-82c99dfe
- launch-wizard-38
+ sg-041d424d
+ launch-wizard-36
- eni-attach-56d3827c
- i-0a922b9826b3dfd0d
+ eni-attach-7e503066
+ i-05d2313e6b9a42b16
200278856672
0
attached
- 2017-02-16T16:28:15.000Z
+ 2018-04-26T10:02:38.000Z
true
-
- 10.0.1.86
+ 10.0.1.192
true
@@ -29647,16 +44017,16 @@ http_interactions:
interface
-
- eni-b9cc7f19
+ eni-2b986f38
subnet-f849ff96
vpc-ff49ff91
us-east-1e
-
+ Primary network interface
200278856672
false
in-use
- 12:74:3c:f9:63:12
- 10.0.0.236
+ 12:3e:ae:70:92:0d
+ 10.0.0.122
true
-
@@ -29665,33 +44035,29 @@ http_interactions:
- eni-attach-0b3482fe
- i-0b72e0b70e7fae3c9
+ eni-attach-455ec9ed
+ i-c72af2f6
200278856672
0
attached
- 2017-09-07T12:23:45.000Z
+ 2016-08-30T07:17:58.000Z
true
- 52.70.78.137
+ 54.208.71.4
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
+ amazon
true
-
- 10.0.0.236
+ 10.0.0.122
true
- 52.70.78.137
+ 54.208.71.4
- 200278856672
- eipalloc-3d8a720f
- eipassoc-54289160
+ amazon
true
@@ -29700,36 +44066,36 @@ http_interactions:
interface
-
- eni-45fef051
- subnet-2190b144
- vpc-8cf117f5
- us-east-1c
-
+ eni-47cd6fd0
+ subnet-5f5a9670
+ vpc-ff49ff91
+ us-east-1e
+ Primary network interface
200278856672
false
in-use
- 02:06:e0:f6:db:2c
- 10.2.0.191
+ 12:28:58:d9:c8:ba
+ 10.0.8.108
true
-
- sg-4cc30d32
- default
+ sg-08314440
+ launch-wizard-38
- eni-attach-877ba01f
- i-0d794150f7fd264c4
+ eni-attach-b64f3e14
+ i-066465f361331dfa6
200278856672
0
attached
- 2017-06-09T15:00:46.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.2.0.191
+ 10.0.8.108
true
@@ -29737,132 +44103,156 @@ http_interactions:
interface
-
- eni-6933e6c9
+ eni-188b9e8c
subnet-f849ff96
vpc-ff49ff91
us-east-1e
- test
+ ELB EmSRefreshSpecVPCELB
200278856672
- false
+ amazon-elb
+ true
in-use
- 12:88:9a:7b:97:4a
- 10.0.0.4
+ 12:20:9c:e5:0e:9a
+ 10.0.0.119
true
-
-
- sg-1e2cf271
- default
-
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- -
- sg-7c69ed05
- launch-wizard-12
-
- eni-attach-de56932b
- i-099e794cfa830e9be
- 200278856672
- 0
+ eni-attach-0893ce6442dcc61e5
+ amazon-elb
+ 1
attached
- 2017-09-04T13:26:00.000Z
- true
+ 2018-05-19T14:05:36.000Z
+ false
- 54.208.121.144
+ 52.86.136.121
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
-
- 10.0.0.4
+ 10.0.0.119
true
- 54.208.121.144
+ 52.86.136.121
- 200278856672
- eipalloc-8d53d7e3
- eipassoc-d87fd3ec
+ amazon-elb
true
+
+
+ interface
+
+ -
+ eni-6751aeb6
+ subnet-16c70477
+ vpc-ff49ff91
+ us-east-1d
+ ELB EmSRefreshSpecVPCELB2
+ 200278856672
+ amazon-elb
+ true
+ in-use
+ 0e:c9:ea:e2:9b:42
+ 10.0.1.195
+ true
+
-
- 10.0.0.199
-
- false
+ sg-0d2cd677
+ quick-create-1
+
+
+
+ eni-attach-04dda1050e8b01bc7
+ amazon-elb
+ 1
+ attached
+ 2018-03-05T13:00:40.000Z
+ false
+
+
+ 52.44.158.113
+
+ amazon-elb
+ true
+
+
+
+ -
+ 10.0.1.195
+ true
+
+ 52.44.158.113
+
+ amazon-elb
+ true
+
interface
-
- eni-a3902b84
- subnet-f849ff96
+ eni-88c5a245
+ subnet-5f5a9670
vpc-ff49ff91
us-east-1e
- Primary network interface
+
200278856672
false
in-use
- 12:80:72:db:8c:81
- 10.0.0.109
+ 12:1a:c3:b4:f9:00
+ 10.0.8.25
true
+
-
+ sg-1e2cf271
+ default
+
-
sg-80f755ef
EmsRefreshSpec-SecurityGroup-VPC
- eni-attach-12a4c3e2
- i-fb694e66
+ eni-attach-d82c7915
+ i-004f3bd30726946d1
200278856672
0
attached
- 2016-05-10T20:56:37.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- 54.163.162.32
-
- amazon
- true
-
-
- 10.0.0.109
+ 10.0.8.25
true
-
- 54.163.162.32
-
- amazon
- true
-
interface
-
- eni-fd35bd0e
+ eni-e0bb2c77
subnet-f849ff96
vpc-ff49ff91
us-east-1e
ELB lb-test3
200278856672
- 210368014644
+ amazon-elb
true
in-use
- 12:6b:f1:dd:d8:38
- 10.0.0.63
+ 12:85:fe:b2:a6:c2
+ 10.0.0.222
true
-
@@ -29879,15 +44269,15 @@ http_interactions:
- eni-attach-6793d94c
+ eni-attach-08dff347f2450c37e
amazon-elb
1
attached
- 2017-01-28T12:33:04.000Z
+ 2018-05-27T06:39:12.000Z
false
- 52.206.247.243
+ 52.207.60.40
amazon-elb
true
@@ -29895,10 +44285,10 @@ http_interactions:
-
- 10.0.0.63
+ 10.0.0.222
true
- 52.206.247.243
+ 52.207.60.40
amazon-elb
true
@@ -29909,36 +44299,36 @@ http_interactions:
interface
-
- eni-46770f8f
- subnet-ac904787
- vpc-a06de3c5
+ eni-58cd6fcf
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
-
+ Primary network interface
200278856672
false
in-use
- 12:1f:65:a9:9d:32
- 10.0.1.87
+ 12:34:2d:df:09:f4
+ 10.0.8.189
true
-
- sg-c00e19a5
- DemoSecGroup-Allowed
+ sg-08314440
+ launch-wizard-38
- eni-attach-ff35f0d1
- i-0bad1e8ff60a6f29a
+ eni-attach-494c3deb
+ i-0c37a7d012922752e
200278856672
0
attached
- 2017-05-22T20:35:56.000Z
+ 2018-05-24T13:44:27.000Z
true
-
- 10.0.1.87
+ 10.0.8.189
true
@@ -29946,36 +44336,36 @@ http_interactions:
interface
-
- eni-e98a0f1e
- subnet-ac904787
- vpc-a06de3c5
+ eni-e404c272
+ subnet-5f5a9670
+ vpc-ff49ff91
us-east-1e
200278856672
false
in-use
- 12:5b:81:14:fb:a4
- 10.0.1.70
+ 12:fc:6e:98:ba:8a
+ 10.0.8.55
true
-
- sg-24362241
- default
+ sg-5e9cb316
+ ladas_ansible_test_2_sc_name
- eni-attach-59c6f675
- i-0659dcbc66cb830e5
+ eni-attach-838d7a26
+ i-0622ab75f5f2ba752
200278856672
0
attached
- 2017-04-12T18:17:01.000Z
+ 2018-06-06T18:52:17.000Z
true
-
- 10.0.1.70
+ 10.0.8.55
true
@@ -30003,11 +44393,11 @@ http_interactions:
- eni-attach-958ef9e4
+ eni-attach-41b0deed
920715386331
1
attached
- 2016-01-26T15:26:07.000Z
+ 2018-05-20T00:41:43.000Z
false
@@ -30034,7 +44424,7 @@ http_interactions:
interface
-
- eni-29e88329
+ eni-8fbc5335
subnet-e88815d5
vpc-aee2a6ca
us-east-1a
@@ -30042,169 +44432,30 @@ http_interactions:
200278856672
false
in-use
- 06:11:b6:44:d5:42
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
+ 06:e1:62:19:2a:08
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
-
- sg-97cd32e6
- MIQ_SSA
+ sg-67541b15
+ smartstate
- eni-attach-f902c21c
- i-02975d4eb8e53bafd
+ eni-attach-fbede525
+ i-0fb9010fdcfe4d050
200278856672
0
attached
- 2017-08-10T19:10:05.000Z
+ 2018-02-26T18:31:27.000Z
true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
-
- 172.30.0.205
- ip-172-30-0-205.ec2.internal
- true
-
- 34.229.68.74
- ec2-34-229-68-74.compute-1.amazonaws.com
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-fe24b408
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
-
- 200278856672
- false
- in-use
- 12:8b:0e:92:b8:44
- 10.0.0.36
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-0e5ec721
- i-0fca61ededa522f1a
- 200278856672
- 0
- attached
- 2017-05-02T19:39:49.000Z
- true
-
-
- 54.145.134.133
-
- amazon
- true
-
-
-
- -
- 10.0.0.36
- true
-
- 54.145.134.133
-
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-2b986f38
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- Primary network interface
- 200278856672
- false
- in-use
- 12:3e:ae:70:92:0d
- 10.0.0.122
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
- eni-attach-455ec9ed
- i-c72af2f6
- 200278856672
- 0
- attached
- 2016-08-30T07:17:58.000Z
- true
-
-
- 54.208.71.4
-
- amazon
- true
-
-
-
- -
- 10.0.0.122
- true
-
- 54.208.71.4
-
- amazon
- true
-
-
-
-
- interface
-
- -
- eni-bf97324c
- subnet-f849ff96
- vpc-ff49ff91
- us-east-1e
- ladas-tst1
- 200278856672
- AIDAI37PIOA5B6VMIJRUU
- false
- available
- 12:fa:36:7f:7f:c2
- 10.0.0.87
- true
-
-
-
- sg-80f755ef
- EmsRefreshSpec-SecurityGroup-VPC
-
-
-
-
- -
- 10.0.0.87
+ 172.30.0.213
+ ip-172-30-0-213.ec2.internal
true
@@ -30214,7 +44465,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:44 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:39 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -30227,14 +44478,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075245Z
+ - 20180906T091539Z
X-Amz-Content-Sha256:
- 1732d4b128d27cd99c04206dcfdf973ded4df03fd0ba4691763d13febf64384d
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1d1cb3f02a65f38a4305b993f2758b5c0450d1669699f1af5f4752a939804825
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f0c6bf4720a5a57b99af1ed1d5d18ddf0f4ce50d0f400acc109e0f02f52531bb
Content-Length:
- '45'
Accept:
@@ -30251,7 +44502,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:40 GMT
+ - Thu, 06 Sep 2018 09:15:39 GMT
Server:
- AmazonEC2
body:
@@ -30259,8 +44510,28 @@ http_interactions:
string: |-
- de472176-2e35-49ec-8bbb-d1d7fd4df982
+ dbdafa7c-0a4c-4cfd-8ca8-2c2768eb6bbf
+ -
+ rtb-865664fb
+ vpc-ff49ff91
+
+
-
+ 10.0.0.0/16
+ local
+ active
+ CreateRouteTable
+
+
+
+
+
+ -
+ Name
+ bronagh-test-routetable
+
+
+
-
rtb-d37690ab
vpc-8cf117f5
@@ -30340,8 +44611,8 @@ http_interactions:
-
- rtb-27b23842
- vpc-a06de3c5
+ rtb-04c7f579
+ vpc-36cad24e
-
10.0.0.0/16
@@ -30349,17 +44620,11 @@ http_interactions:
active
CreateRouteTable
- -
- 0.0.0.0/0
- igw-1e943f7b
- active
- CreateRoute
-
-
- rtbassoc-be6501db
- rtb-27b23842
+ rtbassoc-355ed949
+ rtb-04c7f579
true
@@ -30438,6 +44703,12 @@ http_interactions:
rtb-d86c6abc
true
+ -
+ rtbassoc-ca4056b5
+ rtb-d86c6abc
+ subnet-e88815d5
+ false
+
@@ -30460,6 +44731,12 @@ http_interactions:
+ -
+ rtbassoc-862f74f9
+ rtb-f749ff99
+ subnet-5f5a9670
+ false
+
-
rtbassoc-cef0c9b4
rtb-f749ff99
@@ -30520,7 +44797,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:46 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:40 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -30533,14 +44810,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075246Z
+ - 20180906T091540Z
X-Amz-Content-Sha256:
- 64c2b3b3e9d5b907d967a34cae3881d465039ab97edd1648478bb0195096a489
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5b967cf53fb40405209f7404c714f7fe9a1550112a43273576c850dec8fe822f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f2bb610d04a4d10aaa39566c390a8e98c49dba048fd0ae7985096218f2bce10f
Content-Length:
- '43'
Accept:
@@ -30557,7 +44834,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:40 GMT
+ - Thu, 06 Sep 2018 09:15:40 GMT
Server:
- AmazonEC2
body:
@@ -30565,7 +44842,7 @@ http_interactions:
string: |-
- 1f8e2914-8624-486e-8564-6a860f36ab3f
+ 06ba591a-e624-4bf8-8c20-468f1c4bacf0
-
23.23.198.134
@@ -30577,11 +44854,6 @@ http_interactions:
standard
- -
- 54.221.193.142
- standard
-
-
-
54.221.202.53
standard
@@ -30593,14 +44865,9 @@ http_interactions:
-
- 52.5.18.129
- eipalloc-1f46572e
- vpc
- i-091fe7ccd76ddac3b
- eipassoc-9132d3a5
- eni-a66cca6f
- 200278856672
- 10.0.1.239
+ 54.235.113.32
+ standard
+
-
34.202.178.10
@@ -30613,14 +44880,14 @@ http_interactions:
10.2.0.239
-
- 54.208.121.144
- eipalloc-8d53d7e3
+ 34.228.91.176
+ eipalloc-135bd126
+ vpc
+
+ -
+ 52.70.78.137
+ eipalloc-3d8a720f
vpc
- i-099e794cfa830e9be
- eipassoc-d87fd3ec
- eni-6933e6c9
- 200278856672
- 10.0.0.4
-
54.208.119.197
@@ -30633,19 +44900,14 @@ http_interactions:
10.0.0.254
-
- 52.70.78.137
- eipalloc-3d8a720f
+ 54.208.121.144
+ eipalloc-8d53d7e3
vpc
- i-0b72e0b70e7fae3c9
- eipassoc-54289160
- eni-b9cc7f19
- 200278856672
- 10.0.0.236
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:47 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:41 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -30658,14 +44920,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075247Z
+ - 20180906T091541Z
X-Amz-Content-Sha256:
- 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d7f36ea461002f7770b9aa0254176c43357f7b53b9217342190cdfd6c063da28
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=82da1d3ed2da6c6b47ec7701bf3b427e43659492966c50c741814bea5bc79a7b
Content-Length:
- '40'
Accept:
@@ -30676,21 +44938,217 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ad4b3758-a28f-11e7-bde0-59bd17526325
+ - 6dc1bb72-b1b5-11e8-932e-d3251818167d
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '19857'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:42 GMT
+ - Thu, 06 Sep 2018 09:15:42 GMT
body:
encoding: UTF-8
string: |
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:19:15.403Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+ SC-200278856672-pp-gato4drzgerpy
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:18:53.202Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+ SC-200278856672-pp-u2tepcnttldko
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
@@ -30722,6 +45180,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -30778,6 +45239,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -30816,6 +45280,9 @@ http_interactions:
true
+
+ NOT_CHECKED
+
KeyName
@@ -30859,6 +45326,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -30877,11 +45347,11 @@ http_interactions:
- ad4b3758-a28f-11e7-bde0-59bd17526325
+ 6dc1bb72-b1b5-11e8-932e-d3251818167d
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:49 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:43 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -30894,14 +45364,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075249Z
+ - 20180906T091543Z
X-Amz-Content-Sha256:
- 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=56e7935a610b8a3ad9271b19e68ef000990171ec9f059c91edf545dac3860ce3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ff53d77d585b1cc181dc4a621809f5cf7aa1c97aca40df734d24ea5dcb5fc69a
Content-Length:
- '40'
Accept:
@@ -30912,21 +45382,217 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ae0b52a3-a28f-11e7-af30-3bd6529823da
+ - 6e763e55-b1b5-11e8-ad44-cb2554926b13
Content-Type:
- text/xml
Content-Length:
- - '9420'
+ - '19857'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:43 GMT
+ - Thu, 06 Sep 2018 09:15:43 GMT
body:
encoding: UTF-8
string: |
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-G69XH7HDIQ0J-169282342.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:19:15.403Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-gato4drzgerpy/8addcb50-b1ad-11e8-a5af-500c28709a35
+ SC-200278856672-pp-gato4drzgerpy
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-OHBTSYAE8C89-342178717.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-06T08:18:53.202Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-u2tepcnttldko/7db5dfd0-b1ad-11e8-b3ce-500c524294d2
+ SC-200278856672-pp-u2tepcnttldko
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-h7p6ruq5qgrga
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-4qwgmfklkgosk
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+
+ URL of the website
+ URL
+ http://SC-200278-ElasticL-FDREQLBTVJ1Z-177825134.us-east-1.elb.amazonaws.com
+
+
+
+ CAPABILITY_IAM
+ CAPABILITY_NAMED_IAM
+
+ 2018-09-04T13:38:40.060Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/SC-200278856672-pp-5pyltbgyzheqm/d51dd9b0-b047-11e8-a5af-500c28709a35
+ SC-200278856672-pp-5pyltbgyzheqm
+ AWS CloudFormation Sample Template ELBWithLockedDownAutoScaledInstances: Create a load balanced, Auto Scaled sample website where the instances are locked down to only accept traffic from the load balancer. This example creates an Auto Scaling group behind a load balancer with a simple health check. The web site is available on port 80, however, the instances can be configured to listen on any port (8888 by default). **WARNING** This template creates one or more Amazon EC2 instances and an Elastic Load Balancer. You will be billed for the AWS resources used if you create a stack from this template.
+ CREATE_COMPLETE
+ false
+
+
+ arn:aws:catalog:us-east-1:200278856672:product/prod-cei2spnzu24lq
+ aws:servicecatalog:productArn
+
+
+ arn:aws:iam::200278856672:user/VCR
+ aws:servicecatalog:provisioningPrincipalArn
+
+
+ arn:aws:catalog:us-east-1:200278856672:portfolio/port-dg3wqzbxza75m
+ aws:servicecatalog:portfolioArn
+
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ EmsRefreshSpec-KeyPair
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ Environment
+ test
+
+
+ InstanceType
+ t1.micro
+
+
+
+
+
+ CAPABILITY_NAMED_IAM
+
+ 2018-03-19T19:02:37.402Z
+
+ arn:aws:cloudformation:us-east-1:200278856672:stack/billy1/16ecd500-2ba8-11e8-b39a-503aca4a5861
+ billy1
+ 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.
+ ROLLBACK_COMPLETE
+ 2018-03-19T19:02:39.205Z
+ false
+
+
+
+ NOT_CHECKED
+
+
+
+ KeyName
+ billy
+
+
+ SSHLocation
+ 0.0.0.0/0
+
+
+ DBRootPassword
+ ****
+
+
+ InstanceType
+ t2.nano
+
+
+
@@ -30958,6 +45624,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -31014,6 +45683,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -31052,6 +45724,9 @@ http_interactions:
true
+
+ NOT_CHECKED
+
KeyName
@@ -31095,6 +45770,9 @@ http_interactions:
+
+ NOT_CHECKED
+
KeyName
@@ -31113,11 +45791,340 @@ http_interactions:
- ae0b52a3-a28f-11e7-af30-3bd6529823da
+ 6e763e55-b1b5-11e8-ad44-cb2554926b13
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:51 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:44 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-gato4drzgerpy&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091544Z
+ X-Amz-Content-Sha256:
+ - a7ac4ff8a8bfc80b6a75d4fa2fd39693d4438b5075825897c639aa9fa2d03d7c
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bef3d4c913177e7f0e31d1e0d34cc019b369b13a79550f887e678cf2c7a8dddb
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 6f448b6d-b1b5-11e8-83f9-d503a4f237c7
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2487'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:44 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-06T08:19:20.925Z
+ SC-200278-ElasticL-G69XH7HDIQ0J
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-06T08:19:28.959Z
+ SC-200278856672-pp-gato4drzgerpy-InstanceSecurityGroup-RU7FPJXMJOSI
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-06T08:19:32.678Z
+ SC-200278856672-pp-gato4drzgerpy-LaunchConfig-XG9MSNGN8QLR
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-06T08:22:44.813Z
+ SC-200278856672-pp-gato4drzgerpy-WebServerGroup-UPQDGUBBE1FL
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 6f448b6d-b1b5-11e8-83f9-d503a4f237c7
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:45 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-u2tepcnttldko&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091545Z
+ X-Amz-Content-Sha256:
+ - 4f43bc59765197c421f867034ad10dae7c36341e83e445d0bbf7112c55c493cf
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=cbed090eb30c3d5d29f8c592cf0bb91914b157d67c8ac779563ba93aa12eaff4
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 6fd24cc2-b1b5-11e8-a4e9-d3ed7e951e9d
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:45 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-06T08:18:58.415Z
+ SC-200278-ElasticL-OHBTSYAE8C89
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-06T08:19:06.128Z
+ SC-200278856672-pp-u2tepcnttldko-InstanceSecurityGroup-BHJWHFDTARCC
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-06T08:19:09.211Z
+ SC-200278856672-pp-u2tepcnttldko-LaunchConfig-1SSE0GMS00N3T
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-06T08:21:59.191Z
+ SC-200278856672-pp-u2tepcnttldko-WebServerGroup-1JRWA7TZE4G12
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 6fd24cc2-b1b5-11e8-a4e9-d3ed7e951e9d
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:46 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=SC-200278856672-pp-5pyltbgyzheqm&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091546Z
+ X-Amz-Content-Sha256:
+ - 175dd3563745e0edd920aa5e1186c1ecc417142c8754ad55b6fefb0d78da9a7f
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=30f9e6ece7a1533dab7d4f2826226a1c7407196e92eb00d9535c002f6f48028c
+ Content-Length:
+ - '87'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 70793aa5-b1b5-11e8-b6aa-37fc68fe31ca
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '2489'
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:46 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+ 2018-09-04T13:38:44.922Z
+ SC-200278-ElasticL-FDREQLBTVJ1Z
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ ElasticLoadBalancer
+ AWS::ElasticLoadBalancing::LoadBalancer
+
+
+ 2018-09-04T13:38:53.347Z
+ SC-200278856672-pp-5pyltbgyzheqm-InstanceSecurityGroup-QA7LCB196EU1
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ InstanceSecurityGroup
+ AWS::EC2::SecurityGroup
+
+
+ 2018-09-04T13:38:56.729Z
+ SC-200278856672-pp-5pyltbgyzheqm-LaunchConfig-1KRBYT65PYDJY
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ LaunchConfig
+ AWS::AutoScaling::LaunchConfiguration
+
+
+ 2018-09-04T13:41:25.707Z
+ SC-200278856672-pp-5pyltbgyzheqm-WebServerGroup-176RRMVWWIZ1V
+ CREATE_COMPLETE
+
+ NOT_CHECKED
+
+ WebServerGroup
+ AWS::AutoScaling::AutoScalingGroup
+
+
+
+
+ 70793aa5-b1b5-11e8-b6aa-37fc68fe31ca
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:47 GMT
+- request:
+ method: post
+ uri: https://cloudformation.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=ListStackResources&StackName=billy1&Version=2010-05-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091547Z
+ X-Amz-Content-Sha256:
+ - 0ac8d282d9bebb8cc9d81b3ad8cd95d1ea7a5deb39aeae4502f26b44e5053da4
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7fe0bbb5ef3dc588fed3e33445f3684cfe731a3d9b0249836505f90eb087ebb9
+ Content-Length:
+ - '61'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 70f1ecaf-b1b5-11e8-932e-d3251818167d
+ Content-Type:
+ - text/xml
+ Content-Length:
+ - '315'
+ Date:
+ - Thu, 06 Sep 2018 09:15:47 GMT
+ body:
+ encoding: UTF-8
+ string: |
+
+
+
+
+
+ 70f1ecaf-b1b5-11e8-932e-d3251818167d
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:48 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -31130,14 +46137,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075251Z
+ - 20180906T091548Z
X-Amz-Content-Sha256:
- e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6cb83747dfea3f993091c2804e0a8d4a18153e8951e8afa2d093e76cf3671e63
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f0a1d88db9ae1433d7b0a322b9d14c3368269b1532799130c301f2ed2c399d6d
Content-Length:
- '106'
Accept:
@@ -31148,13 +46155,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - af7bd265-a28f-11e7-8e74-b3c15a8d4dac
+ - 71863dab-b1b5-11e8-918d-ade4922da311
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '1297'
Date:
- - Tue, 26 Sep 2017 07:52:46 GMT
+ - Thu, 06 Sep 2018 09:15:48 GMT
body:
encoding: UTF-8
string: |
@@ -31165,6 +46172,9 @@ http_interactions:
2017-05-03T10:49:32.560Z
34.202.178.10
CREATE_COMPLETE
+
+ NOT_CHECKED
+
IPAddress
AWS::EC2::EIP
@@ -31172,17 +46182,20 @@ http_interactions:
2017-05-03T10:48:56.988Z
i-0bca58e6e540ddc39
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::EC2::Instance
- af7bd265-a28f-11e7-8e74-b3c15a8d4dac
+ 71863dab-b1b5-11e8-918d-ade4922da311
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:52 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:49 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -31195,14 +46208,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075252Z
+ - 20180906T091549Z
X-Amz-Content-Sha256:
- 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=49f356c5a3aac2db00f93d2c6ef803c74d46d89a5a99192ec26cc33a7ab535c9
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3278f680e83c07a4b251328350283f3d9daef680ccd3bf8a3239773395920f81
Content-Length:
- '74'
Accept:
@@ -31213,15 +46226,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - affb3ba8-a28f-11e7-9301-cbf47da2bfa6
+ - 7206919f-b1b5-11e8-b6aa-37fc68fe31ca
Content-Type:
- text/xml
Content-Length:
- - '6667'
+ - '8877'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:46 GMT
+ - Thu, 06 Sep 2018 09:15:48 GMT
body:
encoding: UTF-8
string: |
@@ -31232,6 +46245,9 @@ http_interactions:
2017-05-03T10:46:51.634Z
EmsRe-Attac-18IYH2NXW163I
CREATE_COMPLETE
+
+ NOT_CHECKED
+
AttachGateway
AWS::EC2::VPCGatewayAttachment
@@ -31239,6 +46255,9 @@ http_interactions:
2017-05-03T10:46:59.572Z
EmsRe-Inbou-1M80E3XJX5ZG6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31246,6 +46265,9 @@ http_interactions:
2017-05-03T10:46:56.467Z
EmsRe-Inbou-E8UR0I5STC4V
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31253,6 +46275,9 @@ http_interactions:
2017-05-03T10:46:55.099Z
EmsRe-Inbou-1E29UZ91J3L0R
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundSSHNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31260,6 +46285,9 @@ http_interactions:
2017-05-03T10:46:51.481Z
sg-76c10f08
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -31267,6 +46295,9 @@ http_interactions:
2017-05-03T10:46:29.550Z
igw-64924d02
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InternetGateway
AWS::EC2::InternetGateway
@@ -31274,6 +46305,9 @@ http_interactions:
2017-05-03T10:46:34.869Z
acl-e616ad9f
CREATE_COMPLETE
+
+ NOT_CHECKED
+
NetworkAcl
AWS::EC2::NetworkAcl
@@ -31281,6 +46315,9 @@ http_interactions:
2017-05-03T10:46:56.226Z
EmsRe-OutBo-1NZIAZJB04JPV
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31288,6 +46325,9 @@ http_interactions:
2017-05-03T10:46:56.162Z
EmsRe-OutBo-11CPJOERKOC1S
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPSNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31295,6 +46335,9 @@ http_interactions:
2017-05-03T10:46:57.712Z
EmsRe-OutBo-1VCOFXN25WKE2
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31302,6 +46345,9 @@ http_interactions:
2017-05-03T10:47:11.450Z
EmsRe-Route-CE90KA6C89YL
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Route
AWS::EC2::Route
@@ -31309,6 +46355,9 @@ http_interactions:
2017-05-03T10:46:35.945Z
rtb-d37690ab
CREATE_COMPLETE
+
+ NOT_CHECKED
+
RouteTable
AWS::EC2::RouteTable
@@ -31316,6 +46365,9 @@ http_interactions:
2017-05-03T10:46:51.908Z
subnet-2190b144
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Subnet
AWS::EC2::Subnet
@@ -31323,6 +46375,9 @@ http_interactions:
2017-05-03T10:47:12.194Z
aclassoc-5960cf29
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetNetworkAclAssociation
AWS::EC2::SubnetNetworkAclAssociation
@@ -31330,6 +46385,9 @@ http_interactions:
2017-05-03T10:47:11.882Z
rtbassoc-d35ff3a8
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetRouteTableAssociation
AWS::EC2::SubnetRouteTableAssociation
@@ -31337,6 +46395,9 @@ http_interactions:
2017-05-03T10:46:30.347Z
vpc-8cf117f5
CREATE_COMPLETE
+
+ NOT_CHECKED
+
VPC
AWS::EC2::VPC
@@ -31344,17 +46405,20 @@ http_interactions:
2017-05-03T10:49:38.256Z
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::CloudFormation::Stack
- affb3ba8-a28f-11e7-9301-cbf47da2bfa6
+ 7206919f-b1b5-11e8-b6aa-37fc68fe31ca
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:53 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:50 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -31367,14 +46431,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075253Z
+ - 20180906T091550Z
X-Amz-Content-Sha256:
- a95316d6c99a84d934186f505f249c261357a616e1448edb52c67072f1f5350a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0fcf6a4f34615b25ae90e513eff61cb0abc454d75e1cec4c60e62752230bb559
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1762ffe8b0d477ae213356238fda0d6354287e6b806858aa040c52876e01ad25
Content-Length:
- '97'
Accept:
@@ -31385,15 +46449,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - b0ac62e7-a28f-11e7-9816-d3b41ee88437
+ - 72c7496c-b1b5-11e8-932e-d3251818167d
Content-Type:
- text/xml
Content-Length:
- - '7096'
+ - '9436'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:48 GMT
+ - Thu, 06 Sep 2018 09:15:50 GMT
body:
encoding: UTF-8
string: |
@@ -31404,6 +46468,9 @@ http_interactions:
2017-03-27T12:21:09.758Z
EmsRe-Gatew-1LHVB7WCBDH2J
CREATE_COMPLETE
+
+ NOT_CHECKED
+
GatewayToInternet
AWS::EC2::VPCGatewayAttachment
@@ -31411,6 +46478,9 @@ http_interactions:
2017-03-27T12:21:18.408Z
EmsRe-Inbou-114C8QHJD1A0
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundDynamicPortPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31418,6 +46488,9 @@ http_interactions:
2017-03-27T12:21:17.491Z
EmsRe-Inbou-10A1RE6O5U1OG
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundHTTPPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31425,6 +46498,9 @@ http_interactions:
2017-03-27T12:21:18.284Z
EmsRe-Inbou-NCOLEFTRFR80
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundSSHPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31432,6 +46508,9 @@ http_interactions:
2017-03-27T12:20:47.040Z
igw-f3b65295
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InternetGateway
AWS::EC2::InternetGateway
@@ -31439,6 +46518,9 @@ http_interactions:
2017-03-27T12:21:17.267Z
EmsRe-Outbo-GYCVGUJ9J26R
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutboundPublicNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -31446,6 +46528,9 @@ http_interactions:
2017-03-27T12:21:19.063Z
EmsRefres-PublicEl-15YIQXDK2TNOF
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicElasticLoadBalancer
AWS::ElasticLoadBalancing::LoadBalancer
@@ -31453,6 +46538,9 @@ http_interactions:
2017-03-27T12:21:12.098Z
sg-5946c626
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicLoadBalancerSecurityGroup
AWS::EC2::SecurityGroup
@@ -31460,6 +46548,9 @@ http_interactions:
2017-03-27T12:20:55.848Z
acl-e98b7590
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicNetworkAcl
AWS::EC2::NetworkAcl
@@ -31467,6 +46558,9 @@ http_interactions:
2017-03-27T12:21:30.588Z
EmsRe-Publi-13PVGYUA7QQU3
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicRoute
AWS::EC2::Route
@@ -31474,6 +46568,9 @@ http_interactions:
2017-03-27T12:20:54.594Z
rtb-93067bea
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicRouteTable
AWS::EC2::RouteTable
@@ -31481,6 +46578,9 @@ http_interactions:
2017-03-27T12:21:09.517Z
subnet-de2363bb
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnet
AWS::EC2::Subnet
@@ -31488,6 +46588,9 @@ http_interactions:
2017-03-27T12:21:35.209Z
aclassoc-4471fa35
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnetNetworkAclAssociation
AWS::EC2::SubnetNetworkAclAssociation
@@ -31495,6 +46598,9 @@ http_interactions:
2017-03-27T12:21:31.953Z
rtbassoc-1f3b2c67
CREATE_COMPLETE
+
+ NOT_CHECKED
+
PublicSubnetRouteTableAssociation
AWS::EC2::SubnetRouteTableAssociation
@@ -31502,6 +46608,9 @@ http_interactions:
2017-03-27T12:20:47.805Z
vpc-c3d2f1a5
CREATE_COMPLETE
+
+ NOT_CHECKED
+
VPC
AWS::EC2::VPC
@@ -31509,6 +46618,9 @@ http_interactions:
2017-03-27T12:23:33.873Z
EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerFleet-16VNBFLGH139F
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerFleet
AWS::AutoScaling::AutoScalingGroup
@@ -31516,6 +46628,9 @@ http_interactions:
2017-03-27T12:21:41.260Z
EmsRefreshSpecVpcStackWithAutoscalingGroup-WebServerLaunchConfig-126F2PVICWWUM
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerLaunchConfig
AWS::AutoScaling::LaunchConfiguration
@@ -31523,17 +46638,20 @@ http_interactions:
2017-03-27T12:21:35.209Z
sg-9242c2ed
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerSecurityGroup
AWS::EC2::SecurityGroup
- b0ac62e7-a28f-11e7-9816-d3b41ee88437
+ 72c7496c-b1b5-11e8-932e-d3251818167d
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:54 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:51 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -31546,14 +46664,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075254Z
+ - 20180906T091551Z
X-Amz-Content-Sha256:
- cf1ad38a5e121d365a76501102e3a4a993d4244281ebab672dff531c33021b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=73d0a7250df9a0cc907f061f463e29310a2f47fc87e4ab3d13b085ced68d0425
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0b7308a3b74e4ce9fb1ffad0ccb002a2adce5c4a2157aa8e69435b6f641ad860
Content-Length:
- '95'
Accept:
@@ -31564,13 +46682,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - b17ad6a0-a28f-11e7-adce-c57740555510
+ - 735299ec-b1b5-11e8-b13f-cbc83acd995e
Content-Type:
- text/xml
Content-Length:
- - '1993'
+ - '2513'
+ Vary:
+ - Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:50 GMT
+ - Thu, 06 Sep 2018 09:15:51 GMT
body:
encoding: UTF-8
string: |
@@ -31581,6 +46701,9 @@ http_interactions:
2017-03-27T11:33:42.596Z
EmsRefres-ElasticL-UPI0RRUFR3HI
CREATE_COMPLETE
+
+ NOT_CHECKED
+
ElasticLoadBalancer
AWS::ElasticLoadBalancing::LoadBalancer
@@ -31588,6 +46711,9 @@ http_interactions:
2017-03-27T11:34:04.759Z
EmsRefreshSpecStackWithAutoscalingGroup2-InstanceSecurityGroup-1WHWOVKYA562N
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -31595,6 +46721,9 @@ http_interactions:
2017-03-27T11:34:09.927Z
EmsRefreshSpecStackWithAutoscalingGroup2-LaunchConfig-TS2701Z3OAJM
CREATE_COMPLETE
+
+ NOT_CHECKED
+
LaunchConfig
AWS::AutoScaling::LaunchConfiguration
@@ -31602,17 +46731,20 @@ http_interactions:
2017-03-27T11:35:43.230Z
EmsRefreshSpecStackWithAutoscalingGroup2-WebServerGroup-1J99C2SGGFAV6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerGroup
AWS::AutoScaling::AutoScalingGroup
- b17ad6a0-a28f-11e7-adce-c57740555510
+ 735299ec-b1b5-11e8-b13f-cbc83acd995e
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:55 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:52 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -31625,14 +46757,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075255Z
+ - 20180906T091552Z
X-Amz-Content-Sha256:
- e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c5c533f02fe99b0383dbeb1143d399153b3a0c2dc681ae6a5ded3b4410e0c2bb
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=18d40b7cf03fa64f6af6b66a938feca3a74be288207cf37a30bd107d0c37814f
Content-Length:
- '42'
Accept:
@@ -31649,15 +46781,15 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:50 GMT
+ - Thu, 06 Sep 2018 09:15:52 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- dd434f90-548a-4e39-8af4-55147d2db438
+ f841e8f9-947f-42b6-885f-a11fc4967b14
-
api-create
@@ -31671,10 +46803,18 @@ http_interactions:
aws-test-1
cb:c9:8d:70:8e:4c:d5:9a:bd:a9:32:bb:73:90:af:09:67:31:ce:b9
+ -
+ azagayno
+ d8:b4:60:b4:1d:a6:c5:68:b0:4c:55:a8:76:c4:53:c9:45:e5:8e:89
+
-
bd
38:ac:a0:23:29:3b:0a:a8:0d:13:8c:d1:78:d7:9d:a8:cf:c9:42:03
+ -
+ bdunne
+ 4b:49:72:eb:26:48:0f:93:d1:3b:3c:dc:f0:66:15:fa:a0:85:28:7e
+
-
bill
eb:13:8d:19:b1:9d:9f:8b:ea:e0:9b:0b:eb:ea:46:a7:b3:a9:76:99
@@ -31683,6 +46823,10 @@ http_interactions:
bmclaugh
1a:03:3d:32:1f:74:25:52:f1:5e:17:b3:10:82:b6:28:76:f1:e0:8b
+ -
+ BronaghsKeyPair
+ 1a:35:6a:3a:f1:fd:71:74:a1:d9:c3:2e:11:8e:64:c4:40:ad:7e:ba
+
-
bsorota
be:2e:fb:10:34:51:f6:eb:fb:1d:fe:af:47:56:69:5c:ed:d2:25:67
@@ -31695,6 +46839,14 @@ http_interactions:
dberger
2b:f3:69:12:e2:12:4b:7e:e2:9e:ff:ef:6f:df:c8:3e:77:e6:26:19
+ -
+ docker-test
+ 42:0c:f5:d8:26:96:c0:08:96:ac:2f:18:d2:c4:b9:ec:7d:3e:e4:e5
+
+ -
+ docker_1801_01
+ b1:ad:a7:e6:6e:da:9e:07:b2:f6:47:cf:38:2a:cb:ed:c2:e8:7b:0e
+
-
EmsRefreshSpec-KeyPair
49:9f:3f:a4:26:48:39:94:26:06:dd:25:73:e5:da:9b:4b:1b:6c:93
@@ -31703,6 +46855,10 @@ http_interactions:
EMSRefreshSpec-KeyPair-02
52:13:06:59:38:ef:97:58:ff:d4:46:f1:ad:60:ed:72:c0:63:aa:77
+ -
+ foreman-1d16b1338-5a4c-411a-93cb-88a0b016d04e
+ 69:aa:aa:41:83:c2:dc:13:27:7a:c0:91:b9:b2:94:73:33:04:bd:58
+
-
gdb
7a:c7:44:04:62:0d:b6:a7:fe:90:45:7a:00:60:23:2f
@@ -31711,10 +46867,34 @@ http_interactions:
gm
a5:cb:4a:5d:e4:c0:97:7e:2f:c8:cd:6d:f7:6c:ab:4c:17:6d:6e:83
+ -
+ GregB-Minishift-keypair
+ 1e:33:8b:5f:ea:63:a0:87:82:67:e0:ad:96:f8:67:95:03:68:ab:35
+
+ -
+ hsong-keypair
+ e4:56:fb:0f:ae:21:15:2e:c1:2d:e4:35:ab:7c:12:be:46:ee:8c:30
+
+ -
+ hsong_centos_atomic
+ f3:88:fe:83:55:bd:5c:84:8b:c1:8b:fa:7b:5b:02:c9:77:03:4c:a0
+
+ -
+ hui_test
+ 35:8c:12:c8:63:1c:1f:a1:29:8f:98:74:6f:f3:12:92:e5:46:be:70
+
-
james
a9:48:48:b4:51:b7:43:b7:c2:12:69:50:e7:74:48:08:10:8d:7d:0c
+ -
+ james2
+ d3:db:86:19:03:50:fc:67:84:0b:92:f1:3b:15:13:c9:a9:86:20:9d
+
+ -
+ jcfoo
+ b7:5a:d2:4e:ef:86:6e:82:69:8d:8c:92:54:ec:39:e7:14:77:49:3b
+
-
jerryk
28:2f:64:b4:de:8a:fa:1b:65:3f:63:23:28:74:c3:a3:af:94:41:a6
@@ -31728,8 +46908,8 @@ http_interactions:
00:38:89:b1:d5:42:a4:31:67:05:ea:b5:87:19:d7:dd:46:21:df:21
-
- ladas_test
- 48:62:3d:b9:56:be:98:d8:cd:4d:73:b0:fa:36:9b:ba:0c:94:6a:29
+ ladas_ansible
+ 6b:6f:8b:c0:6f:0d:bf:62:2a:71:8d:5d:47:51:e0:22:e7:e9:9a:5e
-
mgf
@@ -31743,6 +46923,14 @@ http_interactions:
MIQ_SSA
2b:21:f4:b2:47:20:2e:91:4d:ef:5f:2f:48:90:5c:1a:da:ec:68:2d
+ -
+ MIQ_SSA-7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 75:e4:72:c9:d7:59:92:ca:14:68:32:b4:f1:b1:e2:b4:34:8b:34:ff
+
+ -
+ MIQ_SSA7bb7a4ee-c41a-4a06-8a33-075664bba709
+ 27:f0:c9:fc:41:9f:e3:8a:bf:d6:7d:ed:69:6a:8a:3a:6f:3b:04:4b
+
-
mk
66:e9:a1:2a:7f:9d:46:b2:71:3f:1e:eb:a8:95:9f:c3:f6:ce:c7:38
@@ -31755,6 +46943,62 @@ http_interactions:
rpo
e6:c0:d7:a2:f8:dd:62:8d:76:36:7d:ca:d5:df:5f:a4:e9:bd:28:2c
+ -
+ simaishi
+ a1:d5:87:c3:87:6a:51:15:a9:50:79:15:49:c6:6e:67:70:17:a3:47
+
+ -
+ simaishi2
+ ca:8d:be:35:2e:be:bd:35:87:2b:b0:11:ff:50:32:58:19:36:07:77
+
+ -
+ smartstate-0a8b0ecf-320d-4f7c-ad28-1aae106a196b
+ 2d:98:ac:50:52:75:05:01:a2:33:92:03:78:43:96:94:64:80:29:84
+
+ -
+ smartstate-1bd0c674-5ea4-4a26-8970-054d19c8520a
+ 1d:cd:a7:b9:92:47:eb:cc:c7:58:33:f8:4e:4c:9a:a7:4d:79:76:58
+
+ -
+ smartstate-27bda587-b003-4ba5-ba52-ca6d621a13d3
+ 2e:e2:62:00:bf:ef:de:87:3c:7e:37:c9:b8:3b:12:8c:a8:35:be:6a
+
+ -
+ smartstate-2d1d26a2-1852-44ed-b8aa-8f1697e0d2f0
+ f9:02:aa:24:bb:0e:70:51:d8:2e:c5:e1:d0:d4:1a:75:7a:b7:5c:94
+
+ -
+ smartstate-40193ce5-1459-4fdb-96d1-6128860ec235
+ 8d:3c:f4:ef:de:1c:8e:ec:22:06:52:2e:0b:b5:35:00:33:aa:70:b8
+
+ -
+ smartstate-7033fdde-6845-4d32-9e30-72d1b8599fa1
+ ba:fb:6c:f5:98:88:9c:c3:77:29:36:4c:a7:af:2d:f4:82:65:cb:ae
+
+ -
+ smartstate-70ceca4e-996f-47d5-9030-fd55a7910520
+ 65:cc:f4:64:ea:c3:34:63:19:5e:01:29:0e:4a:e6:53:b6:92:a1:f0
+
+ -
+ smartstate-74374e7e-6b63-421d-a1c5-3dcbd0b071e6
+ 60:36:1e:bf:75:da:23:60:76:5e:80:9f:b6:97:d0:1d:27:82:16:4e
+
+ -
+ smartstate-b5a73b24-f39e-11e6-b537-000c292c066c
+ fb:53:ce:0a:23:d8:7a:5c:25:32:74:e5:27:11:4b:e4:07:45:ef:44
+
+ -
+ smartstate-b88991cf-78cc-4e62-b775-72ad740d6ef1
+ 9c:bd:b7:f6:23:e8:ab:2c:d4:12:46:33:f7:7e:9c:10:64:c7:26:01
+
+ -
+ smartstate-d2c41bfb-f82d-4c60-964b-66a71780455b
+ fd:bc:55:f2:b5:2e:4d:49:cc:21:12:64:7d:6a:4f:72:5b:d3:52:be
+
+ -
+ smartstate-e72e68e5-850a-4015-b94f-7c689400ea21
+ 0f:45:3d:81:81:1c:e6:93:eb:f2:7f:70:4b:51:86:69:47:85:d6:42
+
-
ssa
72:79:2e:fc:7e:67:ee:af:14:f5:5e:e1:cf:a8:9a:39:04:3a:91:84
@@ -31763,32 +47007,315 @@ http_interactions:
ssa_1
31:8f:c1:bc:0b:5c:ba:8a:df:b7:4c:24:12:6e:82:0f:6b:66:ff:e0
-
-
+ -
+ stomsa
+ 9a:82:b7:d1:ce:b3:96:71:0b:b0:af:5d:db:89:ea:af:66:69:54:9e
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:53 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeAvailabilityZones&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091553Z
+ X-Amz-Content-Sha256:
+ - 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c9624904c8ecfb6ae5b5a71eeeba1cdd467f0a441c7105b97b72906fc8ed3999
+ Content-Length:
+ - '51'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Content-Length:
+ - '1437'
+ Date:
+ - Thu, 06 Sep 2018 09:15:53 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ c1074d13-c2f6-4f51-8805-b5b827ac17c3
+
+ -
+ us-east-1a
+ available
+ us-east-1
+
+
+ -
+ us-east-1b
+ available
+ us-east-1
+
+
+ -
+ us-east-1c
+ available
+ us-east-1
+
+
+ -
+ us-east-1d
+ available
+ us-east-1
+
+
+ -
+ us-east-1e
+ available
+ us-east-1
+
+
+ -
+ us-east-1f
+ available
+ us-east-1
+
+
+
+
+ http_version:
+ recorded_at: Thu, 06 Sep 2018 09:15:54 GMT
+- request:
+ method: post
+ uri: https://ec2.us-east-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: Action=DescribeVpcs&Version=2016-11-15
+ headers:
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Date:
+ - 20180906T091554Z
+ X-Amz-Content-Sha256:
+ - d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=305f93fb3192bf4cb16437618514c3b86f104265e945cba7a1686248324cc8ec
+ Content-Length:
+ - '38'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Content-Type:
+ - text/xml;charset=UTF-8
+ Transfer-Encoding:
+ - chunked
+ Vary:
+ - Accept-Encoding
+ Date:
+ - Thu, 06 Sep 2018 09:15:54 GMT
+ Server:
+ - AmazonEC2
+ body:
+ encoding: UTF-8
+ string: |-
+
+
+ dd6c5782-61e8-4f9f-b628-a37175991bba
+
+ -
+ vpc-ff49ff91
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-2e6daa47
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ EmsRefreshSpec-VPC
+
+
+ default
+ false
+
+ -
+ vpc-c3d2f1a5
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-add98fc5
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ aws:cloudformation:logical-id
+ VPC
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+
+ default
+ false
+
+ -
+ vpc-36cad24e
+ available
+ 10.0.0.0/16
+
+
-
+ 10.0.0.0/16
+ vpc-cidr-assoc-1c435976
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ Name
+ Bronagh-network
+
+
+ default
+ false
+
+ -
+ vpc-aee2a6ca
+ available
+ 172.30.0.0/16
+
+
-
+ 172.30.0.0/16
+ vpc-cidr-assoc-674ab80e
+
+ associated
+
+
+
+ dopt-f24ff99c
+ default
+ false
+
+ -
+ vpc-8cf117f5
+ available
+ 10.2.0.0/16
+
+
-
+ 10.2.0.0/16
+ vpc-cidr-assoc-6dbdaa05
+
+ associated
+
+
+
+ dopt-f24ff99c
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ aws:cloudformation:logical-id
+ VPC
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+
+ default
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:56 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:55 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeAvailabilityZones&Version=2016-11-15
+ string: Action=DescribeSubnets&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075256Z
+ - 20180906T091555Z
X-Amz-Content-Sha256:
- - 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
+ - 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=16a1ed3ece0e8816c0094ccc9b0b26c073e93f32fc1f32ba4dea2c43c564edbe
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=448aefe664fd90764bc67aa9e474186d58ada8c7c39f6a32f6c4e5111e1b62bf
Content-Length:
- - '51'
+ - '41'
Accept:
- "*/*"
response:
@@ -31803,78 +47330,216 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:51 GMT
+ - Thu, 06 Sep 2018 09:15:54 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
string: |-
-
- eac6b107-a73f-4c3c-9714-1686869ceb84
-
+
+ 61f9dc09-430d-49e2-ba90-8c476ab1c41b
+
-
- us-east-1a
- available
- us-east-1
-
+ subnet-16c70477
+ available
+ vpc-ff49ff91
+ 10.0.1.0/24
+
+ 243
+ us-east-1d
+ false
+ false
+
+
-
+ Name
+ EmsRefreshSpec-Subnet2
+
+
+ false
-
- us-east-1b
- available
- us-east-1
-
+ subnet-bc418ce4
+ available
+ vpc-aee2a6ca
+ 172.30.3.0/24
+
+ 250
+ us-east-1d
+ false
+ true
+ false
-
- us-east-1c
- available
- us-east-1
-
+ subnet-5f5a9670
+ available
+ vpc-ff49ff91
+ 10.0.8.0/24
+
+ 246
+ us-east-1e
+ false
+ false
+
+
-
+ Name
+ LadasTest
+
+
+ false
-
- us-east-1d
- available
- us-east-1
-
+ subnet-2190b144
+ available
+ vpc-8cf117f5
+ 10.2.0.0/24
+
+ 249
+ us-east-1c
+ false
+ false
+
+
-
+ EmsRefreshSpecStack-key1
+ EmsRefreshSpecStack-value1
+
+ -
+ aws:cloudformation:logical-id
+ Subnet
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecStack
+
+ -
+ EmsRefreshSpecStack-key2
+ EmsRefreshSpecStack-value2
+
+ -
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+
+
+ false
-
- us-east-1e
- available
- us-east-1
-
+ subnet-de2363bb
+ available
+ vpc-c3d2f1a5
+ 10.0.0.0/24
+
+ 247
+ us-east-1c
+ false
+ false
+
+
-
+ aws:cloudformation:stack-id
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+ -
+ Network
+ Public
+
+ -
+ aws:cloudformation:logical-id
+ PublicSubnet
+
+ -
+ aws:cloudformation:stack-name
+ EmsRefreshSpecVpcStackWithAutoscalingGroup
+
+ -
+ Application
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+
+
+ false
-
- us-east-1f
- available
- us-east-1
-
+ subnet-56f55f20
+ available
+ vpc-aee2a6ca
+ 172.30.1.0/24
+
+ 250
+ us-east-1b
+ false
+ true
+ false
-
-
+ -
+ subnet-5f639a75
+ available
+ vpc-aee2a6ca
+ 172.30.4.0/24
+
+ 251
+ us-east-1e
+ false
+ true
+ false
+
+ -
+ subnet-e88815d5
+ available
+ vpc-aee2a6ca
+ 172.30.0.0/24
+
+ 247
+ us-east-1a
+ false
+ true
+ false
+
+ -
+ subnet-f849ff96
+ available
+ vpc-ff49ff91
+ 10.0.0.0/24
+
+ 241
+ us-east-1e
+ false
+ true
+
+
-
+ Name
+ EmsRefreshSpec-Subnet1
+
+
+ false
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:57 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:56 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
body:
encoding: UTF-8
- string: Action=DescribeVpcs&Version=2016-11-15
+ string: Action=DescribeVolumes&Version=2016-11-15
headers:
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075257Z
+ - 20180906T091556Z
X-Amz-Content-Sha256:
- - d821ac2c2958664a08eb0f0b183ebf80201e8a50da5d9e98eca9bc36ef648656
+ - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=06b76e581957e19a8b44eb560656673e14bf0a2c358f554045fb830d151ffef9
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7ae94595996e61e5d71228c7874964693873287cbc1f958f14389c9245678d0c
Content-Length:
- - '38'
+ - '41'
Accept:
- "*/*"
response:
@@ -31889,483 +47554,999 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:52 GMT
+ - Thu, 06 Sep 2018 09:15:56 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
string: |-
-
- 5df1adb0-1343-4ed0-8537-85456c34b9c0
-
+
+ 68398852-337a-482f-8d7f-ab3c1aa48bf1
+
-
- vpc-a06de3c5
- available
- 10.0.0.0/16
-
+ vol-834804c4
+ 50
+
+ us-east-1d
+ available
+ 2015-04-21T13:54:22.140Z
+
+
-
- 10.0.0.0/16
- vpc-cidr-assoc-57b3403e
-
- associated
-
+ Name
+ cfme-raw-vmdb
-
- dopt-f24ff99c
+
+ gp2
+ 150
+ false
+
+ -
+ vol-d40b2c93
+ 30
+
+ us-east-1d
+ available
+ 2015-04-28T12:21:59.090Z
+
-
Name
- DemoVPC
+ cfme2-raw-vmdb
- default
- false
+ gp2
+ 100
+ false
-
- vpc-ff49ff91
- available
- 10.0.0.0/16
-
+ vol-68af0c92
+ 40
+
+ us-east-1d
+ available
+ 2015-09-29T21:36:13.514Z
+
+
-
- 10.0.0.0/16
- vpc-cidr-assoc-2e6daa47
-
- associated
-
+ Name
+ cfme55
-
- dopt-f24ff99c
+
+ standard
+ false
+
+ -
+ vol-ee3a9614
+ 50
+
+ us-east-1d
+ available
+ 2015-09-30T15:57:16.028Z
+
-
Name
- EmsRefreshSpec-VPC
+ cfme55vmdb
- default
- false
+ gp2
+ 150
+ false
-
- vpc-c3d2f1a5
- available
- 10.0.0.0/16
-
+ vol-0d3587406018a8205
+ 10
+ snap-0822784885cd20aff
+ us-east-1d
+ in-use
+ 2017-12-13T14:43:34.969Z
+
-
- 10.0.0.0/16
- vpc-cidr-assoc-add98fc5
-
- associated
-
+ vol-0d3587406018a8205
+ i-0510954911e45949b
+ /dev/sda1
+ attached
+ 2017-12-13T14:43:35.000Z
+ true
-
- dopt-f24ff99c
+
-
- aws:cloudformation:logical-id
- VPC
+ name
+ bronagh
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07be95279f27e791f
+ 8
+ snap-055cf1cfc1dda99fe
+ us-east-1d
+ in-use
+ 2017-12-13T15:04:35.520Z
+
-
- Network
- Public
+ vol-07be95279f27e791f
+ i-02007c8f386e74470
+ /dev/xvda
+ attached
+ 2017-12-13T15:04:35.000Z
+ true
+
+
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ Name
+ bronagh1213
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0b80eb1a867cd27f8
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-02-28T16:08:25.573Z
+
-
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ vol-0b80eb1a867cd27f8
+ i-0a67c549558c9c392
+ /dev/sda1
+ attached
+ 2018-02-28T16:08:25.000Z
+ true
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-007e8c0663020ed1c
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-03-01T21:31:05.573Z
+
+
-
+ vol-007e8c0663020ed1c
+ i-0aa433595b855eeeb
+ /dev/sda1
+ attached
+ 2018-03-01T21:31:05.000Z
+ true
+
+ standard
+ false
+
+ -
+ vol-09a10c5f98f2dd67c
+ 8
+ snap-0061a4a372352a41e
+ us-east-1d
+ in-use
+ 2018-03-06T05:28:40.473Z
+
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ vol-09a10c5f98f2dd67c
+ i-0a7aebaf459f1f9e7
+ /dev/sda1
+ attached
+ 2018-03-06T05:28:40.000Z
+ false
-
- default
- false
+
+ gp2
+ 100
+ false
-
- vpc-aee2a6ca
- available
- 172.30.0.0/16
-
+ vol-00991e8e4231720cb
+ 10
+ snap-0a1cfc902770c514d
+ us-east-1d
+ in-use
+ 2018-03-12T13:48:52.246Z
+
-
- 172.30.0.0/16
- vpc-cidr-assoc-674ab80e
-
- associated
-
+ vol-00991e8e4231720cb
+ i-0d0cbf4c0a5e4f8fc
+ /dev/sda1
+ attached
+ 2018-03-12T13:48:52.000Z
+ true
-
- dopt-f24ff99c
- default
- false
+
+ gp2
+ 100
+ false
-
- vpc-8cf117f5
- available
- 10.2.0.0/16
-
+ vol-0eb5ddcf735f22184
+ 10
+ snap-02196f4f8507c9598
+ us-east-1d
+ in-use
+ 2018-04-26T10:03:06.847Z
+
-
- 10.2.0.0/16
- vpc-cidr-assoc-6dbdaa05
-
- associated
-
+ vol-0eb5ddcf735f22184
+ i-05d2313e6b9a42b16
+ /dev/sda1
+ attached
+ 2018-04-26T10:03:06.000Z
+ true
-
- dopt-f24ff99c
-
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0eb026a02c6666ea0
+ 8
+ snap-4177dea1
+ us-east-1d
+ in-use
+ 2018-09-04T13:39:05.557Z
+
-
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
+ vol-0eb026a02c6666ea0
+ i-03769bc6ccaba947a
+ /dev/sda1
+ attached
+ 2018-09-04T13:39:05.000Z
+ true
+
+ standard
+ false
+
+ -
+ vol-0ba19a687115bc9bc
+ 1
+
+ us-east-1f
+ available
+ 2017-12-01T14:23:28.862Z
+
+
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ Name
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-07667df1666e2060a
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-03-14T21:43:12.985Z
+
-
- aws:cloudformation:logical-id
- VPC
+ vol-07667df1666e2060a
+ i-0235e2c2b4fcabeab
+ /dev/sda1
+ attached
+ 2018-03-14T21:43:13.000Z
+ true
+
+ standard
+ false
+
+ -
+ vol-0e7609b478fe9ca91
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-04-05T10:08:23.032Z
+
-
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
+ vol-0e7609b478fe9ca91
+ i-0297a2b1075b3a2c6
+ /dev/sda1
+ attached
+ 2018-04-05T10:08:23.000Z
+ true
+
+ standard
+ false
+
+ -
+ vol-0d62d6706c88af498
+ 7
+ snap-5f38cd0e
+ us-east-1b
+ in-use
+ 2018-07-25T10:56:16.973Z
+
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ vol-0d62d6706c88af498
+ i-0b2631823a0fdfc76
+ /dev/sda1
+ attached
+ 2018-07-25T10:56:17.000Z
+ true
+
+ standard
+ false
+
+ -
+ vol-0d8fcf26bf27ab650
+ 1
+
+ us-east-1a
+ available
+ 2017-01-27T15:36:00.023Z
+
+
-
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
+ Name
+ ladas_volume
- default
- false
+ gp2
+ 100
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:58 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeSubnets&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075258Z
- X-Amz-Content-Sha256:
- - 4458b81adb7ad686766b11e1bb41ad4b186e7cfb44c26a0b7ade703866d0fca0
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ac4b50824d35e24766026b85e3d99a8c34dad7a6ebad9b17bd8f3bc597ef4bfc
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:52 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- da546cee-11f8-456a-91bb-506ba6f6cf40
-
-
- subnet-16c70477
- available
- vpc-ff49ff91
- 10.0.1.0/24
-
- 248
- us-east-1d
- false
- false
+ vol-0e6f4b53711466c8b
+ 4
+
+ us-east-1a
+ available
+ 2017-05-22T13:13:04.847Z
+
-
Name
- EmsRefreshSpec-Subnet2
+ test
- false
-
- -
- subnet-bc418ce4
- available
- vpc-aee2a6ca
- 172.30.3.0/24
-
- 251
- us-east-1d
- false
- true
- false
+ io1
+ 100
+ false
-
- subnet-2190b144
- available
- vpc-8cf117f5
- 10.2.0.0/24
-
- 248
- us-east-1c
- false
- false
+ vol-0395fe9f0370fabdf
+ 3
+
+ us-east-1a
+ available
+ 2017-06-22T20:36:16.182Z
+
-
- EmsRefreshSpecStack-key1
- EmsRefreshSpecStack-value1
-
- -
- aws:cloudformation:logical-id
- Subnet
-
- -
- aws:cloudformation:stack-name
- EmsRefreshSpecStack
+ Name
+ dberger-test
-
- EmsRefreshSpecStack-key2
- EmsRefreshSpecStack-value2
+ Owner
+ Dan
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ Joe
+ Smith
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0a53d5f020485f470
+ 2
+
+ us-east-1a
+ available
+ 2017-06-30T16:27:26.909Z
+
+
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
+ Name
+ bronagh-volume-test
- false
+ gp2
+ 100
+ false
-
- subnet-de2363bb
- available
- vpc-c3d2f1a5
- 10.0.0.0/24
-
- 248
- us-east-1c
- false
- false
+ vol-0acc4b093d87d2ecd
+ 1
+
+ us-east-1a
+ available
+ 2017-06-30T17:19:21.552Z
+
-
- aws:cloudformation:stack-id
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ foo
+ bar
-
- Network
- Public
+ Name
+ dberger-test2
+
+ gp2
+ 100
+ false
+
+ -
+ vol-06c6dccf34b2a6c72
+ 1
+
+ us-east-1a
+ available
+ 2017-07-27T13:06:30.936Z
+
+
-
- aws:cloudformation:logical-id
- PublicSubnet
+ Name
+ ladas_delete_me_soon
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0c30961b3fd9686ba
+ 30
+ snap-ee7facf8
+ us-east-1a
+ available
+ 2017-10-10T20:35:12.867Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0ada13b443b5956c9
+ 7
+ snap-5ab0eb13
+ us-east-1a
+ available
+ 2017-10-26T19:36:58.511Z
+
+ standard
+ false
+
+ -
+ vol-0825f4636ce0d50c6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-26T20:33:13.973Z
+
+ standard
+ false
+
+ -
+ vol-0a4b814e71aa2f08f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T03:36:43.041Z
+
+ standard
+ false
+
+ -
+ vol-02806f4d20f3fc589
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T15:42:06.392Z
+
+ standard
+ false
+
+ -
+ vol-0541f73328859481d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:25:36.629Z
+
+ standard
+ false
+
+ -
+ vol-0492602d2209b004c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T19:47:46.434Z
+
+ standard
+ false
+
+ -
+ vol-0383713f5f8e9be6c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:17:39.566Z
+
+ standard
+ false
+
+ -
+ vol-0d09b14c9691b6132
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-27T20:45:58.188Z
+
+ standard
+ false
+
+ -
+ vol-073e00661f83e778e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T02:18:33.300Z
+
+ standard
+ false
+
+ -
+ vol-0fa0bf31000e6af8e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-10-31T21:00:39.451Z
+
+ standard
+ false
+
+ -
+ vol-00b35c4bcdacdf50e
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-08T21:08:54.275Z
+
+ standard
+ false
+
+ -
+ vol-0635c4be77a59e8c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-11-27T19:14:59.505Z
+
+ standard
+ false
+
+ -
+ vol-08048f081712cdc55
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T19:53:15.507Z
+
+
-
- aws:cloudformation:stack-name
- EmsRefreshSpecVpcStackWithAutoscalingGroup
+ Name
+ hsong-test_volume
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0d923fe770ed2486c
+ 2
+
+ us-east-1a
+ available
+ 2017-12-13T21:24:26.112Z
+
+
-
- Application
- arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecVpcStackWithAutoscalingGroup/bfba4350-12e7-11e7-b5b7-503f23fb55fe
+ Name
+ hsong-test-again
- false
+ gp2
+ 100
+ false
+
+ -
+ vol-09fb101747e4d82e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:54:56.366Z
+
+ standard
+ false
+
+ -
+ vol-090b6b64757ee0ab5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:57:09.931Z
+
+ standard
+ false
+
+ -
+ vol-043b675604bfd5b9d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T14:58:47.700Z
+
+ standard
+ false
+
+ -
+ vol-039bb19d656241cf6
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:01:36.106Z
+
+ standard
+ false
+
+ -
+ vol-0121b629c98897491
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:03:15.107Z
+
+ standard
+ false
+
+ -
+ vol-0e33a13f6eb3c1b36
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:10:28.797Z
+
+ standard
+ false
+
+ -
+ vol-05d1be7deaae362cf
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:12:02.490Z
+
+ standard
+ false
+
+ -
+ vol-0a816acb234f64a78
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:13:39.472Z
+
+ standard
+ false
+
+ -
+ vol-0c37e69f9d3fac3c5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:15:20.103Z
+
+ standard
+ false
+
+ -
+ vol-029b208a26b33dd91
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:17:22.608Z
+
+ standard
+ false
+
+ -
+ vol-0a37c9cc3de01630b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:18:59.845Z
+
+ standard
+ false
+
+ -
+ vol-0f3df9946b6fb0a68
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:20:42.067Z
+
+ standard
+ false
+
+ -
+ vol-0d3f5d40fd2cf1e21
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:22:52.734Z
+
+ standard
+ false
+
+ -
+ vol-09b9c89c88ba4e3f7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:25:02.249Z
+
+ standard
+ false
+
+ -
+ vol-091ef233d144e3a17
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:26:41.836Z
+
+ standard
+ false
+
+ -
+ vol-0efcc35ea44fcecaa
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:28:23.988Z
+
+ standard
+ false
+
+ -
+ vol-06b692e14c3c37f3a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:30:01.994Z
+
+ standard
+ false
+
+ -
+ vol-0b88365a642da2f29
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:32:22.859Z
+
+ standard
+ false
+
+ -
+ vol-0d5426adc427d73c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:34:27.210Z
+
+ standard
+ false
+
+ -
+ vol-0e24a7be2ffb508e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:36:09.046Z
+
+ standard
+ false
-
- subnet-56f55f20
- available
- vpc-aee2a6ca
- 172.30.1.0/24
-
- 251
- us-east-1b
- false
- true
- false
+ vol-098a1ea9cad67dbda
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:37:48.770Z
+
+ standard
+ false
-
- subnet-5f639a75
- available
- vpc-aee2a6ca
- 172.30.4.0/24
-
- 251
- us-east-1e
- false
- true
- false
+ vol-0d359e258ee956241
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:39:23.622Z
+
+ standard
+ false
-
- subnet-ac904787
- available
- vpc-a06de3c5
- 10.0.1.0/24
-
- 240
- us-east-1e
- false
- false
-
-
-
- Name
- subnet2
-
-
- false
+ vol-00d6116a2ff86c5c2
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:41:02.339Z
+
+ standard
+ false
-
- subnet-e88815d5
- available
- vpc-aee2a6ca
- 172.30.0.0/24
-
- 246
+ vol-03d8805971f766c18
+ 10
+ snap-00b622fadac39e90b
us-east-1a
- false
- true
- false
+ available
+ 2017-12-20T15:42:40.583Z
+
+ standard
+ false
-
- subnet-f849ff96
- available
- vpc-ff49ff91
- 10.0.0.0/24
-
- 237
- us-east-1e
- false
- true
-
-
-
- Name
- EmsRefreshSpec-Subnet1
-
-
- false
+ vol-0b2e399696e2c0695
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:44:20.845Z
+
+ standard
+ false
-
- subnet-1852bb33
- available
- vpc-a06de3c5
- 10.0.0.0/24
-
- 250
- us-east-1e
- false
- true
+ vol-0418d857c44096bc4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T15:46:02.577Z
+
+ standard
+ false
+
+ -
+ vol-0840c53c9077e23e4
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T16:45:07.967Z
+
+ standard
+ false
+
+ -
+ vol-01cf4586194fa1d7a
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2017-12-20T18:21:57.922Z
+
+ standard
+ false
+
+ -
+ vol-0dbdd7e27a94c2ddc
+ 4
+
+ us-east-1a
+ available
+ 2018-01-05T16:01:52.727Z
+
-
Name
- Subnet1
+ hsong-0105
- false
+ gp2
+ 100
+ false
-
-
- http_version:
- recorded_at: Tue, 26 Sep 2017 07:52:59 GMT
-- request:
- method: post
- uri: https://ec2.us-east-1.amazonaws.com/
- body:
- encoding: UTF-8
- string: Action=DescribeVolumes&Version=2016-11-15
- headers:
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- Accept-Encoding:
- - ''
- User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
- X-Amz-Date:
- - 20170926T075259Z
- X-Amz-Content-Sha256:
- - 925be3c8fc6870a890a6670574a88c988b51f13d9ea74f458ce9b6972534f164
- Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=06efe5fb0af6e3f9eb63b6352562404b0a22a95ae3c5fd86a3c663ef3f4e72e4
- Content-Length:
- - '41'
- Accept:
- - "*/*"
- response:
- status:
- code: 200
- message: OK
- headers:
- Content-Type:
- - text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
- Date:
- - Tue, 26 Sep 2017 07:52:53 GMT
- Server:
- - AmazonEC2
- body:
- encoding: UTF-8
- string: |-
-
-
- 4ea47e29-2da6-444e-b571-1b25501b6cb3
-
-
- vol-834804c4
- 50
+ vol-0cc8d9f54237b1fb5
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-04-21T13:54:22.140Z
+ 2018-01-10T16:00:30.795Z
-
Name
- cfme-raw-vmdb
+ hsong-1010
gp2
- 150
+ 100
false
-
- vol-d40b2c93
- 30
+ vol-02b314874ffa07e3f
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-04-28T12:21:59.090Z
+ 2018-01-10T16:04:41.425Z
-
Name
- cfme2-raw-vmdb
+ hsong-1010-1
gp2
@@ -32373,113 +48554,472 @@ http_interactions:
false
-
- vol-68af0c92
- 40
+ vol-09e31fed84773d1e1
+ 8
- us-east-1d
+ us-east-1a
available
- 2015-09-29T21:36:13.514Z
+ 2018-01-10T16:18:25.321Z
-
Name
- cfme55
+ hsong-1010-2
- standard
+ gp2
+ 100
false
-
- vol-ee3a9614
- 50
+ vol-0212b7567bd16ab47
+ 4
- us-east-1d
+ us-east-1a
available
- 2015-09-30T15:57:16.028Z
+ 2018-01-19T15:45:33.725Z
-
Name
- cfme55vmdb
+ xxl01
- gp2
- 150
+ io1
+ 100
false
-
- vol-02a26016b0b7a9450
- 1
- snap-0fb2163b24646b146
- us-east-1d
- in-use
- 2017-05-05T14:04:33.747Z
-
-
-
- vol-02a26016b0b7a9450
- i-0b59b1d8461965bd1
- /dev/sda1
- attached
- 2017-05-05T14:04:33.000Z
- true
-
-
+ vol-03433068816328de4
+ 8
+
+ us-east-1a
+ available
+ 2018-01-22T15:04:31.163Z
+
gp2
100
false
-
- vol-05eb880e2e337b3f1
- 7
- snap-5f38cd0e
- us-east-1d
- in-use
- 2017-07-24T19:18:26.730Z
-
-
-
- vol-05eb880e2e337b3f1
- i-02c925747e07a8118
- /dev/sda1
- attached
- 2017-07-24T19:18:26.000Z
- true
-
-
+ vol-0566cd9481a29ca23
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-25T22:19:12.182Z
+
+ standard
+ false
+
+ -
+ vol-0c37b1a65e4f12968
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T20:46:09.789Z
+
+ standard
+ false
+
+ -
+ vol-025a3a234eeb31bc1
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:20:14.285Z
+
+ standard
+ false
+
+ -
+ vol-08afd3e598e5ba143
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:45:52.228Z
+
+ standard
+ false
+
+ -
+ vol-0653d1716dc49592b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T21:55:04.729Z
+
+ standard
+ false
+
+ -
+ vol-0917151960a77d439
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:13:45.861Z
+
+ standard
+ false
+
+ -
+ vol-0c68b01f4f260ee9c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:36:01.529Z
+
+ standard
+ false
+
+ -
+ vol-09801be5b750adc80
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-29T22:54:00.132Z
+
+ standard
+ false
+
+ -
+ vol-06806fc2f7d8b9119
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:34:00.998Z
+
+ standard
+ false
+
+ -
+ vol-072d8c0b33be81fe3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T13:50:53.129Z
+
+ standard
+ false
+
+ -
+ vol-02bf1f30ac38448e5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T14:07:08.909Z
+
+ standard
+ false
+
+ -
+ vol-0c84050c0e1b8b490
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:31:26.026Z
+
+ standard
+ false
+
+ -
+ vol-0dc4f98dac26b2378
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:49:57.483Z
+
+ standard
+ false
+
+ -
+ vol-0013e5ea3ee8d3beb
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T15:52:47.247Z
+
+ standard
+ false
+
+ -
+ vol-0358d9f4d3df869e7
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:06:15.454Z
+
+ standard
+ false
+
+ -
+ vol-03af96a7737e48aa3
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T16:54:50.517Z
+
+ standard
+ false
+
+ -
+ vol-0e7878f03823f5399
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:36:16.140Z
+
+ standard
+ false
+
+ -
+ vol-011d0be8098d309ba
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T17:57:30.964Z
+
+ standard
+ false
+
+ -
+ vol-0ea9010df702fb698
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T18:24:22.381Z
+
+ standard
+ false
+
+ -
+ vol-0f7e01cd0c93de24d
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-30T22:22:10.028Z
+
+ standard
+ false
+
+ -
+ vol-08efe048b975d586b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-01-31T01:26:41.851Z
+
+ standard
+ false
+
+ -
+ vol-0458322629d9caf55
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:20.477Z
+
+ standard
+ false
+
+ -
+ vol-0c4e2a7cbcfc11ee9
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:31:30.452Z
+
+ standard
+ false
+
+ -
+ vol-09f96563900ec5161
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T16:54:30.147Z
+
+ standard
+ false
+
+ -
+ vol-0c7dd7b270ca0edc5
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-01T21:33:58.993Z
+
+ standard
+ false
+
+ -
+ vol-0a134a3a8b8cd294b
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T14:23:56.709Z
+
+ standard
+ false
+
+ -
+ vol-03b363474b53b1556
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:36:31.229Z
+
+ standard
+ false
+
+ -
+ vol-0d700b01f53ba3984
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T15:44:08.614Z
+
+ standard
+ false
+
+ -
+ vol-02866b764ae673fb0
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-02T16:02:00.790Z
+
+ standard
+ false
+
+ -
+ vol-07b90d0adcf084f73
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-14T19:02:54.953Z
+
+ standard
+ false
+
+ -
+ vol-00eb40a0c3afd9957
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:08:31.757Z
+
+ standard
+ false
+
+ -
+ vol-076ea0e9b295eb129
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T14:25:47.490Z
+
+ standard
+ false
+
+ -
+ vol-097a11c8d6afcff70
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:32:27.518Z
+
+ standard
+ false
+
+ -
+ vol-0f4f9aa0a9e6f85af
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-15T19:58:39.950Z
+
+ standard
+ false
+
+ -
+ vol-0027ef821d9ae2173
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:17:46.361Z
+
+ standard
+ false
+
+ -
+ vol-030b95ecd4161a88c
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T15:55:30.265Z
+
standard
false
-
- vol-04eb2f294c5f9f7eb
- 8
- snap-4177dea1
- us-east-1d
- in-use
- 2017-08-31T00:02:52.693Z
-
-
-
- vol-04eb2f294c5f9f7eb
- i-025623c4c4e4f84a0
- /dev/sda1
- attached
- 2017-08-31T00:02:52.000Z
- true
-
-
+ vol-00a2c2b4b6931ed1f
+ 10
+ snap-00b622fadac39e90b
+ us-east-1a
+ available
+ 2018-02-26T16:17:11.903Z
+
standard
false
-
- vol-0d8fcf26bf27ab650
- 1
+ vol-01eabd56e84c13a48
+ 4
us-east-1a
available
- 2017-01-27T15:36:00.023Z
+ 2018-02-26T16:49:48.790Z
-
Name
- ladas_volume
+ hui_5_9_us_east
gp2
@@ -32487,61 +49027,48 @@ http_interactions:
false
-
- vol-0e6f4b53711466c8b
- 1
-
+ vol-04428bffbab60ac8f
+ 10
+ snap-00b622fadac39e90b
us-east-1a
available
- 2017-05-22T13:13:04.847Z
+ 2018-02-26T16:53:28.906Z
-
-
-
- Name
- test
-
-
- gp2
- 100
+ standard
false
-
- vol-0395fe9f0370fabdf
- 3
-
+ vol-070d695244916edf4
+ 10
+ snap-00b622fadac39e90b
us-east-1a
- available
- 2017-06-22T20:36:16.182Z
-
-
-
-
- Name
- dberger-test
-
- -
- Owner
- Dan
-
+ in-use
+ 2018-02-26T18:31:28.646Z
+
-
- Joe
- Smith
+ vol-070d695244916edf4
+ i-0fb9010fdcfe4d050
+ /dev/sda1
+ attached
+ 2018-02-26T18:31:28.000Z
+ false
-
- gp2
- 100
+
+ standard
false
-
- vol-0a53d5f020485f470
- 2
+ vol-00df6ef3f504dcd0b
+ 4
us-east-1a
available
- 2017-06-30T16:27:26.909Z
+ 2018-02-26T19:56:09.856Z
-
Name
- bronagh-volume-test
+ hui_5_9_us_east_2nd
gp2
@@ -32549,125 +49076,97 @@ http_interactions:
false
-
- vol-0acc4b093d87d2ecd
- 1
+ vol-0472d9ed07f9b1a50
+ 4
us-east-1a
available
- 2017-06-30T17:19:21.552Z
+ 2018-02-28T21:06:30.166Z
-
-
- foo
- bar
-
-
Name
- dberger-test2
+ hui-console-test-us
- gp2
- 100
+ standard
false
-
- vol-0657f371b97c0f147
+ vol-0a184b5b739d382d8
10
- snap-b9a222c1
+ snap-00b622fadac39e90b
us-east-1a
in-use
- 2017-07-17T19:21:46.880Z
+ 2018-03-15T13:27:37.446Z
-
- vol-0657f371b97c0f147
- i-06c2e2feb85b5c8b2
+ vol-0a184b5b739d382d8
+ i-0015ec0007f4d13a7
/dev/sda1
attached
- 2017-07-17T19:21:46.000Z
- true
+ 2018-03-15T13:27:37.000Z
+ false
- gp2
- 100
+ standard
false
-
- vol-0ea3efc6f99654381
+ vol-0390b378515bffd1c
10
- snap-b9a222c1
+ snap-00b622fadac39e90b
us-east-1a
in-use
- 2017-07-26T15:15:30.182Z
+ 2018-04-05T18:29:10.338Z
-
- vol-0ea3efc6f99654381
- i-0951b95d6db76519d
+ vol-0390b378515bffd1c
+ i-02cc7ad4129cefe1b
/dev/sda1
attached
- 2017-07-26T15:15:30.000Z
- true
+ 2018-04-05T18:29:10.000Z
+ false
- gp2
- 100
+ standard
false
-
- vol-06c6dccf34b2a6c72
- 1
-
+ vol-0f7377bb13a8c843a
+ 8
+ snap-0b9a379373a50ff29
us-east-1a
available
- 2017-07-27T13:06:30.936Z
+ 2018-04-17T08:17:04.654Z
-
- Name
- ladas_delete_me_soon
+ Description
+ Smartstate extract volume for image: i-0a7aebaf459f1f9e7
-
- gp2
- 100
- false
-
- -
- vol-0f151bad0c041c2db
- 10
- snap-b9a222c1
- us-east-1a
- in-use
- 2017-08-10T19:10:06.592Z
-
-
- vol-0f151bad0c041c2db
- i-02975d4eb8e53bafd
- /dev/sda1
- attached
- 2017-08-10T19:10:06.000Z
- true
+ Name
+ Smartstate extract volume
-
- gp2
- 100
+
+ standard
false
-
- vol-0d805ae0a434871aa
- 10
- snap-b9a222c1
+ vol-0e6fca3077833d8ac
+ 1
+
us-east-1a
- in-use
- 2017-09-23T18:24:22.738Z
-
+ available
+ 2018-04-19T14:57:17.344Z
+
+
-
- vol-0d805ae0a434871aa
- i-0b1ec6330e0180f75
- /dev/sda1
- attached
- 2017-09-23T18:24:22.000Z
- true
+ Name
+ dberger-test3
-
+
gp2
100
false
@@ -32724,27 +49223,6 @@ http_interactions:
standard
false
- -
- vol-3bc4d1ea
- 7
- snap-5f38cd0e
- us-east-1e
- in-use
- 2016-05-10T20:56:38.389Z
-
-
-
- vol-3bc4d1ea
- i-fb694e66
- /dev/sda1
- attached
- 2016-05-10T20:56:38.000Z
- true
-
-
- gp2
- 100
- false
-
-
vol-da190f08
10
@@ -32777,18 +49255,9 @@ http_interactions:
1
us-east-1e
- in-use
+ available
2017-01-27T15:58:07.337Z
-
-
-
- vol-0dda5ecf4b2b3dc57
- i-0a922b9826b3dfd0d
- /dev/sdf
- attached
- 2017-03-13T13:38:45.000Z
- false
-
-
+
-
Name
@@ -32817,69 +49286,6 @@ http_interactions:
100
false
- -
- vol-01aca96e22103f767
- 8
- snap-037f1f9e6c8ea4d65
- us-east-1e
- in-use
- 2017-02-14T16:18:29.762Z
-
-
-
- vol-01aca96e22103f767
- i-08c033357b433ea2c
- /dev/xvda
- attached
- 2017-02-14T16:18:29.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-0e251f8b387b2d87d
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:28:15.962Z
-
-
-
- vol-0e251f8b387b2d87d
- i-0a922b9826b3dfd0d
- /dev/sda1
- attached
- 2017-02-16T16:28:16.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-06c7662068fe81b92
- 10
- snap-b9a222c1
- us-east-1e
- in-use
- 2017-02-16T16:40:47.792Z
-
-
-
- vol-06c7662068fe81b92
- i-0999c6f9b18ead5fc
- /dev/sda1
- attached
- 2017-02-16T16:40:47.000Z
- true
-
-
- gp2
- 100
- false
-
-
vol-0e1613cacf4688009
1
@@ -32917,509 +49323,146 @@ http_interactions:
-
- Name
- EmsRefreshSpecForVpcVm
-
-
- gp2
- 100
- false
-
- -
- vol-0acad09812d803c09
- 1
-
- us-east-1e
- in-use
- 2017-03-17T07:23:54.211Z
-
-
-
- vol-0acad09812d803c09
- i-c72af2f6
- /dev/sdf
- attached
- 2017-03-17T07:25:12.000Z
- false
-
-
-
- -
- Name
- EmsRefreshSpecForVpc1
-
-
- gp2
- 100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- -
- vol-0e9caee6ef7b23c31
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:51.246Z
-
-
-
- vol-0e9caee6ef7b23c31
- i-0347d4075310c21e6
- /dev/sda1
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- standard
- false
-
- -
- vol-059f5f4b2a5663e65
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:39:52.887Z
-
-
-
- vol-059f5f4b2a5663e65
- i-035fa3affa815d81d
- /dev/sda1
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- standard
- false
-
- -
- vol-098f6a0ae86c0bf2f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:51.351Z
-
-
-
- vol-098f6a0ae86c0bf2f
- i-0347d4075310c21e6
- /dev/sdf
- attached
- 2017-03-21T19:39:51.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-03be1ddce0ee8a66f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:39:53.038Z
-
-
-
- vol-03be1ddce0ee8a66f
- i-035fa3affa815d81d
- /dev/sdf
- attached
- 2017-03-21T19:39:52.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-035c47f5f5190ddc8
- 40
- snap-1d177976
- us-east-1e
- in-use
- 2017-03-21T19:41:23.396Z
-
-
-
- vol-035c47f5f5190ddc8
- i-0c1542ba946875280
- /dev/sda1
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- standard
- false
-
- -
- vol-0c365b31acf12c5f0
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-03-21T19:41:23.491Z
-
-
-
- vol-0c365b31acf12c5f0
- i-0c1542ba946875280
- /dev/sdf
- attached
- 2017-03-21T19:41:23.000Z
- false
-
-
- gp2
- 150
- false
-
- -
- vol-001c8985b0f091c9b
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-04-11T18:27:25.671Z
-
- gp2
- 150
- false
-
- -
- vol-03f74085d10e667e8
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-04-11T18:27:25.488Z
-
- standard
- false
-
- -
- vol-0dc50783929797846
- 30
-
- us-east-1e
- in-use
- 2017-04-12T18:17:02.946Z
-
-
-
- vol-0dc50783929797846
- i-0659dcbc66cb830e5
- /dev/sdb
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- gp2
- 100
- false
-
- -
- vol-0816f373502e8db24
- 40
- snap-249e4c6c
- us-east-1e
- in-use
- 2017-04-12T18:17:02.827Z
-
-
-
- vol-0816f373502e8db24
- i-0659dcbc66cb830e5
- /dev/sda1
- attached
- 2017-04-12T18:17:03.000Z
- false
-
-
- gp2
- 120
- false
-
- -
- vol-0f5da4a455ff03c28
- 2
-
- us-east-1e
- available
- 2017-04-24T16:16:47.488Z
-
-
-
-
- Name
- bronaghs-test-volume
-
-
- gp2
- 100
- false
-
- -
- vol-097f300050f495d06
- 7
- snap-d23a95a1
- us-east-1e
- in-use
- 2017-05-02T19:39:50.053Z
-
-
-
- vol-097f300050f495d06
- i-0fca61ededa522f1a
- /dev/sda1
- attached
- 2017-05-02T19:39:50.000Z
- true
-
-
- standard
- false
-
- -
- vol-04a25be409ef70789
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:17:19.803Z
-
- standard
- false
-
- -
- vol-01a843e049100c874
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:17:19.775Z
-
- gp2
- 150
- false
-
- -
- vol-0330dfaa90ec5155f
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-12T21:35:13.310Z
-
- standard
- false
-
- -
- vol-033e5a7bf386767a0
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-12T21:35:13.320Z
-
- gp2
- 150
- false
-
- -
- vol-04fc5431c4edd9bb6
- 6
- snap-e159bf6a
- us-east-1e
- in-use
- 2017-05-16T18:19:22.353Z
-
-
-
- vol-04fc5431c4edd9bb6
- i-091fe7ccd76ddac3b
- /dev/sda1
- attached
- 2017-05-16T18:19:22.000Z
- true
-
-
- gp2
- 100
- false
-
- -
- vol-0ba3a2953d84534d2
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-17T18:40:13.269Z
-
- gp2
- 150
- false
-
- -
- vol-0c7a1e46f3e5596ca
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-17T18:40:13.127Z
-
- standard
- false
-
- -
- vol-05ff7a30b06f27ac5
- 40
- snap-1d177976
- us-east-1e
- available
- 2017-05-22T20:22:02.773Z
-
- standard
- false
-
- -
- vol-035a92ec4bb5b53c8
- 50
- snap-9dd602d7
- us-east-1e
- available
- 2017-05-22T20:22:02.894Z
-
- gp2
- 150
- false
-
- -
- vol-0ed526ebed417656f
- 50
- snap-9dd602d7
- us-east-1e
- in-use
- 2017-05-22T20:35:57.755Z
-
-
-
- vol-0ed526ebed417656f
- i-0bad1e8ff60a6f29a
- /dev/sdf
- attached
- 2017-05-22T20:35:57.000Z
- false
+ Name
+ EmsRefreshSpecForVpcVm
-
+
gp2
- 150
+ 100
false
-
- vol-0385dfce3061ff5a9
- 40
- snap-1d177976
+ vol-0acad09812d803c09
+ 1
+
us-east-1e
in-use
- 2017-05-22T20:35:57.665Z
+ 2017-03-17T07:23:54.211Z
-
- vol-0385dfce3061ff5a9
- i-0bad1e8ff60a6f29a
- /dev/sda1
+ vol-0acad09812d803c09
+ i-c72af2f6
+ /dev/sdf
attached
- 2017-05-22T20:35:57.000Z
+ 2017-03-17T07:25:12.000Z
false
- standard
- false
+
+ -
+ Name
+ EmsRefreshSpecForVpc1
+
+
+ gp2
+ 100
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-0344f9e572891ae90
- 8
- snap-0f9a8e1fc22263c6c
+ vol-0f5da4a455ff03c28
+ 2
+
us-east-1e
available
- 2017-06-16T20:19:18.000Z
+ 2017-04-24T16:16:47.488Z
+
+
-
+ Name
+ bronaghs-test-volume
+
+
gp2
100
false
-
- vol-0ef01a328c30eb4b2
- 8
- snap-0f9a8e1fc22263c6c
+ vol-01e50a745302d3299
+ 2
+
us-east-1e
available
- 2017-06-16T20:30:09.864Z
+ 2017-06-22T20:38:28.321Z
+
+
-
+ name
+ dberger-test2
+
+
gp2
100
false
-
- vol-0c66d91c30044f68f
- 8
- snap-0f9a8e1fc22263c6c
+ vol-0f1d1fbc7a35cdbab
+ 2
+
us-east-1e
available
- 2017-06-16T20:44:40.594Z
+ 2017-07-03T14:45:12.273Z
+
+
-
+ Name
+ bronagh-ebs-test
+
+
gp2
100
false
-
- vol-096d40746df01e27b
- 8
- snap-0f9a8e1fc22263c6c
+ vol-01ff7e549707b8e54
+ 1
+
us-east-1e
- in-use
- 2017-06-16T20:54:01.693Z
-
+ available
+ 2017-09-04T14:45:47.319Z
+
+
-
- vol-096d40746df01e27b
- i-03d706b95aa8b12ce
- /dev/sda1
- attached
- 2017-06-16T20:54:01.000Z
- false
+ Name
+ ladas_test_111_encrypted
-
+
gp2
100
- false
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-01e50a745302d3299
- 2
-
+ vol-01f455f7af32c1206
+ 10
+ snap-04b8acc66d50b9a7b
us-east-1e
available
- 2017-06-22T20:38:28.321Z
+ 2017-09-04T15:18:12.952Z
-
- name
- dberger-test2
+ Name
+ ladas_tesT_111_volume_from_snapshot_that_has_image
gp2
100
- false
+ true
+ arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
-
- vol-0f1d1fbc7a35cdbab
- 2
+ vol-01d53264cef7468b5
+ 1
us-east-1e
available
- 2017-07-03T14:45:12.273Z
+ 2017-09-08T20:44:15.915Z
-
- Name
- bronagh-ebs-test
+ name
+ bronagh_sept
gp2
@@ -33427,105 +49470,114 @@ http_interactions:
false
-
- vol-000f77902b1a16428
- 80
- snap-05ef19f30ffe6ceaa
+ vol-00198c2e466b380ac
+ 10
+ snap-ba40cac8
us-east-1e
in-use
- 2017-08-29T19:14:36.922Z
+ 2018-02-06T09:49:36.942Z
-
- vol-000f77902b1a16428
- i-0c1eee2b86c7aa4a1
+ vol-00198c2e466b380ac
+ i-004f3bd30726946d1
/dev/sda1
attached
- 2017-08-29T19:14:36.000Z
+ 2018-02-06T09:49:36.000Z
true
-
- -
- hsong-ssa
-
-
-
gp2
- 240
+ 100
false
-
- vol-00306cda05dec2db5
- 10
- snap-ba40cac8
+ vol-0b2d1d3b42eb03555
+ 7
+ snap-d23a95a1
us-east-1e
in-use
- 2017-09-04T13:26:01.140Z
+ 2018-03-15T13:28:48.475Z
-
- vol-00306cda05dec2db5
- i-099e794cfa830e9be
+ vol-0b2d1d3b42eb03555
+ i-0639022117944a668
/dev/sda1
attached
- 2017-09-04T13:26:01.000Z
+ 2018-03-15T13:28:48.000Z
true
- gp2
- 100
+ standard
false
-
- vol-01ff7e549707b8e54
- 1
-
+ vol-06bc83fa0e7bd77c4
+ 16
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-04T14:45:47.319Z
-
+ in-use
+ 2018-05-24T13:44:27.687Z
+
+
-
+ vol-06bc83fa0e7bd77c4
+ i-0c37a7d012922752e
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
-
Name
- ladas_test_111_encrypted
+ ladas_ansible_test_2
gp2
100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+ false
-
- vol-01f455f7af32c1206
- 10
- snap-04b8acc66d50b9a7b
+ vol-0875db6c16a8e9335
+ 16
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-04T15:18:12.952Z
-
+ in-use
+ 2018-05-24T13:44:27.698Z
+
+
-
+ vol-0875db6c16a8e9335
+ i-066465f361331dfa6
+ /dev/sda1
+ attached
+ 2018-05-24T13:44:27.000Z
+ true
+
+
-
Name
- ladas_tesT_111_volume_from_snapshot_that_has_image
+ ladas_ansible_test_2
gp2
100
- true
- arn:aws:kms:us-east-1:200278856672:key/1b84f037-3b25-4985-90e1-8b5cd6cc098e
+ false
-
- vol-0ac7a66512bf0d20c
- 10
- snap-ba40cac8
+ vol-06e9ef72a99dcc223
+ 8
+ snap-0eea1ed47e203f3b8
us-east-1e
in-use
- 2017-09-07T12:23:46.502Z
+ 2018-06-06T18:52:17.961Z
-
- vol-0ac7a66512bf0d20c
- i-0b72e0b70e7fae3c9
+ vol-06e9ef72a99dcc223
+ i-0622ab75f5f2ba752
/dev/sda1
attached
- 2017-09-07T12:23:46.000Z
+ 2018-06-06T18:52:18.000Z
true
@@ -33534,37 +49586,40 @@ http_interactions:
false
-
- vol-01d53264cef7468b5
- 1
-
+ vol-096db62af3cb45d75
+ 8
+ snap-0eea1ed47e203f3b8
us-east-1e
- available
- 2017-09-08T20:44:15.915Z
-
-
+ in-use
+ 2018-06-06T18:52:17.961Z
+
-
- name
- bronagh_sept
+ vol-096db62af3cb45d75
+ i-002ca40492fff0e67
+ /dev/sda1
+ attached
+ 2018-06-06T18:52:18.000Z
+ true
-
+
gp2
100
false
-
- vol-0c2aaf810c8925376
+ vol-076672a9b80ac2e25
7
snap-5f38cd0e
us-east-1e
in-use
- 2017-09-26T07:48:52.520Z
+ 2018-09-03T12:10:36.744Z
-
- vol-0c2aaf810c8925376
- i-047886b9fd2397967
+ vol-076672a9b80ac2e25
+ i-0e1752ff841801f65
/dev/sda1
attached
- 2017-09-26T07:48:52.000Z
+ 2018-09-03T12:10:36.000Z
true
@@ -33573,19 +49628,19 @@ http_interactions:
false
-
- vol-02e5c41d12060ab3b
+ vol-0628a6ce987d4cb6e
8
snap-25dd2ac1
us-east-1c
in-use
- 2017-05-02T19:39:37.154Z
+ 2017-05-03T10:47:07.722Z
-
- vol-02e5c41d12060ab3b
- i-0150ac66c83e0eae8
+ vol-0628a6ce987d4cb6e
+ i-0bca58e6e540ddc39
/dev/xvda
attached
- 2017-05-02T19:39:37.000Z
+ 2017-05-03T10:47:07.000Z
true
@@ -33594,19 +49649,58 @@ http_interactions:
false
-
- vol-0628a6ce987d4cb6e
+ vol-0d76e68ae71222b49
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ in-use
+ 2017-10-20T03:07:59.609Z
+
+
-
+ vol-0d76e68ae71222b49
+ i-0274ada368eb4da36
+ /dev/sda1
+ attached
+ 2017-10-20T03:07:59.000Z
+ false
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d0c07b33b7dd990
+ 10
+ snap-015df5abbf8e2bd82
+ us-east-1c
+ available
+ 2018-02-01T19:13:07.286Z
+
+
+
-
+ docker 1801_01
+ docker 1801_01
+
+
+ gp2
+ 100
+ false
+
+ -
+ vol-080996fdeaee13caf
8
snap-25dd2ac1
us-east-1c
in-use
- 2017-05-03T10:47:07.722Z
+ 2018-03-01T21:31:42.122Z
-
- vol-0628a6ce987d4cb6e
- i-0bca58e6e540ddc39
+ vol-080996fdeaee13caf
+ i-0828f09c91ab89a97
/dev/xvda
attached
- 2017-05-03T10:47:07.000Z
+ 2018-03-01T21:31:42.000Z
true
@@ -33615,137 +49709,262 @@ http_interactions:
false
-
- vol-0da3845ae07b3f322
- 50
- snap-9dd602d7
+ vol-04030aeb76075632f
+ 40
+ snap-00b622fadac39e90b
us-east-1c
available
- 2017-05-18T16:20:08.073Z
+ 2018-03-06T16:33:40.840Z
+
+
-
+ centos-atomic
+ hsong-centos-atomic
+
+
gp2
- 150
+ 120
false
-
- vol-09d73576072fbf6ae
+ vol-006fabcff33ae5272
40
- snap-1d177976
+ snap-00b622fadac39e90b
us-east-1c
- available
- 2017-05-18T16:20:07.982Z
-
- standard
+ in-use
+ 2018-03-06T18:29:43.923Z
+
+
-
+ vol-006fabcff33ae5272
+ i-0125949f65c1e5528
+ /dev/sda1
+ attached
+ 2018-03-06T18:29:43.000Z
+ false
+
+
+
+ -
+ Name
+ hsong-centos
+
+
+ gp2
+ 120
false
-
- vol-075964f66ea673e99
+ vol-08af70e95c9e06b9b
40
snap-1d177976
us-east-1c
available
- 2017-05-18T16:45:59.675Z
+ 2018-03-15T18:57:13.409Z
standard
false
-
- vol-07e8bc444d8e10c9c
+ vol-0d9e5539117b1d84e
50
snap-9dd602d7
us-east-1c
available
- 2017-05-18T16:45:59.776Z
+ 2018-03-15T18:57:13.508Z
gp2
150
false
-
- vol-0a3ad9ef6f4a178f3
- 40
- snap-1d177976
+ vol-0534ca90d5ec7c1fa
+ 10
+ snap-00b622fadac39e90b
us-east-1c
- in-use
- 2017-06-07T15:59:48.204Z
-
-
-
- vol-0a3ad9ef6f4a178f3
- i-013f45a83fd938928
- /dev/sda1
- attached
- 2017-06-07T15:59:48.000Z
- false
-
-
+ available
+ 2018-03-16T12:57:15.476Z
+
standard
false
-
- vol-0382343901be51311
- 50
- snap-9dd602d7
+ vol-05380a49009bd2bab
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T14:50:05.626Z
+
+ standard
+ false
+
+ -
+ vol-02a2daeffe573eb40
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:57:52.883Z
+
+ standard
+ false
+
+ -
+ vol-00a2450a0d4a75026
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T16:59:17.653Z
+
+ standard
+ false
+
+ -
+ vol-023585bdecf8787a8
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:51:17.945Z
+
+ standard
+ false
+
+ -
+ vol-01501c252c6c17f64
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:14.035Z
+
+ standard
+ false
+
+ -
+ vol-0caa1d7281b4bce32
+ 10
+ snap-00b622fadac39e90b
+ us-east-1c
+ available
+ 2018-03-16T19:55:57.679Z
+
+ standard
+ false
+
+ -
+ vol-0780f89f8347bae57
+ 30
+
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.183Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-014a050c648da66fd
+ 40
+ snap-249e4c6c
+ us-east-1c
+ available
+ 2018-03-16T19:57:47.104Z
+
+ gp2
+ 120
+ false
+
+ -
+ vol-0d3b1bfb00463ea5d
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:40:30.740Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-0bd04af3b534fdde6
+ 8
+ snap-088636c344ba7cfe8
+ us-east-1c
+ available
+ 2018-04-10T20:46:40.680Z
+
+ gp2
+ 100
+ false
+
+ -
+ vol-04d23aa0121812de9
+ 7
+ snap-5f38cd0e
us-east-1c
in-use
- 2017-06-07T15:59:48.363Z
+ 2018-07-25T11:01:38.351Z
-
- vol-0382343901be51311
- i-013f45a83fd938928
- /dev/sdf
+ vol-04d23aa0121812de9
+ i-09b65a1400b9538ff
+ /dev/sda1
attached
- 2017-06-07T15:59:48.000Z
- false
+ 2018-07-25T11:01:38.000Z
+ true
- gp2
- 150
+ standard
false
-
- vol-0290849f78dccf167
- 40
- snap-1d177976
+ vol-02bb1bb157d7f12de
+ 8
+ snap-4177dea1
us-east-1c
in-use
- 2017-06-09T15:00:47.137Z
+ 2018-09-06T08:19:19.878Z
-
- vol-0290849f78dccf167
- i-0d794150f7fd264c4
+ vol-02bb1bb157d7f12de
+ i-038bc46a57b2ad428
/dev/sda1
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2018-09-06T08:19:19.000Z
+ true
standard
false
-
- vol-083b1f1e71831ba7e
- 50
- snap-9dd602d7
+ vol-0491256daac0cf880
+ 8
+ snap-4177dea1
us-east-1c
in-use
- 2017-06-09T15:00:47.228Z
+ 2018-09-06T08:19:39.938Z
-
- vol-083b1f1e71831ba7e
- i-0d794150f7fd264c4
- /dev/sdf
+ vol-0491256daac0cf880
+ i-00eda271fc8d71e7e
+ /dev/sda1
attached
- 2017-06-09T15:00:47.000Z
- false
+ 2018-09-06T08:19:39.000Z
+ true
- gp2
- 150
+ standard
false
http_version:
- recorded_at: Tue, 26 Sep 2017 07:53:00 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:57 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -33758,14 +49977,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T075300Z
+ - 20180906T091557Z
X-Amz-Content-Sha256:
- 198438dba11e3ce3807802118c2500dc7ec3fcda2f43c86e579dfb6049e0f159
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=651231f92830c0228640900738390f03489774ed596853e1b3779ebf958e792f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180906/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=17428521589550c381dcf551bed6874103d1f612cf3a02fb669cb17b14b5430c
Content-Length:
- '56'
Accept:
@@ -33782,7 +50001,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 07:52:56 GMT
+ - Thu, 06 Sep 2018 09:15:57 GMT
Server:
- AmazonEC2
body:
@@ -33790,7 +50009,7 @@ http_interactions:
string: |-
- 531c12e1-7034-4a68-8263-145e920f042b
+ beb5ee31-5c23-4a80-aa4d-3e587896fcba
-
snap-1d177976
@@ -34083,14 +50302,148 @@ http_interactions:
-
- snap-0e04c9c244477559b
+ snap-03e398e6e95827703
vol-ffffffff
completed
- 2017-07-03T15:40:06.000Z
+ 2018-08-31T14:29:15.000Z
+
+ 200278856672
+ 67
+ Created by AWS-VMImport service for import-ami-09bf69373591f57dc
+ false
+
+ -
+ snap-07e530b95d909f36d
+ vol-07be95279f27e791f
+ completed
+ 2018-08-27T21:46:31.000Z
+
+ 200278856672
+ 8
+ Created by CreateImage(i-02007c8f386e74470) for ami-0908219546812fe3e from vol-07be95279f27e791f
+ false
+
+ -
+ snap-0b9a379373a50ff29
+ vol-09a10c5f98f2dd67c
+ completed
+ 2018-04-17T08:16:19.000Z
+
+ 200278856672
+ 8
+ Smartstate extract snapshot for instance: i-0a7aebaf459f1f9e7
+ false
+
+
-
+ Name
+ Smartstate extract snapshot
+
+
+
+ -
+ snap-02094089d5ab75ded
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T20:40:13.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-05a7d88d5b5dec9e7
+ vol-0825f4636ce0d50c6
+ completed
+ 2018-03-29T20:15:18.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ test
+
+
+
+ -
+ snap-075f99be2814607c5
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T14:20:53.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-854a3bff from vol-00bda21753cf68784
+ false
+
+ -
+ snap-090b10966b3b3d0bf
+ vol-00bda21753cf68784
+ completed
+ 2017-12-15T01:48:39.000Z
+
+ 200278856672
+ 41
+ Created by CreateImage(i-02983a9473b15f05f) for ami-db582ea1 from vol-00bda21753cf68784
+ false
+
+ -
+ snap-07ef84850550046dd
+ vol-08048f081712cdc55
+ completed
+ 2017-12-13T20:01:22.000Z
200278856672
2
- [Copied snap-034acb0cf077bc06c from us-east-1]
+
+ false
+
+
-
+ Name
+ hsong-snapshot-test
+
+
+
+ -
+ snap-0b1bfdb21caec2dcd
+ vol-ffffffff
+ completed
+ 2017-11-16T12:22:01.000Z
+
+ 200278856672
+ 10
+ [Copied snap-03d5e23022317b3a5 from us-east-1]
+ false
+
+ -
+ snap-02349dbbbf755f6af
+ vol-0e4c86c12b28cead8
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 1
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-0e4c86c12b28cead8
+ false
+
+ -
+ snap-0c58ddded84a9e8ba
+ vol-67606d2d
+ completed
+ 2017-11-16T11:48:50.000Z
+
+ 200278856672
+ 7
+ Created by CreateImage(i-8b5739f2) for ami-054aca7f from vol-67606d2d
false
-
@@ -34206,8 +50559,70 @@ http_interactions:
+ -
+ snap-0400b13c0acfdffa9
+ vol-0b80eb1a867cd27f8
+ completed
+ 2018-07-17T15:29:53.000Z
+
+ 200278856672
+ 10
+ Created by CreateImage(i-0a67c549558c9c392) for ami-cf96afb0 from vol-0b80eb1a867cd27f8
+ false
+
+ -
+ snap-08babfa12e1a6b948
+ vol-ffffffff
+ completed
+ 2018-05-02T22:50:21.000Z
+
+ 200278856672
+ 41
+ Created by AWS-VMImport service for import-ami-ffhlve05
+ false
+
+
-
+ Name
+ simaishi
+
+
+
+ -
+ snap-064b688768dd7a1a2
+ vol-0383713f5f8e9be6c
+ completed
+ 2018-03-29T23:53:43.000Z
+
+ 200278856672
+ 10
+
+ false
+
+
-
+ Name
+ vol-0383713f5f8e9be6c-SNAP
+
+
+
+ -
+ snap-0c14d3a2d3706ffc4
+ vol-0d923fe770ed2486c
+ completed
+ 2017-12-13T21:26:35.000Z
+
+ 200278856672
+ 2
+
+ false
+
+
-
+ Name
+ hsong-test-again-snap
+
+
+
http_version:
- recorded_at: Tue, 26 Sep 2017 07:53:02 GMT
+ recorded_at: Thu, 06 Sep 2018 09:15:58 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/ec2_classic_vm_and_lb_full_refresh.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/ec2_classic_vm_and_lb_full_refresh.yml
index d354ebb38..21e701dce 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/ec2_classic_vm_and_lb_full_refresh.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/ec2_classic_vm_and_lb_full_refresh.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081803Z
+ - 20180903T142721Z
X-Amz-Content-Sha256:
- 15060d4cadc5ceda7ce099049c06aa362d9fe6caa77a51c60d2b050b77aef8eb
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d4a0b748c6b3381d7eea6a21b5a29aa2052d7653cc9bdf00ee15a2e3cf8eef1b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6da323d859b1102a78df17f816b7dcecf0eff295f35bc4f8e8a6379685fc5e1d
Content-Length:
- '97'
Accept:
@@ -36,7 +36,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:58 GMT
+ - Mon, 03 Sep 2018 14:27:21 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +44,7 @@ http_interactions:
string: |-
- a039abc2-0075-4cd6-b7e7-a56a34cd0243
+ 27477f4d-ab79-4a4f-9198-c6cbf6218f8e
-
r-18ca6cb0
@@ -125,13 +125,17 @@ http_interactions:
xen
false
+
+ 1
+ 1
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:05 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:22 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -144,14 +148,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081805Z
+ - 20180903T142724Z
X-Amz-Content-Sha256:
- 3687d6dd1f231b3240bd52e8c7cf959c498b8b7312ba6b8a4e9c1e83e973d0b5
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f49bd49660a336276d45c81a30e97d619f5980a2fd97e8d7cf6a10245f54a808
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ee3b3004a532b2f7dae099f3073f75dd54e1c6faa5c0278e64ebd16af521a37a
Content-Length:
- '103'
Accept:
@@ -168,7 +172,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:18:00 GMT
+ - Mon, 03 Sep 2018 14:27:25 GMT
Server:
- AmazonEC2
body:
@@ -176,7 +180,7 @@ http_interactions:
string: |-
- 9ec87e9b-6231-4ac7-ae8a-cfd674351a8b
+ e4134ccb-b192-4b7d-99af-8cb244a24fcc
-
us-east-1e
@@ -187,7 +191,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:06 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:25 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -200,14 +204,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081806Z
+ - 20180903T142725Z
X-Amz-Content-Sha256:
- 8b897801bc6737ad27423b50d05f4c5a3cb37aff5adc92042c314bf391679416
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=448b1534ca1f63eff750b0f38a42c2ec81568465fb7fd017564fb31913629518
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f3b45dff51ec8b08f9f98079f4fde255bb61f90215f19788f4da2d46d96ff7ae
Content-Length:
- '105'
Accept:
@@ -219,20 +223,18 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '424'
Date:
- - Tue, 26 Sep 2017 08:18:00 GMT
+ - Mon, 03 Sep 2018 14:27:25 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- fd0db995-a863-493c-b823-95aa14628764
+ b94ff386-93e5-48ca-a74d-f0ec4334568f
-
EmsRefreshSpec-KeyPair
@@ -241,7 +243,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:07 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:25 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -254,14 +256,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081807Z
+ - 20180903T142725Z
X-Amz-Content-Sha256:
- 59ebf96e9619012c1913bd7ad295db16925f7ce6f757deea0097185f78822898
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d983f932d76985914c4ea640484b9d3deb0a212ab9914313b1230feb14b0fca4
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ed89cb325851587389cbd3a62d264352d63bc647b01f7cdcf12012693412debc
Content-Length:
- '93'
Accept:
@@ -273,12 +275,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1720'
Date:
- - Tue, 26 Sep 2017 08:18:01 GMT
+ - Mon, 03 Sep 2018 14:27:27 GMT
Server:
- AmazonEC2
body:
@@ -286,7 +286,7 @@ http_interactions:
string: |-
- 0c2a40e9-429b-49ba-a8df-ab9b69ffaa17
+ 62a8394f-9b69-4c03-ac6c-8377e7270194
-
ami-5769193e
@@ -315,12 +315,18 @@ http_interactions:
paravirtual
+
+ -
+ Name
+
+
+
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:07 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:27 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -333,14 +339,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081807Z
+ - 20180903T142727Z
X-Amz-Content-Sha256:
- 9bfbe564c1df25a8fe1db93d7b6cbaf7ee80f2d833bb57f3f02fb39c9e917788
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d8dd83ce2cdd1e69f30617598753334521d6313903ff554c910b6615751500e5
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5a8717487c5f0368b4d93cd91101b9408c2ca3552a64d7ef36720f3913ee9948
Content-Length:
- '129'
Accept:
@@ -357,7 +363,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:18:02 GMT
+ - Mon, 03 Sep 2018 14:27:27 GMT
Server:
- AmazonEC2
body:
@@ -365,7 +371,7 @@ http_interactions:
string: |-
- 3ba8f453-dd6c-4476-a2e1-5ef1060c87b3
+ 332104c2-5dcd-4d43-aa41-40479712f389
-
200278856672
@@ -537,7 +543,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:09 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:27 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -550,14 +556,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081809Z
+ - 20180903T142728Z
X-Amz-Content-Sha256:
- eccb5bf67bfa5fee8ecc6861893290305425c597e770f0b64647437903c0124e
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4355642a40140343d7b645474cb71a2dd7b91aec8730b7cfa5750a80a85d444a
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e3df918fd12afb17059cc396886692f273c462c38e10e34fdd7561491b31bc90
Content-Length:
- '102'
Accept:
@@ -568,7 +574,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 381916d9-a293-11e7-9d2f-8f5079b2d409
+ - 7c3e0343-af85-11e8-97ac-bbd8964c9d05
Content-Type:
- text/xml
Content-Length:
@@ -576,7 +582,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:18:03 GMT
+ - Mon, 03 Sep 2018 14:27:28 GMT
body:
encoding: UTF-8
string: |
@@ -626,18 +632,18 @@ http_interactions:
TCP:22
2013-08-09T14:53:25.760Z
-
+
EmsRefreshSpec-LoadBalancer-1889731919.us-east-1.elb.amazonaws.com
- 381916d9-a293-11e7-9d2f-8f5079b2d409
+ 7c3e0343-af85-11e8-97ac-bbd8964c9d05
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:10 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:28 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -650,14 +656,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081810Z
+ - 20180903T142728Z
X-Amz-Content-Sha256:
- 3af90022526a6f5460a9813c88cc0b96b9ad472999bfeedaccd286147e93047b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=fba0e297aba6d90e73c4eb538c88b1da5566e9c6f0a5ff3499b7d74fc023d48a
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a76254725fd37b6e5e6c93743632c62f23e0fa0d12144fff4c58eb0f4c780526
Content-Length:
- '93'
Accept:
@@ -668,13 +674,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 38aaf73a-a293-11e7-b163-d1fa8fea7ae9
+ - 7c8bae38-af85-11e8-97ac-bbd8964c9d05
Content-Type:
- text/xml
Content-Length:
- '629'
Date:
- - Tue, 26 Sep 2017 08:18:04 GMT
+ - Mon, 03 Sep 2018 14:27:28 GMT
body:
encoding: UTF-8
string: |
@@ -690,11 +696,11 @@ http_interactions:
- 38aaf73a-a293-11e7-b163-d1fa8fea7ae9
+ 7c8bae38-af85-11e8-97ac-bbd8964c9d05
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:11 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:29 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -707,14 +713,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081811Z
+ - 20180903T142729Z
X-Amz-Content-Sha256:
- 2c78f1ad1dfa1273041e2e2ca1ebe682d22be25a3e4ca677f9efe3364177dd87
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6fe29ab6a18791258fa6e83f79cd3d67cff30309f81dc823871fb312594b74db
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f86c0be0510b033c47feb3b0a3196d78f24b0d55ab1ccdfb11e74e48934a40ce
Content-Length:
- '102'
Accept:
@@ -731,7 +737,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:18:06 GMT
+ - Mon, 03 Sep 2018 14:27:29 GMT
Server:
- AmazonEC2
body:
@@ -739,11 +745,11 @@ http_interactions:
string: |-
- 6f86b08b-351e-4128-bf31-ace2c198baeb
+ 302a0993-a8eb-4c29-99c9-2c00b9a9d19c
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:12 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:29 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -756,14 +762,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081812Z
+ - 20180903T142729Z
X-Amz-Content-Sha256:
- 9eb53c8dc817d7d2387b68b959e1dcbcb088b2eca78249418f904ba14c592c42
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ac1492c1d8f7f34765ac14a6a69f02b8faa099ed8dd049619589210227ef15c1
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a84a88d6f9281d9aca27c2508f8f3a686a67050055d6ccd3524e4cbf736f9773
Content-Length:
- '95'
Accept:
@@ -780,7 +786,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:18:07 GMT
+ - Mon, 03 Sep 2018 14:27:30 GMT
Server:
- AmazonEC2
body:
@@ -788,7 +794,7 @@ http_interactions:
string: |-
- abaf1f31-2db4-407e-a7f3-e8457090e0a2
+ 921fcd0d-ee82-4f0f-9e17-ee7dcd8c69fa
-
vol-b6fa656a
@@ -819,5 +825,5 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:18:13 GMT
+ recorded_at: Mon, 03 Sep 2018 14:27:30 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stack.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stack.yml
index ebacacd5a..fd1fd69bc 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stack.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stack.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121338Z
+ - 20180904T080215Z
X-Amz-Content-Sha256:
- 757f116d419bd4d4b28f0f2066e5d8ebd0130dccf7e5ddc04269a9836899e0bd
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=842659e1566559973b98195542a79a13d2c6a13c477b2358f4af05a5c6abaae8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c1e5f64dc4f06c62ef9050f78f642c42e691fd69712e2d1f38e78a97f5773e60
Content-Length:
- '205'
Accept:
@@ -30,15 +30,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - f0f094dc-2ff9-11e7-8d98-33c9632f229d
+ - d6624cc4-b018-11e8-8787-630333594af1
Content-Type:
- text/xml
Content-Length:
- - '2731'
+ - '3223'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:39 GMT
+ - Tue, 04 Sep 2018 08:02:15 GMT
body:
encoding: UTF-8
string: |
@@ -57,12 +57,14 @@ http_interactions:
CAPABILITY_NAMED_IAM
2017-05-03T10:46:56.780Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
true
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
EmsRefreshSpecStack-value2
@@ -73,6 +75,11 @@ http_interactions:
EmsRefreshSpecStack-key1
+
+
+ NOT_CHECKED
+
+ false
KeyName
@@ -103,11 +110,11 @@ http_interactions:
- f0f094dc-2ff9-11e7-8d98-33c9632f229d
+ d6624cc4-b018-11e8-8787-630333594af1
http_version:
- recorded_at: Wed, 03 May 2017 12:13:39 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:15 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -120,14 +127,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121339Z
+ - 20180904T080215Z
X-Amz-Content-Sha256:
- f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c0bdf1714868672c48bd5dd3381b8dfce0ce1de2a5c78aa7da064df2736206c0
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7a2007004d329cf9bc6136ab1696244f02738592e1fd9d9646acfcd0f67bc3e3
Content-Length:
- '99'
Accept:
@@ -138,7 +145,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - f13fc632-2ff9-11e7-a405-751b9245d996
+ - d6acc357-b018-11e8-9325-51e5e4971742
Content-Type:
- text/xml
Content-Length:
@@ -146,7 +153,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:39 GMT
+ - Tue, 04 Sep 2018 08:02:16 GMT
body:
encoding: UTF-8
string: "\n
@@ -420,10 +427,10 @@ http_interactions:
"PublicIp"] }]]},\n "Description" : "Newly created
application URL"\n }\n }\n}\n\n\n \n
\ Original\n Processed\n \n
- \ \n \n f13fc632-2ff9-11e7-a405-751b9245d996\n
+ \ \n \n d6acc357-b018-11e8-9325-51e5e4971742\n
\ \n\n"
http_version:
- recorded_at: Wed, 03 May 2017 12:13:40 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:16 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -436,14 +443,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121340Z
+ - 20180904T080216Z
X-Amz-Content-Sha256:
- e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=782bdd6f1e5f03984a18415435f48aebabb52deac851a6456e126ea3d416389b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=af5e5e21f503837ca1f9d62f38190d03b37df522dd7326d6cda83543f23fb953
Content-Length:
- '106'
Accept:
@@ -454,13 +461,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - f1abce99-2ff9-11e7-9364-9f6d0da3defe
+ - d7597dc8-b018-11e8-8d3d-9f690cf0f1f1
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '1297'
Date:
- - Wed, 03 May 2017 12:13:39 GMT
+ - Tue, 04 Sep 2018 08:02:17 GMT
body:
encoding: UTF-8
string: |
@@ -471,6 +478,9 @@ http_interactions:
2017-05-03T10:49:32.560Z
34.202.178.10
CREATE_COMPLETE
+
+ NOT_CHECKED
+
IPAddress
AWS::EC2::EIP
@@ -478,15 +488,18 @@ http_interactions:
2017-05-03T10:48:56.988Z
i-0bca58e6e540ddc39
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::EC2::Instance
- f1abce99-2ff9-11e7-9364-9f6d0da3defe
+ d7597dc8-b018-11e8-8d3d-9f690cf0f1f1
http_version:
- recorded_at: Wed, 03 May 2017 12:13:40 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:17 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested.yml
index 090f21eb0..1865bdf47 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121322Z
+ - 20180904T080220Z
X-Amz-Content-Sha256:
- ee7457b505a85bcdc54c00cc7e1428239c8d49174f88965bdf64f2a7c3baa103
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1f9b7852c58834380cd98c38273c523d97e9f924adba90a0cb6b9308160fba9e
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=7ec586eabfba27d1b1c19632f764de952f2b3dd98e0e14587649e12b10540583
Content-Length:
- '173'
Accept:
@@ -30,15 +30,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e72ae676-2ff9-11e7-b5bc-c13618c4d942
+ - d99d5379-b018-11e8-842e-2925a6fb6b81
Content-Type:
- text/xml
Content-Length:
- - '2483'
+ - '2703'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:23 GMT
+ - Tue, 04 Sep 2018 08:02:20 GMT
body:
encoding: UTF-8
string: |
@@ -73,6 +73,11 @@ http_interactions:
EmsRefreshSpecStack-key1
+
+
+ NOT_CHECKED
+
+ false
KeyName
@@ -95,11 +100,11 @@ http_interactions:
- e72ae676-2ff9-11e7-b5bc-c13618c4d942
+ d99d5379-b018-11e8-842e-2925a6fb6b81
http_version:
- recorded_at: Wed, 03 May 2017 12:13:23 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:21 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -112,14 +117,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121323Z
+ - 20180904T080221Z
X-Amz-Content-Sha256:
- 757f116d419bd4d4b28f0f2066e5d8ebd0130dccf7e5ddc04269a9836899e0bd
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0d197d928e028005104f4c0d2f62eac20ea1fe9d4afeb3631b7f75ff826aae72
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=faed03eb5224ae0bf2a0f09a5af18390dca6a44c7989f295c48938c91709a284
Content-Length:
- '205'
Accept:
@@ -130,15 +135,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e7770b04-2ff9-11e7-9364-9f6d0da3defe
+ - d9e4953d-b018-11e8-9cdb-69236bc4bef1
Content-Type:
- text/xml
Content-Length:
- - '2731'
+ - '3223'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:23 GMT
+ - Tue, 04 Sep 2018 08:02:20 GMT
body:
encoding: UTF-8
string: |
@@ -157,12 +162,14 @@ http_interactions:
CAPABILITY_NAMED_IAM
2017-05-03T10:46:56.780Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
true
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
EmsRefreshSpecStack-value2
@@ -173,6 +180,11 @@ http_interactions:
EmsRefreshSpecStack-key1
+
+
+ NOT_CHECKED
+
+ false
KeyName
@@ -203,11 +215,11 @@ http_interactions:
- e7770b04-2ff9-11e7-9364-9f6d0da3defe
+ d9e4953d-b018-11e8-9cdb-69236bc4bef1
http_version:
- recorded_at: Wed, 03 May 2017 12:13:23 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:21 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -220,14 +232,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121323Z
+ - 20180904T080221Z
X-Amz-Content-Sha256:
- 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9f6ab158af863aae7975eb96d567329cb6f1e63953a011ecccba593a743be8bb
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ddef38249cc596997ba230b6c823ceaf52216afb5cea15be119fa6c0420520cc
Content-Length:
- '67'
Accept:
@@ -238,7 +250,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e7c1f622-2ff9-11e7-9a1c-ddb8f8e2f413
+ - da2c4c8c-b018-11e8-9c4f-3f2efac56926
Content-Type:
- text/xml
Content-Length:
@@ -246,7 +258,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:23 GMT
+ - Tue, 04 Sep 2018 08:02:22 GMT
body:
encoding: UTF-8
string: "\n
@@ -385,10 +397,10 @@ http_interactions:
: "IP Address of the host",\n "Value" : { "Ref"
: "WebServerInstance" }\n }\n }\n}\n\n \n
\ Original\n Processed\n \n
- \ \n \n e7c1f622-2ff9-11e7-9a1c-ddb8f8e2f413\n
+ \ \n \n da2c4c8c-b018-11e8-9c4f-3f2efac56926\n
\ \n\n"
http_version:
- recorded_at: Wed, 03 May 2017 12:13:24 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:22 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -401,14 +413,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121324Z
+ - 20180904T080222Z
X-Amz-Content-Sha256:
- 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=161e724a091f4a36a910c22e712cf19eaee78880b74e8ea928196386da21d01f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e4647ca98fe6eab0a13032b932b404c4d51cb497b0da557037ac904165b955bf
Content-Length:
- '74'
Accept:
@@ -419,15 +431,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e81b39fb-2ff9-11e7-af69-f94eab766ea4
+ - dad3890e-b018-11e8-b13f-cbc83acd995e
Content-Type:
- text/xml
Content-Length:
- - '6667'
+ - '8877'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:24 GMT
+ - Tue, 04 Sep 2018 08:02:22 GMT
body:
encoding: UTF-8
string: |
@@ -438,6 +450,9 @@ http_interactions:
2017-05-03T10:46:51.634Z
EmsRe-Attac-18IYH2NXW163I
CREATE_COMPLETE
+
+ NOT_CHECKED
+
AttachGateway
AWS::EC2::VPCGatewayAttachment
@@ -445,6 +460,9 @@ http_interactions:
2017-05-03T10:46:59.572Z
EmsRe-Inbou-1M80E3XJX5ZG6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -452,6 +470,9 @@ http_interactions:
2017-05-03T10:46:56.467Z
EmsRe-Inbou-E8UR0I5STC4V
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -459,6 +480,9 @@ http_interactions:
2017-05-03T10:46:55.099Z
EmsRe-Inbou-1E29UZ91J3L0R
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundSSHNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -466,6 +490,9 @@ http_interactions:
2017-05-03T10:46:51.481Z
sg-76c10f08
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -473,6 +500,9 @@ http_interactions:
2017-05-03T10:46:29.550Z
igw-64924d02
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InternetGateway
AWS::EC2::InternetGateway
@@ -480,6 +510,9 @@ http_interactions:
2017-05-03T10:46:34.869Z
acl-e616ad9f
CREATE_COMPLETE
+
+ NOT_CHECKED
+
NetworkAcl
AWS::EC2::NetworkAcl
@@ -487,6 +520,9 @@ http_interactions:
2017-05-03T10:46:56.226Z
EmsRe-OutBo-1NZIAZJB04JPV
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -494,6 +530,9 @@ http_interactions:
2017-05-03T10:46:56.162Z
EmsRe-OutBo-11CPJOERKOC1S
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPSNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -501,6 +540,9 @@ http_interactions:
2017-05-03T10:46:57.712Z
EmsRe-OutBo-1VCOFXN25WKE2
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -508,6 +550,9 @@ http_interactions:
2017-05-03T10:47:11.450Z
EmsRe-Route-CE90KA6C89YL
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Route
AWS::EC2::Route
@@ -515,6 +560,9 @@ http_interactions:
2017-05-03T10:46:35.945Z
rtb-d37690ab
CREATE_COMPLETE
+
+ NOT_CHECKED
+
RouteTable
AWS::EC2::RouteTable
@@ -522,6 +570,9 @@ http_interactions:
2017-05-03T10:46:51.908Z
subnet-2190b144
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Subnet
AWS::EC2::Subnet
@@ -529,6 +580,9 @@ http_interactions:
2017-05-03T10:47:12.194Z
aclassoc-5960cf29
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetNetworkAclAssociation
AWS::EC2::SubnetNetworkAclAssociation
@@ -536,6 +590,9 @@ http_interactions:
2017-05-03T10:47:11.882Z
rtbassoc-d35ff3a8
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetRouteTableAssociation
AWS::EC2::SubnetRouteTableAssociation
@@ -543,6 +600,9 @@ http_interactions:
2017-05-03T10:46:30.347Z
vpc-8cf117f5
CREATE_COMPLETE
+
+ NOT_CHECKED
+
VPC
AWS::EC2::VPC
@@ -550,17 +610,20 @@ http_interactions:
2017-05-03T10:49:38.256Z
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::CloudFormation::Stack
- e81b39fb-2ff9-11e7-af69-f94eab766ea4
+ dad3890e-b018-11e8-b13f-cbc83acd995e
http_version:
- recorded_at: Wed, 03 May 2017 12:13:24 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:23 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -573,14 +636,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121324Z
+ - 20180904T080223Z
X-Amz-Content-Sha256:
- f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=46de7e6d91f3dcdda5caf888bbdd27d7548dbb4570bccdb5076ca3dc6c876d66
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9fc9bd6ba12b7411098130713b7cae150974ab49b046c5bf294179affdef739f
Content-Length:
- '99'
Accept:
@@ -591,7 +654,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e86f26c6-2ff9-11e7-9364-9f6d0da3defe
+ - db5f4e32-b018-11e8-931d-1523b47f4c7e
Content-Type:
- text/xml
Content-Length:
@@ -599,7 +662,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:25 GMT
+ - Tue, 04 Sep 2018 08:02:23 GMT
body:
encoding: UTF-8
string: "\n
@@ -873,10 +936,10 @@ http_interactions:
"PublicIp"] }]]},\n "Description" : "Newly created
application URL"\n }\n }\n}\n\n\n \n
\ Original\n Processed\n \n
- \ \n \n e86f26c6-2ff9-11e7-9364-9f6d0da3defe\n
+ \ \n \n db5f4e32-b018-11e8-931d-1523b47f4c7e\n
\ \n\n"
http_version:
- recorded_at: Wed, 03 May 2017 12:13:25 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:24 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -889,14 +952,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121325Z
+ - 20180904T080224Z
X-Amz-Content-Sha256:
- e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d71c772b9d8c25ce748118a96fe789679152d75bee374653327af75b5f194fca
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180904/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=973e441dad6fe940bd0dafe5f0347c34357e306a60d6e699ac4b3aa1e081997b
Content-Length:
- '106'
Accept:
@@ -907,13 +970,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - e8daba16-2ff9-11e7-a7ba-bdb34b9efcc2
+ - dc05ef16-b018-11e8-91bb-c335d2bc6566
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '1297'
Date:
- - Wed, 03 May 2017 12:13:25 GMT
+ - Tue, 04 Sep 2018 08:02:24 GMT
body:
encoding: UTF-8
string: |
@@ -924,6 +987,9 @@ http_interactions:
2017-05-03T10:49:32.560Z
34.202.178.10
CREATE_COMPLETE
+
+ NOT_CHECKED
+
IPAddress
AWS::EC2::EIP
@@ -931,15 +997,18 @@ http_interactions:
2017-05-03T10:48:56.988Z
i-0bca58e6e540ddc39
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::EC2::Instance
- e8daba16-2ff9-11e7-a7ba-bdb34b9efcc2
+ dc05ef16-b018-11e8-91bb-c335d2bc6566
http_version:
- recorded_at: Wed, 03 May 2017 12:13:25 GMT
+ recorded_at: Tue, 04 Sep 2018 08:02:25 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested_with_vm.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested_with_vm.yml
index 5be0d12d1..a4130be16 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested_with_vm.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/orchestration_stacks_nested_with_vm.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121327Z
+ - 20180903T144047Z
X-Amz-Content-Sha256:
- 4efa04d6e2aa3ed14177c046b7a33785577a351caac6112ef227925480ccb604
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5f52e2552d773be35f024bfda7a0194cf17d4e891a33e6720e6a735567603909
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1179aece1ae7cfd78a162f737c9d06a1eea1b1fa56d58d70d05e2c894f57548d
Content-Length:
- '106'
Accept:
@@ -31,12 +31,12 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
+ Content-Length:
+ - '7586'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:28 GMT
+ - Mon, 03 Sep 2018 14:40:47 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +44,7 @@ http_interactions:
string: |-
- 16b6f732-c257-44ff-a7b1-140563c1b789
+ cb9c5f19-4236-474e-856d-96af85c4ea35
-
r-0c0e56163429b9a46
@@ -85,6 +85,10 @@ http_interactions:
EmsRefreshSpecStack-InstanceSecurityGroup-QS2FPLKQ8HEF
+
+
+
+
x86_64
ebs
/dev/xvda
@@ -106,6 +110,10 @@ http_interactions:
Application
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
+ -
+ Name
+ EmsRefreshSpecStack
+
-
EmsRefreshSpecStack-key2
EmsRefreshSpecStack-value2
@@ -173,13 +181,17 @@ http_interactions:
false
true
+
+ 1
+ 1
+
http_version:
- recorded_at: Wed, 03 May 2017 12:13:28 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:47 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -192,14 +204,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121329Z
+ - 20180903T144047Z
X-Amz-Content-Sha256:
- 6662a093749a6961b805d03eb8fe7086f90d5cd1c9277473ddf71df855753f99
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2e16382d0f03f5432048e40453e0ac9faff5497161d07acc51657dab742690d1
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b1db7c9a0ee5a358c0696f60b8c5c5c5afc60133ae69a801aee5be0101873e1e
Content-Length:
- '116'
Accept:
@@ -216,7 +228,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:28 GMT
+ - Mon, 03 Sep 2018 14:40:48 GMT
Server:
- AmazonEC2
body:
@@ -224,7 +236,7 @@ http_interactions:
string: |-
- df947d4f-73c7-4467-b487-7e274f9d2f3c
+ 7ea9cae9-1e4b-4c5e-951e-c511db1dad5d
-
eni-8fefae9b
@@ -259,6 +271,7 @@ http_interactions:
200278856672
eipalloc-9a4472ab
eipassoc-13766e23
+ true
@@ -271,15 +284,17 @@ http_interactions:
200278856672
eipalloc-9a4472ab
eipassoc-13766e23
+ true
+ interface
http_version:
- recorded_at: Wed, 03 May 2017 12:13:29 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:48 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -292,14 +307,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121329Z
+ - 20180903T144048Z
X-Amz-Content-Sha256:
- 5dfa72ee56d05dff896933ac98ddeb0ad169e32cab5750853b5b2cea73a864e0
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=73ec2ac862bdde2c1e0a527ab0c816c0251ddd72a91b64a009f67adf42ef52e8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=32c1fed76dacd0e4864b9451bc12f97a537a8474100b79eaa83c3ee71375446f
Content-Length:
- '103'
Accept:
@@ -316,7 +331,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:30 GMT
+ - Mon, 03 Sep 2018 14:40:48 GMT
Server:
- AmazonEC2
body:
@@ -324,7 +339,7 @@ http_interactions:
string: |-
- 8436d280-6cf4-4fe6-b11f-2dfe26e4d068
+ 7f6249da-db9c-49c1-b44a-4cad9b50d5c0
-
us-east-1c
@@ -335,7 +350,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:30 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:49 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -348,14 +363,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121330Z
+ - 20180903T144049Z
X-Amz-Content-Sha256:
- 8b897801bc6737ad27423b50d05f4c5a3cb37aff5adc92042c314bf391679416
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a7c101b6b2959a0071d006662bdd15b3a876442c20cc231fe282c2d8500ce5d1
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b966b2a66b12c13090db55421a8403797e68216994d73cc0777533d14e2bd9b2
Content-Length:
- '105'
Accept:
@@ -367,20 +382,18 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '424'
Date:
- - Wed, 03 May 2017 12:13:30 GMT
+ - Mon, 03 Sep 2018 14:40:48 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- 120f252e-79a6-43ea-bb1e-be24b0009fda
+ 86b9deeb-c784-409e-b960-3fd5f644b5c8
-
EmsRefreshSpec-KeyPair
@@ -389,7 +402,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:30 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:49 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -402,14 +415,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121330Z
+ - 20180903T144049Z
X-Amz-Content-Sha256:
- ee7457b505a85bcdc54c00cc7e1428239c8d49174f88965bdf64f2a7c3baa103
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a56915141b2bbbf005ca06ec769c895528d2a36f7bf75950f79b60ad5ca3178a
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9d2b81922ac7076f5cf17f7f41775b4f9ec54d3a801895fca9ebcda37fd2f53f
Content-Length:
- '173'
Accept:
@@ -420,15 +433,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ec45d18e-2ff9-11e7-8080-cfa0c0b564b2
+ - 5a040aa8-af87-11e8-9cdb-69236bc4bef1
Content-Type:
- text/xml
Content-Length:
- - '2483'
+ - '2703'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:30 GMT
+ - Mon, 03 Sep 2018 14:40:49 GMT
body:
encoding: UTF-8
string: |
@@ -463,6 +476,11 @@ http_interactions:
EmsRefreshSpecStack-key1
+
+
+ NOT_CHECKED
+
+ false
KeyName
@@ -485,11 +503,11 @@ http_interactions:
- ec45d18e-2ff9-11e7-8080-cfa0c0b564b2
+ 5a040aa8-af87-11e8-9cdb-69236bc4bef1
http_version:
- recorded_at: Wed, 03 May 2017 12:13:31 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:50 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -502,14 +520,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121331Z
+ - 20180903T144050Z
X-Amz-Content-Sha256:
- 757f116d419bd4d4b28f0f2066e5d8ebd0130dccf7e5ddc04269a9836899e0bd
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1b1cfa078a074bd2acc5809a32fbb679ddfb201274e04465fcd99b1a607917d9
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4a6c27eb0c419c550c228dd547a15e6ab6ca97fceadd75fdf9cfabae441fb4fd
Content-Length:
- '205'
Accept:
@@ -520,15 +538,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ec963b22-2ff9-11e7-a6a4-e7d7f64d6d4f
+ - 5a514001-af87-11e8-b531-b71a59d88ca6
Content-Type:
- text/xml
Content-Length:
- - '2731'
+ - '3223'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:31 GMT
+ - Mon, 03 Sep 2018 14:40:50 GMT
body:
encoding: UTF-8
string: |
@@ -547,12 +565,14 @@ http_interactions:
CAPABILITY_NAMED_IAM
2017-05-03T10:46:56.780Z
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S
AWS CloudFormation Sample Template VPC_Single_Instance_In_Subnet: 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_COMPLETE
true
+ arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack/b4e06950-2fed-11e7-bd93-500c286374d1
EmsRefreshSpecStack-value2
@@ -563,6 +583,11 @@ http_interactions:
EmsRefreshSpecStack-key1
+
+
+ NOT_CHECKED
+
+ false
KeyName
@@ -593,11 +618,11 @@ http_interactions:
- ec963b22-2ff9-11e7-a6a4-e7d7f64d6d4f
+ 5a514001-af87-11e8-b531-b71a59d88ca6
http_version:
- recorded_at: Wed, 03 May 2017 12:13:32 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:50 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -610,14 +635,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121332Z
+ - 20180903T144050Z
X-Amz-Content-Sha256:
- 4dc6d77a6dbb5ed8a7f7ff3b24280515d1c3b34596643cdface7d23473f3237f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=462896663600a77ec6c1621464ef23154a54fd8b998bf0d45ff8cc7a9504d537
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d8181a1b8d77e0098530f835c1242fd87483d7d08761b7d06813cc82cac436de
Content-Length:
- '67'
Accept:
@@ -628,7 +653,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ece3bf0a-2ff9-11e7-a9c1-99be43ad8433
+ - 5a9f38c5-af87-11e8-842e-2925a6fb6b81
Content-Type:
- text/xml
Content-Length:
@@ -636,7 +661,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:32 GMT
+ - Mon, 03 Sep 2018 14:40:50 GMT
body:
encoding: UTF-8
string: "\n
@@ -775,10 +800,10 @@ http_interactions:
: "IP Address of the host",\n "Value" : { "Ref"
: "WebServerInstance" }\n }\n }\n}\n\n \n
\ Original\n Processed\n \n
- \ \n \n ece3bf0a-2ff9-11e7-a9c1-99be43ad8433\n
+ \ \n \n 5a9f38c5-af87-11e8-842e-2925a6fb6b81\n
\ \n\n"
http_version:
- recorded_at: Wed, 03 May 2017 12:13:32 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:51 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -791,14 +816,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121332Z
+ - 20180903T144051Z
X-Amz-Content-Sha256:
- 5129d3e8ebb78afbee802141b221fa01c75c48ea0420549a3a199f5af6b9849c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=360deadb3bb8877a35176156d41a579312e946e56023d90fd9b9e3f8d2cbd6ed
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d19c98b46aabbdcd6092b182c7ebf74e52a33fcee5b239cc0094f9f38f1e443b
Content-Length:
- '74'
Accept:
@@ -809,15 +834,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ed3931db-2ff9-11e7-955f-4d618389ddeb
+ - 5b567b5b-af87-11e8-b13f-cbc83acd995e
Content-Type:
- text/xml
Content-Length:
- - '6667'
+ - '8877'
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:33 GMT
+ - Mon, 03 Sep 2018 14:40:51 GMT
body:
encoding: UTF-8
string: |
@@ -828,6 +853,9 @@ http_interactions:
2017-05-03T10:46:51.634Z
EmsRe-Attac-18IYH2NXW163I
CREATE_COMPLETE
+
+ NOT_CHECKED
+
AttachGateway
AWS::EC2::VPCGatewayAttachment
@@ -835,6 +863,9 @@ http_interactions:
2017-05-03T10:46:59.572Z
EmsRe-Inbou-1M80E3XJX5ZG6
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -842,6 +873,9 @@ http_interactions:
2017-05-03T10:46:56.467Z
EmsRe-Inbou-E8UR0I5STC4V
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -849,6 +883,9 @@ http_interactions:
2017-05-03T10:46:55.099Z
EmsRe-Inbou-1E29UZ91J3L0R
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InboundSSHNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -856,6 +893,9 @@ http_interactions:
2017-05-03T10:46:51.481Z
sg-76c10f08
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InstanceSecurityGroup
AWS::EC2::SecurityGroup
@@ -863,6 +903,9 @@ http_interactions:
2017-05-03T10:46:29.550Z
igw-64924d02
CREATE_COMPLETE
+
+ NOT_CHECKED
+
InternetGateway
AWS::EC2::InternetGateway
@@ -870,6 +913,9 @@ http_interactions:
2017-05-03T10:46:34.869Z
acl-e616ad9f
CREATE_COMPLETE
+
+ NOT_CHECKED
+
NetworkAcl
AWS::EC2::NetworkAcl
@@ -877,6 +923,9 @@ http_interactions:
2017-05-03T10:46:56.226Z
EmsRe-OutBo-1NZIAZJB04JPV
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -884,6 +933,9 @@ http_interactions:
2017-05-03T10:46:56.162Z
EmsRe-OutBo-11CPJOERKOC1S
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundHTTPSNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -891,6 +943,9 @@ http_interactions:
2017-05-03T10:46:57.712Z
EmsRe-OutBo-1VCOFXN25WKE2
CREATE_COMPLETE
+
+ NOT_CHECKED
+
OutBoundResponsePortsNetworkAclEntry
AWS::EC2::NetworkAclEntry
@@ -898,6 +953,9 @@ http_interactions:
2017-05-03T10:47:11.450Z
EmsRe-Route-CE90KA6C89YL
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Route
AWS::EC2::Route
@@ -905,6 +963,9 @@ http_interactions:
2017-05-03T10:46:35.945Z
rtb-d37690ab
CREATE_COMPLETE
+
+ NOT_CHECKED
+
RouteTable
AWS::EC2::RouteTable
@@ -912,6 +973,9 @@ http_interactions:
2017-05-03T10:46:51.908Z
subnet-2190b144
CREATE_COMPLETE
+
+ NOT_CHECKED
+
Subnet
AWS::EC2::Subnet
@@ -919,6 +983,9 @@ http_interactions:
2017-05-03T10:47:12.194Z
aclassoc-5960cf29
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetNetworkAclAssociation
AWS::EC2::SubnetNetworkAclAssociation
@@ -926,6 +993,9 @@ http_interactions:
2017-05-03T10:47:11.882Z
rtbassoc-d35ff3a8
CREATE_COMPLETE
+
+ NOT_CHECKED
+
SubnetRouteTableAssociation
AWS::EC2::SubnetRouteTableAssociation
@@ -933,6 +1003,9 @@ http_interactions:
2017-05-03T10:46:30.347Z
vpc-8cf117f5
CREATE_COMPLETE
+
+ NOT_CHECKED
+
VPC
AWS::EC2::VPC
@@ -940,17 +1013,20 @@ http_interactions:
2017-05-03T10:49:38.256Z
arn:aws:cloudformation:us-east-1:200278856672:stack/EmsRefreshSpecStack-WebServerInstance-1CTHQS2P5WJ7S/d3bb46b0-2fed-11e7-a3d9-503f23fb55fe
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::CloudFormation::Stack
- ed3931db-2ff9-11e7-955f-4d618389ddeb
+ 5b567b5b-af87-11e8-b13f-cbc83acd995e
http_version:
- recorded_at: Wed, 03 May 2017 12:13:33 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:52 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -963,14 +1039,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121333Z
+ - 20180903T144052Z
X-Amz-Content-Sha256:
- f005060b494874c71d174f59905bab23a022e5b3da296b5735783b2d2b59db30
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=d4c1cccf6e1ae020795084eb4bc5acbd74d8a0b7884493ca322aa10a5c213d5d
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9c25c2a5637177ba28af3aaf7baf4466fb1222c8bfdb4d087bb878f7c51c2a5a
Content-Length:
- '99'
Accept:
@@ -981,7 +1057,7 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ed8b9721-2ff9-11e7-840d-21a8fdf55692
+ - 5ba92f1d-af87-11e8-87ad-afa8a3af4a81
Content-Type:
- text/xml
Content-Length:
@@ -989,7 +1065,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:33 GMT
+ - Mon, 03 Sep 2018 14:40:52 GMT
body:
encoding: UTF-8
string: "\n
@@ -1263,10 +1339,10 @@ http_interactions:
"PublicIp"] }]]},\n "Description" : "Newly created
application URL"\n }\n }\n}\n\n\n \n
\ Original\n Processed\n \n
- \ \n \n ed8b9721-2ff9-11e7-840d-21a8fdf55692\n
+ \ \n \n 5ba92f1d-af87-11e8-87ad-afa8a3af4a81\n
\ \n\n"
http_version:
- recorded_at: Wed, 03 May 2017 12:13:33 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:53 GMT
- request:
method: post
uri: https://cloudformation.us-east-1.amazonaws.com/
@@ -1279,14 +1355,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121333Z
+ - 20180903T144053Z
X-Amz-Content-Sha256:
- e1551a75591c27367c42f68080eafefed1acf68b0640eb3eb946c2c3d1007a07
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ac7d75543d1870f60d843573be419bb1c605808d8bd90e88c73eac36d0a60569
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f421a34cebd074ddea889fff28e76741ff3235cf0b7e8813bd5bc5fe1a688aa9
Content-Length:
- '106'
Accept:
@@ -1297,13 +1373,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - edf04cc2-2ff9-11e7-a7ba-bdb34b9efcc2
+ - 5c6e05ee-af87-11e8-87ad-afa8a3af4a81
Content-Type:
- text/xml
Content-Length:
- - '1037'
+ - '1297'
Date:
- - Wed, 03 May 2017 12:13:34 GMT
+ - Mon, 03 Sep 2018 14:40:53 GMT
body:
encoding: UTF-8
string: |
@@ -1314,6 +1390,9 @@ http_interactions:
2017-05-03T10:49:32.560Z
34.202.178.10
CREATE_COMPLETE
+
+ NOT_CHECKED
+
IPAddress
AWS::EC2::EIP
@@ -1321,17 +1400,20 @@ http_interactions:
2017-05-03T10:48:56.988Z
i-0bca58e6e540ddc39
CREATE_COMPLETE
+
+ NOT_CHECKED
+
WebServerInstance
AWS::EC2::Instance
- edf04cc2-2ff9-11e7-a7ba-bdb34b9efcc2
+ 5c6e05ee-af87-11e8-87ad-afa8a3af4a81
http_version:
- recorded_at: Wed, 03 May 2017 12:13:34 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:54 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1344,14 +1426,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121334Z
+ - 20180903T144054Z
X-Amz-Content-Sha256:
- 49411f40ac5616adf21a1c49fadea20c70150dab6cafc82b472b0564dfcd060a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a97a36bad8b195b3de57a159ab092dbab149d1e17a69d594c6a021245c8f9e45
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=797ec36467eb3c368c1859018c47b9b51d91fe7616df9d40acf8e2bcf4f6e408
Content-Length:
- '93'
Accept:
@@ -1363,12 +1445,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1696'
Date:
- - Wed, 03 May 2017 12:13:35 GMT
+ - Mon, 03 Sep 2018 14:40:54 GMT
Server:
- AmazonEC2
body:
@@ -1376,7 +1456,7 @@ http_interactions:
string: |-
- 10a541ea-df2c-4ea1-9450-457112352b78
+ f05d652b-2f01-4579-8214-86e88170f51f
-
ami-6869aa05
@@ -1412,7 +1492,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:35 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:55 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1425,14 +1505,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121335Z
+ - 20180903T144055Z
X-Amz-Content-Sha256:
- d83921c68b92f6354eaa5855e8e375b295cbdc6b2f77e711009e0401c7bbdc99
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=10eb133c5d3d36c368c2959da8defe74a81213d842310fcf643ba68684ccb127
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c1fd199e1ceb7ab458153bd3635cef5e58dcc83f6b24b29a2b8ba0d413985999
Content-Length:
- '89'
Accept:
@@ -1449,7 +1529,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:35 GMT
+ - Mon, 03 Sep 2018 14:40:55 GMT
Server:
- AmazonEC2
body:
@@ -1457,12 +1537,21 @@ http_interactions:
string: |-
- be3bbbca-f603-4112-ad61-ecb4b5fbd9f1
+ 99de0b44-4a38-4103-ae59-2641e0583bab
-
vpc-8cf117f5
available
10.2.0.0/16
+
+
-
+ 10.2.0.0/16
+ vpc-cidr-assoc-6dbdaa05
+
+ associated
+
+
+
dopt-f24ff99c
-
@@ -1496,7 +1585,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:35 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:56 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1509,14 +1598,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121335Z
+ - 20180903T144056Z
X-Amz-Content-Sha256:
- 30b50976f2a2392877af56a0806ed2c738f82272ff3b7a3538804ec45b3062d2
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1587ac0321427b1868e0172f7d1d59945b57ab24b1514efd80fe63c0633f47e8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=267b8b85b6b55f41680cd405eb9e72bfb9c761fe9121c94ef36a7a61202b5be4
Content-Length:
- '98'
Accept:
@@ -1533,7 +1622,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:36 GMT
+ - Mon, 03 Sep 2018 14:40:56 GMT
Server:
- AmazonEC2
body:
@@ -1541,7 +1630,7 @@ http_interactions:
string: |-
- c4eb33ce-75d3-4fc5-9111-cecdacc56217
+ 2587fbe6-cdfe-4323-8d22-f0d43e2ae6d8
-
subnet-2190b144
@@ -1549,7 +1638,7 @@ http_interactions:
vpc-8cf117f5
10.2.0.0/24
- 250
+ 249
us-east-1c
false
false
@@ -1584,7 +1673,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:36 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:56 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1597,14 +1686,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121336Z
+ - 20180903T144056Z
X-Amz-Content-Sha256:
- 762684248aa154b53e9793adb594ba138abf5f62e27e94560e6e4bfaa492a511
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=572b44f707fe15721400c1f442087a7fea6a090c20128d2e176250a95c6b4fc3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=91db574da5623e47700ad42309c664964d12337c9affee84d2f73b01b754bc91
Content-Length:
- '100'
Accept:
@@ -1621,7 +1710,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:36 GMT
+ - Mon, 03 Sep 2018 14:40:56 GMT
Server:
- AmazonEC2
body:
@@ -1629,7 +1718,7 @@ http_interactions:
string: |-
- b2d48b6a-b6ab-454b-a33b-cf94e4c0f535
+ 2d9e398d-6fe0-4d03-ac6f-748a01bc3424
-
200278856672
@@ -1704,7 +1793,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:36 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:57 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1717,14 +1806,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121336Z
+ - 20180903T144057Z
X-Amz-Content-Sha256:
- 221864a389b351f654f1fcc20f3f5102ef53dec1a9a58c912d80615ad8df829d
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a5fd7eb1a7a9187f3e11b88c4821bd4e4052762a0070a41cefa33930af7150f5
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9de685a0c8e32aecf9e031278eefd89b37e415bc4583bc3bbddc2b2a8f572a05
Content-Length:
- '106'
Accept:
@@ -1741,7 +1830,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:37 GMT
+ - Mon, 03 Sep 2018 14:40:57 GMT
Server:
- AmazonEC2
body:
@@ -1749,7 +1838,7 @@ http_interactions:
string: |-
- 524466f4-e1ca-4d10-b0c4-92e132ccae7f
+ e4cd826c-a135-4e83-86b0-dedc0eea00a8
-
34.202.178.10
@@ -1764,7 +1853,7 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:37 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:57 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1777,14 +1866,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.8.14 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170503T121337Z
+ - 20180903T144057Z
X-Amz-Content-Sha256:
- cf241b29f183a60d0fc138fb38118908f6aff6b0a278f322fe3e315c9d1207c2
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170503/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f100dd4332dd208cae649053f6299896793d748396099ec61c950b229379d403
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=48885296ec7dd2e11dcab35b7458f709ff789bfec75c005448aa7b9fb0941c4d
Content-Length:
- '104'
Accept:
@@ -1801,7 +1890,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Wed, 03 May 2017 12:13:37 GMT
+ - Mon, 03 Sep 2018 14:40:57 GMT
Server:
- AmazonEC2
body:
@@ -1809,7 +1898,7 @@ http_interactions:
string: |-
- 5ebd6f0e-bfa2-4cfc-acb3-a625f873f321
+ ba821e10-25eb-428c-bf0e-296e8f9f997b
-
vol-0628a6ce987d4cb6e
@@ -1835,5 +1924,5 @@ http_interactions:
http_version:
- recorded_at: Wed, 03 May 2017 12:13:38 GMT
+ recorded_at: Mon, 03 Sep 2018 14:40:58 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/vpc_vm_with_floating_ip_and_lbs_full_refresh.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/vpc_vm_with_floating_ip_and_lbs_full_refresh.yml
index 6e0054d6c..883f5df5c 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/vpc_vm_with_floating_ip_and_lbs_full_refresh.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_targeted/vpc_vm_with_floating_ip_and_lbs_full_refresh.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081743Z
+ - 20180903T143118Z
X-Amz-Content-Sha256:
- e2d9b669aae6b51a63d67b20b361e9a0781d8847cf0d067825b00eba56c38a11
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=53a0eda875ab0535e660c906a44deaa93dbc4f4719ec2190806fa4acf99e535e
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a200d1b862766c1e5378126fcad509f0405b1db31cfe5719ed4fc8e55b8746f6
Content-Length:
- '97'
Accept:
@@ -31,12 +31,12 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
+ Content-Length:
+ - '6936'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:38 GMT
+ - Mon, 03 Sep 2018 14:31:18 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +44,7 @@ http_interactions:
string: |-
- 1da40019-10c4-4d35-8b4e-41dfb555f9ae
+ 47970f8c-1e42-40cb-901a-d150b656a6f8
-
r-1842f370
@@ -171,13 +171,17 @@ http_interactions:
false
+
+ 1
+ 1
+
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:45 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:18 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -190,14 +194,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081745Z
+ - 20180903T143118Z
X-Amz-Content-Sha256:
- 05fbd66d553750cf914304302a483c6ecc8fc8ce4b32360b7c6b78c3c0dd257b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4145dcf4c032a9eb8683cc8389c635f577251af0104df5f42c3e771c4e6f370f
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=a68201bc161a57578393b8f65bb89afdbce4b827b07eda85a0bfeae30be1afaa
Content-Length:
- '116'
Accept:
@@ -214,7 +218,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:40 GMT
+ - Mon, 03 Sep 2018 14:31:19 GMT
Server:
- AmazonEC2
body:
@@ -222,7 +226,7 @@ http_interactions:
string: |-
- ad17c841-720b-4de7-9f2c-8cb02211c0f9
+ 80472fc8-ff52-4a80-967b-cc45355083cc
-
eni-ad25f7cc
@@ -285,7 +289,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:46 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:19 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -298,14 +302,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081746Z
+ - 20180903T143119Z
X-Amz-Content-Sha256:
- 3687d6dd1f231b3240bd52e8c7cf959c498b8b7312ba6b8a4e9c1e83e973d0b5
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2e743145d01ed11b5bb412d7ded7106c876af037dc884005778b60b87b280419
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=86bd76629b520712cb9dae31b3853fc52866d169c7fd756f21da9ddd5224b948
Content-Length:
- '103'
Accept:
@@ -322,7 +326,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:42 GMT
+ - Mon, 03 Sep 2018 14:31:20 GMT
Server:
- AmazonEC2
body:
@@ -330,7 +334,7 @@ http_interactions:
string: |-
- 1cf47a1e-fa83-4bc2-9f7b-feff4cd3e7e8
+ 661fe515-e046-416f-be00-0e0c4958d36a
-
us-east-1e
@@ -341,7 +345,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:47 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:20 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -354,14 +358,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081747Z
+ - 20180903T143120Z
X-Amz-Content-Sha256:
- 8b897801bc6737ad27423b50d05f4c5a3cb37aff5adc92042c314bf391679416
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bcf1e3417f73efc3db79ccf6e448ddd5a431d7e7e04232057230f8c8e99e6db1
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ea5e56df6e3855d9fe8c9ae82bac5128055c7fa48168646d38c04ee727ca9266
Content-Length:
- '105'
Accept:
@@ -373,20 +377,18 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '424'
Date:
- - Tue, 26 Sep 2017 08:17:42 GMT
+ - Mon, 03 Sep 2018 14:31:20 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- 1601278e-1854-4438-aaa5-4df70df6c703
+ 95f46aa7-3b17-4d73-ba78-837a693b9ddd
-
EmsRefreshSpec-KeyPair
@@ -395,7 +397,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:49 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:20 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -408,14 +410,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081749Z
+ - 20180903T143120Z
X-Amz-Content-Sha256:
- 59ebf96e9619012c1913bd7ad295db16925f7ce6f757deea0097185f78822898
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=2e5664f58155a012ca21f94724094d9192c223377eb38d76e7100858006ac6ba
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=9ee13bef8962606e2384c2469fd0e570de140cef01897bd809bb9be9599d0a63
Content-Length:
- '93'
Accept:
@@ -427,12 +429,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1720'
Date:
- - Tue, 26 Sep 2017 08:17:43 GMT
+ - Mon, 03 Sep 2018 14:31:21 GMT
Server:
- AmazonEC2
body:
@@ -440,7 +440,7 @@ http_interactions:
string: |-
- 8ddeccf0-87a7-4b06-be83-0d351a39be6e
+ e36f2273-3c28-4c63-8b84-5286b0055d0e
-
ami-5769193e
@@ -469,12 +469,18 @@ http_interactions:
paravirtual
+
+ -
+ Name
+
+
+
xen
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:50 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:22 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -487,14 +493,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081750Z
+ - 20180903T143122Z
X-Amz-Content-Sha256:
- c4845e8b461f14be4b886767ca0310a99c2f2a0a26fe026926e9bc17f4f79be7
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=1a0b655b67489977fa32c0dbde9a8bde0d06bdbe3fc54d98f88be9ee7334273b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=83d05b792a589bd0bdb833f578f4cea900cf9b4aff63c9f8706f9714378e5feb
Content-Length:
- '89'
Accept:
@@ -511,7 +517,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:44 GMT
+ - Mon, 03 Sep 2018 14:31:22 GMT
Server:
- AmazonEC2
body:
@@ -519,7 +525,7 @@ http_interactions:
string: |-
- 01cd4108-55ad-41f9-89f3-6c49ea13afc5
+ 95f52eb4-5f14-425d-894f-dacc2b00bb6c
-
vpc-ff49ff91
@@ -547,7 +553,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:51 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:22 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -560,14 +566,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081751Z
+ - 20180903T143122Z
X-Amz-Content-Sha256:
- 665a0a620bb43c6e0ff2e3a10d7af509aa161bd637a25c8edb365d505947be5b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=0eeb710551a5b888acd9c0ab6177018deeea91e3ddab4f07d16b6fa716d70f8d
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=41afd5fa843406ca97a896b8608cb77d7c1d4950d170a61627a91449be55fb0b
Content-Length:
- '98'
Accept:
@@ -584,7 +590,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:46 GMT
+ - Mon, 03 Sep 2018 14:31:22 GMT
Server:
- AmazonEC2
body:
@@ -592,7 +598,7 @@ http_interactions:
string: |-
- 3462b328-f523-4a13-8042-210fdc8b241f
+ 02745843-e8f1-4021-9844-717ba2a05436
-
subnet-f849ff96
@@ -600,7 +606,7 @@ http_interactions:
vpc-ff49ff91
10.0.0.0/24
- 237
+ 241
us-east-1e
false
true
@@ -615,7 +621,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:52 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:23 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -628,14 +634,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081752Z
+ - 20180903T143123Z
X-Amz-Content-Sha256:
- 0556b7007cebc8027a9ce2b5915968f2b1c7c6ffe1a378f347ce5af51819c62b
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=51b5c03b5c3f6f4433cab037a8eefcc70a924eab9112f585a154239803a2d60b
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f44d40fd865690fcb3adb15bf32c2b7999edcc7216ebf8a095909d3850ecfe1e
Content-Length:
- '100'
Accept:
@@ -652,7 +658,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:47 GMT
+ - Mon, 03 Sep 2018 14:31:22 GMT
Server:
- AmazonEC2
body:
@@ -660,7 +666,7 @@ http_interactions:
string: |-
- b8b0c45e-da3d-4d9d-9a2b-67a84b7741b5
+ 1d1d20fd-65f2-4a56-9b3e-99a80ec7ced2
-
200278856672
@@ -713,7 +719,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:53 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:23 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -726,14 +732,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081753Z
+ - 20180903T143123Z
X-Amz-Content-Sha256:
- 82480686120cee6598fb446a90f52388d87e930c9f7c5c1a597f4854ca394d9e
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=5e4a3c18f7bcea7270e4eaa2afda6bc338c4851f4bbeddc750a5e70005fb2ab9
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=f36b726e9aee32b5436d89d98312795375b93d95646ff3fb04d04ea21cc9c156
Content-Length:
- '95'
Accept:
@@ -744,15 +750,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 2ec3dee7-a293-11e7-8b63-3598ae80b5e5
+ - '08c75684-af86-11e8-a0bf-21925e51bf05'
Content-Type:
- text/xml
Content-Length:
- - '2740'
+ - '2653'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:48 GMT
+ - Mon, 03 Sep 2018 14:31:24 GMT
body:
encoding: UTF-8
string: |
@@ -760,16 +766,13 @@ http_interactions:
- vpc-ff49ff91
Z35SXDOTRQ7X7K
+ vpc-ff49ff91
internet-facing
i-8b5739f2
-
- i-fb694e66
-
@@ -786,7 +789,6 @@ http_interactions:
200278856672
EmsRefreshSpec-SecurityGroup-VPC
- EmSRefreshSpecVPCELB
@@ -807,6 +809,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB
2
30
@@ -815,23 +818,23 @@ http_interactions:
HTTP:80/index.html
2016-08-09T08:16:14.340Z
+
+ sg-80f755ef
+
subnet-16c70477
subnet-f849ff96
-
- sg-80f755ef
-
EmSRefreshSpecVPCELB-546141344.us-east-1.elb.amazonaws.com
- 2ec3dee7-a293-11e7-8b63-3598ae80b5e5
+ 08c75684-af86-11e8-a0bf-21925e51bf05
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:54 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:24 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -844,14 +847,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081754Z
+ - 20180903T143124Z
X-Amz-Content-Sha256:
- bc9f1ae08133e40a9bd638f1287b9ebcec1bbba671f92b326ab237b0f11f1b19
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=64f2b93755460c0c682764fd72d413362599321ce32217e962d4ea5f411c9bd8
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=b46e8dfad598a154931dadf33b5ce50f644d8c06683c857908cefc5a47bcf545
Content-Length:
- '96'
Accept:
@@ -862,15 +865,15 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 2f8a149d-a293-11e7-8a07-2fb4aebcef34
+ - '0917c057-af86-11e8-a9bf-559519f41ce3'
Content-Type:
- text/xml
Content-Length:
- - '2408'
+ - '2321'
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:50 GMT
+ - Mon, 03 Sep 2018 14:31:24 GMT
body:
encoding: UTF-8
string: |
@@ -882,9 +885,6 @@ http_interactions:
vpc-ff49ff91
internet-facing
-
- i-fb694e66
-
i-8b5739f2
@@ -904,7 +904,6 @@ http_interactions:
200278856672
quick-create-1
- EmSRefreshSpecVPCELB2
@@ -916,6 +915,7 @@ http_interactions:
+ EmSRefreshSpecVPCELB2
2
30
@@ -924,23 +924,23 @@ http_interactions:
TCP:22
2016-08-10T14:17:09.810Z
+
+ sg-0d2cd677
+
subnet-16c70477
subnet-f849ff96
-
- sg-0d2cd677
-
EmSRefreshSpecVPCELB2-1206960929.us-east-1.elb.amazonaws.com
- 2f8a149d-a293-11e7-8a07-2fb4aebcef34
+ 0917c057-af86-11e8-a9bf-559519f41ce3
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:56 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:24 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -953,14 +953,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081756Z
+ - 20180903T143124Z
X-Amz-Content-Sha256:
- e3ca7eaa1d39176b50c00e34e89f3aaf68b84ce556b8e5b1d9242affcccfd5d4
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ee11bde5c6b0a432fc074538f917e9cf273c20d289867eb0639739f0300c2684
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=8cb654157c50672b91315d4dac9771ef72f48b6a177e1598f25f5ecd45a8d629
Content-Length:
- '86'
Accept:
@@ -971,13 +971,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 304d3e24-a293-11e7-8b0d-dd5be733f033
+ - '0963213b-af86-11e8-b180-615643315a99'
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '629'
Date:
- - Tue, 26 Sep 2017 08:17:50 GMT
+ - Mon, 03 Sep 2018 14:31:25 GMT
body:
encoding: UTF-8
string: |
@@ -990,20 +990,14 @@ http_interactions:
OutOfService
Instance
-
- Instance has failed at least the UnhealthyThreshold number of health checks consecutively.
- i-fb694e66
- OutOfService
- Instance
-
- 304d3e24-a293-11e7-8b0d-dd5be733f033
+ 0963213b-af86-11e8-b180-615643315a99
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:57 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:25 GMT
- request:
method: post
uri: https://elasticloadbalancing.us-east-1.amazonaws.com/
@@ -1016,14 +1010,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081757Z
+ - 20180903T143125Z
X-Amz-Content-Sha256:
- 906dd8e8fc282f77d697b9b88544cfc4963e06d223e5d72254f984144f015d1f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/elasticloadbalancing/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=befee2755dc401dc3caddc4e35d5b1ae35a385f39dbb8ebf98362ce1e9c4b3be
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/elasticloadbalancing/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e3fed949ee3a828b2a5962bcce31bfea35fee410213ac37172c765905bc6024f
Content-Length:
- '87'
Accept:
@@ -1034,39 +1028,33 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - 30cca686-a293-11e7-b2ae-b760f813fec5
+ - '09b07dbf-af86-11e8-a0bf-21925e51bf05'
Content-Type:
- text/xml
Content-Length:
- - '908'
+ - '629'
Date:
- - Tue, 26 Sep 2017 08:17:51 GMT
+ - Mon, 03 Sep 2018 14:31:25 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
+ Instance
- 30cca686-a293-11e7-b2ae-b760f813fec5
+ 09b07dbf-af86-11e8-a0bf-21925e51bf05
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:57 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:25 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1079,14 +1067,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081757Z
+ - 20180903T143125Z
X-Amz-Content-Sha256:
- 797240de400141eaa48134a4a0ed7234fe1a1d39db5e13945c4e0e0f4973642a
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=99658539430413cb61b874c23ecccfeac977ca13d3a6f5e8dc5eaca9a3703fc3
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3673621d69fa2b1961ced027b42b65f2fc91e9569cabe55ddc2a510f510d2e09
Content-Length:
- '106'
Accept:
@@ -1103,7 +1091,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:52 GMT
+ - Mon, 03 Sep 2018 14:31:26 GMT
Server:
- AmazonEC2
body:
@@ -1111,7 +1099,7 @@ http_interactions:
string: |-
- cba038fa-9dad-4a73-912f-dcd8476f238f
+ aa9be73a-a2ad-477f-941b-baba5540c3c6
-
54.208.119.197
@@ -1126,7 +1114,7 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:58 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:26 GMT
- request:
method: post
uri: https://ec2.us-east-1.amazonaws.com/
@@ -1139,14 +1127,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.0 x86_64-linux resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20170926T081758Z
+ - 20180903T143126Z
X-Amz-Content-Sha256:
- 8d9086926a91406caa02f92d002a2afe08a08a46fcc1b894e9c137a0dda0547d
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20170926/us-east-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=c20d91ad6bfbd1bcd04a892b8567946f1a6f49348b057af9a9721f41959693ba
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180903/us-east-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=75eb03129fdffbbbccd08e262e9dc5c8ad51a930058a96cf3958fa7e188ca98e
Content-Length:
- '134'
Accept:
@@ -1163,7 +1151,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Tue, 26 Sep 2017 08:17:53 GMT
+ - Mon, 03 Sep 2018 14:31:27 GMT
Server:
- AmazonEC2
body:
@@ -1171,7 +1159,7 @@ http_interactions:
string: |-
- b272a11e-1221-47cd-90f3-610a92ff4783
+ 7b1689cf-1bb9-4575-aa45-0deb4684a8ab
-
vol-67606d2d
@@ -1229,5 +1217,5 @@ http_interactions:
http_version:
- recorded_at: Tue, 26 Sep 2017 08:17:59 GMT
+ recorded_at: Mon, 03 Sep 2018 14:31:27 GMT
recorded_with: VCR 3.0.3
diff --git a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_vm_reconnect.yml b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_vm_reconnect.yml
index 7f845f644..0b8d3f8db 100644
--- a/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_vm_reconnect.yml
+++ b/spec/vcr_cassettes/manageiq/providers/amazon/cloud_manager/refresher_vm_reconnect.yml
@@ -12,14 +12,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190501Z
+ - 20180828T140620Z
X-Amz-Content-Sha256:
- 2bd59c58bf8c2bcc1c39ea3a5a38bb7cd5a643758cbd1b78a746d3a3aa5c1580
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=bb9c7dc79fad70a9c8361fcd014cb38876a2496e2aeceaa6d4c6bda4a379e63c
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=56cf432ede5f94602be3b05b080e111f62b1b57d9e3f4427eda7de46f0c7a735
Content-Length:
- '51'
Accept:
@@ -31,12 +31,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '876'
Date:
- - Thu, 01 Feb 2018 19:05:01 GMT
+ - Tue, 28 Aug 2018 14:06:15 GMT
Server:
- AmazonEC2
body:
@@ -44,7 +42,7 @@ http_interactions:
string: |-
- 9e747d2f-a8df-4201-8bb3-360fe58d70a5
+ 74af9614-a731-45de-86c0-ad951b8e8ccc
-
eu-central-1a
@@ -66,8 +64,8 @@ http_interactions:
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:20 GMT
- request:
method: post
uri: https://ec2.eu-central-1.amazonaws.com/
@@ -80,14 +78,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140621Z
X-Amz-Content-Sha256:
- e7326d4766918579e6d040a9c8d2243cefc0ab1aaa37cd7a9dab76d8c3538b59
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=72a7d070b2e9426a6c10164b90c06ba8d72fbfa0f6797377a36cfc1e9f62db7a
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=aa7b8e6cf67f3e2082ebfb028db3a0f74f641f69539ba8b5757cb90ed26a9745
Content-Length:
- '42'
Accept:
@@ -99,20 +97,18 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '586'
Date:
- - Thu, 01 Feb 2018 19:05:01 GMT
+ - Tue, 28 Aug 2018 14:06:15 GMT
Server:
- AmazonEC2
body:
encoding: UTF-8
- string: |-
+ string: |
- c2182802-0954-4576-adc3-6c8511aaca10
+ 4151063c-5676-48a1-91be-dae50f32f16e
-
azagayno
@@ -124,8 +120,8 @@ http_interactions:
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:21 GMT
- request:
method: post
uri: https://cloudformation.eu-central-1.amazonaws.com/
@@ -138,14 +134,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140621Z
X-Amz-Content-Sha256:
- 1c0d327d16f37b15838ca07a3964664f2dcff8d7051d9f1d87552e7df79be01f
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/cloudformation/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6c0d1d5df046c66cb1474e79eb395d2795e81fe88ea3d299f156861d1b1a54b4
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/cloudformation/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=3a580db94e825aaa52dabfa50896e124583c1de3c2224808af491ff8e27684ea
Content-Length:
- '40'
Accept:
@@ -156,13 +152,13 @@ http_interactions:
message: OK
headers:
X-Amzn-Requestid:
- - ce56d48a-0782-11e8-aa97-3947ed6aaf0c
+ - 87c1d45f-aacb-11e8-9910-2f990e37d6f1
Content-Type:
- text/xml
Content-Length:
- '283'
Date:
- - Thu, 01 Feb 2018 19:05:01 GMT
+ - Tue, 28 Aug 2018 14:06:16 GMT
body:
encoding: UTF-8
string: |
@@ -171,11 +167,11 @@ http_interactions:
- ce56d48a-0782-11e8-aa97-3947ed6aaf0c
+ 87c1d45f-aacb-11e8-9910-2f990e37d6f1
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:21 GMT
- request:
method: post
uri: https://ec2.eu-central-1.amazonaws.com/
@@ -188,14 +184,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140621Z
X-Amz-Content-Sha256:
- 353f42a6b4f35502116ce0f2e997ba13b57b156b7a2d476afc85d222902f4415
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=450c78a330ab21ca5767f58410e200b7186b0335ea2a259bf40389bce19c2c63
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=64a8bc32849bb5f2878779751f03aac3fa8be6eaaa10a9c7ea5143a01ceb9d0a
Content-Length:
- '103'
Accept:
@@ -207,12 +203,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '219'
Date:
- - Thu, 01 Feb 2018 19:05:01 GMT
+ - Tue, 28 Aug 2018 14:06:16 GMT
Server:
- AmazonEC2
body:
@@ -220,11 +214,11 @@ http_interactions:
string: |-
- 5fd0b072-3ea8-49c3-b1f3-867edcb389b0
+ 523012a8-d51f-447a-8095-163463fef10e
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:22 GMT
- request:
method: post
uri: https://ec2.eu-central-1.amazonaws.com/
@@ -237,14 +231,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140622Z
X-Amz-Content-Sha256:
- 13559d63912d4017a9523f9e8bda64c2a6870c83adb807d3bccff29a4065cdfc
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=e8acecbe1795cb9b4caf720853f41eba297fbec91e3b37f765933554734b882d
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=ef03dfee9360078560e3b47dc2afc70fbc9eb6eb1ca3aab6f9248587c60f2d3f
Content-Length:
- '110'
Accept:
@@ -261,7 +255,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Thu, 01 Feb 2018 19:05:02 GMT
+ - Tue, 28 Aug 2018 14:06:18 GMT
Server:
- AmazonEC2
body:
@@ -269,34 +263,2825 @@ http_interactions:
string: |-
- b601a64f-a722-4e4c-bd7f-a10720cdb50c
+ 209e3616-3d4e-4ec0-89a2-c2cb8483ce64
-
- ami-40dc532f
- aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ ami-00859d26dc671201b
+ 309956199498/RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-16T18:50:01.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.6_HVM_BETA-20180814-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-011f152658b157a52
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-043f926b
+ 309956199498/RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-07-24T15:53:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170724-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-02de37e1371b488e3
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-04ecda19
+ 309956199498/RHEL-5.7_GA-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T17:57:09.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.7_GA-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-174d0992
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-064ede69
+ 309956199498/RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:34:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180103-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-050b085f5b73d9eaa
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-07d3f0705bebac978
+ 309956199498/RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-15T15:58:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180813-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0287e0473efe861a3
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-0a4636971b3b327f7
+ 309956199498/RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ available
+ 309956199498
+ 2018-08-10T21:02:05.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180810-x86_64-0-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0a97b7e8e151940b1
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-0a8ebf17
+ 309956199498/RHEL-6.5_GA_HVM-20141214-x86_64-7-Access2-GP2
+ available
+ 309956199498
+ 2014-12-14T02:32:50.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_GA_HVM-20141214-x86_64-7-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-214706a4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-132aa67c
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-11-29T19:26:42.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0977bde01225f2b45
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-168ebf0b
+ 309956199498/RHEL-6.4_GA_HVM-20141214-x86_64-10-Access2-GP2
+ available
+ 309956199498
+ 2014-12-14T02:25:34.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_GA_HVM-20141214-x86_64-10-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b2400137
+ 6
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-16f0c30b
+ 309956199498/RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-29T16:12:24.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20150128-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-268a82a3
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-1a041676
+ 309956199498/Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-11-17T16:54:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ Atomic-7.2_HVM_GA-20151112-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ca6320c0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-1b66aa74
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-17T19:56:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20170113-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05ebc31cbaabe760d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-1eecda03
+ 309956199498/RHEL-5.6_GA-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T17:41:34.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.6_GA-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-11430794
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-1f7ec770
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171016-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-10-19T03:29:44.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171016-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03d32b63f4f9ead69
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-1ff10170
+ 309956199498/RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-08-25T14:23:33.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_Beta-20160819-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-84e4648f
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-21312b4d
+ 309956199498/RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-19T22:57:27.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-23f9df15
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-284cdc47
+ 309956199498/RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T02:16:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180103-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-00d676d75e83ace93
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-2eccfa33
+ 309956199498/RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-11-04T21:19:58.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20141017-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-634d0ce6
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-329e982f
+ 309956199498/RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2015-08-27T11:36:00.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM_BETA-20150825-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a77bb9af
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-337be65c
+ aws-marketplace/CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ available
+ 679593333241
+ 2018-01-12T20:37:16.000Z
+ false
+
+
-
+ aw0evgkw8e5c1q413zgy5pjce
+ marketplace
+
+
+ x86_64
+ machine
+ aws-marketplace
+ CentOS Linux 7 x86_64 HVM EBS 1801_01-b7ee8a69-ee97-4a49-9e68-afaee216db2e-ami-0a537770.4
+ CentOS Linux 7 x86_64 HVM EBS 1801_01
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0b8a9fd84c06206f1
+ 8
+ false
+ standard
+ false
+
+
+
+ hvm
+ xen
+ false
+
+ -
+ ami-35a4785a
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-25T00:43:09.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b73d5b80abe000c4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-368ebf2b
+ 309956199498/RHEL-7.0_GA_HVM-20141214-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-12-14T02:42:18.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_GA_HVM-20141214-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-634d0ce6
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-36d9e02b
+ 309956199498/RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2015-06-04T17:26:30.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.6_HVM_GA-20150601-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-5d239055
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-36da6159
+ 309956199498/RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-24T16:21:25.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20171024-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0b457aba52fdcadf0
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-390c9c56
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-04T21:37:30.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180104-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06d0b5a7e5ec59244
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-396bf456
+ 309956199498/RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-18T21:38:15.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180118-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05c347ff7aec82a59
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-3e8ebf23
+ 309956199498/RHEL-6.6_GA_HVM-20141214-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-12-14T02:38:03.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_GA_HVM-20141214-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-cecfb54b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-3ed2d623
+ 309956199498/RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-08-04T17:27:11.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.1_HVM-20150803-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3a249733
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-40dc532f
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ available
+ 679593333241
+ 2017-11-30T05:35:42.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-01486422066a3eedf
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-41dc532e
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ available
+ 679593333241
+ 2017-11-30T05:35:40.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-184c7a05
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0f52f4539065d3bd1
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-44fbd3af
+ 309956199498/RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T21:20:20.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0fd89948e3680880b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-488cbf55
+ 309956199498/RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-11T15:24:40.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.11_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-16273093
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-491edc26
+ 309956199498/RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-01-03T15:59:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_Beta-20161219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0cdd9f854c43accbf
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-49be6226
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-04-24T15:24:59.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-050315d9c4d9917a5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-4a9f6525
+ 309956199498/RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-11-08T17:11:12.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-8be2b5f2
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4b1bb524
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ available
+ 679593333241
+ 2017-08-10T00:12:34.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-184c7a05
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0e74b8ce54a76cbc3
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-4cecda51
+ 309956199498/RHEL-5.9_GA-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T18:29:55.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.9_GA-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f9490d7c
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-4ded1522
+ 309956199498/RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-25T21:09:09.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20161025-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d58326ac
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-4fb35620
+ 309956199498/RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-02-25T00:29:17.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.2_HVM_GA-20160218-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-80cbe88b
+ 5
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-526d3eb9
+ 309956199498/RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-23T20:47:53.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM_GA-20180322-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05848152c7bab5c7b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-55e8313a
+ 309956199498/RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:56:20.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0c1f84062576e9cd9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-58eddb45
+ 309956199498/RHEL-6.4_GA-x86_64-10-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T21:10:46.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-6.4_GA-x86_64-10-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-97672312
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-5cc53d33
+ 309956199498/RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T22:30:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_GA-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b8f84fc1
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-60a7cb0f
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-03-01T23:49:04.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180301-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-027b5e8753ef6d7ad
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-62deee7f
+ 309956199498/RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-01-05T22:15:14.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_Beta-Server-20150105-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06ffc183
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-64e3d58f
+ 309956199498/RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-06T22:23:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_GA-20180606-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0072f751d57813a25
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-68fec275
+ 309956199498/RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-14T15:52:00.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.1.1_HVM_GA-Atomic-20150414-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-24ee502c
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-69e2ca82
+ 309956199498/RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T18:26:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_HVM-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0815882758ca315d6
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-6c1ffb03
+ 309956199498/RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-03-10T18:39:54.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_BETA-20160310-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d924c4d3
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6e278301
+ 309956199498/RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:06:44.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170613-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0ee6629e3f7784ca8
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-6eecda73
+ 309956199498/RHEL-6.1_GA-x86_64-5-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T18:55:32.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-6.1_GA-x86_64-5-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-524b0fd7
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-76ba869d
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-06-21T22:54:33.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180621-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-06ada5634ab7b8d95
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-76eddb6b
+ 309956199498/RHEL-6.5_GA-x86_64-9-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T21:36:52.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-6.5_GA-x86_64-9-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c6612543
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-7849e717
+ 309956199498/RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-08-08T15:47:40.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_GA-20170808-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-07f4bed7ffc406c20
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-788a5217
+ 309956199498/RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-05-18T18:41:20.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM_Beta-20170518-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0d19d6a98df10d612
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-7e7d8211
+ 309956199498/RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-06T20:10:46.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM_RC1-20161005-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-f9d3a280
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-81311c6a
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ available
+ 679593333241
+ 2018-05-09T17:48:03.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180423-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-2cb00453.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-04-23
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0a400ab1788e77955
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-82ce36ed
+ 309956199498/RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-10-26T19:59:29.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM-20161026-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e6b5ba0e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-82ecda9f
+ 309956199498/RHEL-6.3_GA-x86_64-5-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T19:29:15.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-6.3_GA-x86_64-5-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-d2501457
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-84f7c199
+ 309956199498/RHEL-6.6_HVM_GA-20141028-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2014-10-28T20:51:57.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.6_HVM_GA-20141028-x86_64-1-Access2-GP2
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-cecfb54b
+ 10
+ true
+ standard
+ false
+
+
+ -
+ /dev/sdf
+ ephemeral0
+
+ -
+ /dev/sdg
+ ephemeral1
+
+
+ hvm
+ xen
+
+ -
+ ami-88e9db95
+ 309956199498/RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-27T17:26:36.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-Atomic-20150219-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-582d8550
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-88ee38e7
+ 309956199498/RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-03-20T02:29:32.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM_GA-20170319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-05f3657f8b715f09d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-8bf029e4
+ 309956199498/RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-05-15T14:58:45.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.3_HVM-20170424-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0d2c6bbae1b0f1c3b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-8c96ac91
+ 309956199498/RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-07-17T02:07:39.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_GA-20150714-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-ec4413e5
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-916c417a
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-08T21:57:03.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180508-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-01f76ae61b393b5d9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-93a835fc
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ available
+ 679593333241
+ 2018-01-12T06:56:24.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180110-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-33e4bc49.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-10
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-02086fbf87ba2c3fa
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-94ecda89
+ 309956199498/RHEL-6.2_GA-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T19:14:09.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-6.2_GA-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e0561265
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-971a327c
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-05-22T13:09:54.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180522-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0e57166777780edfa
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-a1138ace
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20180119-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-24T20:52:24.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20180119-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-07d5716b3561f0682
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-a2eb72cd
+ 309956199498/RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2018-01-23T02:46:49.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.5_Beta_HVM-20180116-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-03d2e5bda201c4aa4
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-a58e15ca
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ available
+ 679593333241
+ 2018-01-29T11:09:22.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180122-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-4bc8fe31.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-01-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-05ff4358601aa568d
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-a9d3f642
+ 309956199498/RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-04-19T18:54:55.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.10_HVM_Beta-20180418-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0e5c610c48099ca4b
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-aa8cbfb7
+ 309956199498/RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-11T16:23:28.000Z
+ false
+ i386
+ machine
+ aki-3e4c7a23
+ RHEL-5.11_GA-20150209-i386-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e7233462
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-aacff9b7
+ 309956199498/RHEL-6.4_HVM_GA-x86_64-10-Access2-GP2
+ available
+ 309956199498
+ 2014-11-04T19:52:09.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.4_HVM_GA-x86_64-10-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-b2400137
+ 6
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-afcd2dc0
+ 309956199498/RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-04-13T00:57:43.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160412-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-14008f1e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-b05f015b
+ 309956199498/RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-04-05T14:11:15.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.5_HVM_GA-20180405-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-022e8eefb99a58e5d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-b3d841dc
+ 309956199498/RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2018-01-22T17:37:14.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.4_HVM-20180122-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0acb53d5c95beb90e
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-b51bb5da
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ available
+ 679593333241
+ 2017-08-10T00:12:46.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-01a9b43bc99c8298d
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-b55bffda
+ 309956199498/RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2017-06-14T21:02:09.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.9_HVM-20170613-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-07d8adab45c4eeb33
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-bc8835d3
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20171002-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2017-10-05T18:15:22.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20171002-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-020944d665ce7e336
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-bedb6fd1
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170830-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-09-05T14:11:50.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170830-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-07a213a3dd97c8258
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-c2d7e1df
+ 309956199498/RHEL-5.10_GA-x86_64-8-Access2-GP2
+ available
+ 309956199498
+ 2014-11-01T18:35:01.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.10_GA-x86_64-8-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-59fabedc
+ 10
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-c4d9efd9
+ 309956199498/RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2014-11-03T13:46:54.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.11_GA-20141003-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-915f1914
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-cc688da3
+ 309956199498/RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:28:06.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-54f7125d
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-cd2339a1
+ 309956199498/RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ available
+ 309956199498
+ 2016-02-20T03:48:16.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160219-x86_64-2-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-c71d32cc
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-cf6a8fa0
+ 309956199498/RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2016-03-02T16:13:34.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-7.2_HVM-20160301-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-aef312a7
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-d8d7e1c5
+ 309956199498/RHEL-5.8_GA-x86_64-3-Access2-GP2
+ available
+ 309956199498
+ 2014-11-01T18:14:03.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.8_GA-x86_64-3-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-94f9bd11
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-defdcfc3
+ 309956199498/RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-26T16:25:41.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.1_HVM_GA-20150225-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e15582e9
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-e2361b09
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
+ available
+ 679593333241
+ 2018-05-09T17:42:22.000Z
+ false
+
+
-
+ e0rcty0t3zp1mkin7a899fmgw
+ marketplace
+
+
+ x86_64
+ machine
+ aki-184c7a05
+ aws-marketplace
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180423-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-d3cd79ac.4
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-05ecb65026456add7
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-e283ef8d
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ available
+ 679593333241
+ 2018-03-02T05:52:22.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9ac624e7.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-02-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-0f586df1f9afa3642
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-e45e6cf9
+ 309956199498/RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-02-16T16:17:08.000Z
+ false
+ x86_64
+ machine
+ RHEL-7.0_HVM_GA-20150209-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-dbb43ad2
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-e583ef8a
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
available
679593333241
- 2017-11-30T05:35:42.000Z
+ 2018-03-02T05:52:15.000Z
false
-
- b3dl4415quatdndl4qa6kcu45
+ e0rcty0t3zp1mkin7a899fmgw
marketplace
x86_64
machine
- simple
+ aki-184c7a05
aws-marketplace
- ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-c29e1cb8.4
- Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-11-15
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180222.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-0dc62470.4
ebs
/dev/sda1
-
/dev/sda1
- snap-01486422066a3eedf
+ snap-08cb6a1c4c7776ff7
8
true
gp2
@@ -307,21 +3092,74 @@ http_interactions:
/dev/sdb
ephemeral0
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-eccff9f1
+ 309956199498/RHEL-6.5_HVM_GA-x86_64-7-Access2-GP2
+ available
+ 309956199498
+ 2014-11-04T20:32:02.000Z
+ false
+ x86_64
+ machine
+ RHEL-6.5_HVM_GA-x86_64-7-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdc
- ephemeral1
+ /dev/sda1
+
+ snap-214706a4
+ 10
+ true
+ gp2
+ false
+
hvm
xen
- true
-
- ami-41dc532e
- aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ami-f22a15ef
+ 309956199498/RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-04-30T19:56:15.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.7_HVM_Beta-20150430-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-e64512ef
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-f4ab369b
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
available
679593333241
- 2017-11-30T05:35:40.000Z
+ 2018-01-12T06:55:19.000Z
false
-
@@ -333,14 +3171,14 @@ http_interactions:
machine
aki-184c7a05
aws-marketplace
- ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20171115.1-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-299c1e53.4
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180110-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-1ce6be66.4
ebs
/dev/sda1
-
/dev/sda1
- snap-0f52f4539065d3bd1
+ snap-0b4b98f151c6d2e93
8
true
gp2
@@ -357,11 +3195,114 @@ http_interactions:
false
-
- ami-4b1bb524
- aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ami-f6efd9eb
+ 309956199498/RHEL-5.5_GA-x86_64-4-Access2-GP2
+ available
+ 309956199498
+ 2014-10-31T17:24:45.000Z
+ false
+ x86_64
+ machine
+ aki-184c7a05
+ RHEL-5.5_GA-x86_64-4-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-a4410521
+ 6
+ true
+ gp2
+ false
+
+
+
+ paravirtual
+ xen
+
+ -
+ ami-f7192d1c
+ aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
available
679593333241
- 2017-08-10T00:12:34.000Z
+ 2018-06-01T11:53:17.000Z
+ false
+
+
-
+ b3dl4415quatdndl4qa6kcu45
+ marketplace
+
+
+ x86_64
+ machine
+ simple
+ aws-marketplace
+ ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20180522-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-9f086de0.4
+ Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2018-05-22
+ ebs
+ /dev/sda1
+
+ -
+ /dev/sda1
+
+ snap-00de8129d2b085c5c
+ 8
+ true
+ gp2
+ false
+
+
+ -
+ /dev/sdb
+ ephemeral0
+
+ -
+ /dev/sdc
+ ephemeral1
+
+
+ hvm
+ xen
+ true
+
+ -
+ ami-f80538e5
+ 309956199498/RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2015-03-20T18:04:00.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.6_HVM_GA-20150319-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-3395f03a
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-f88f1497
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
+ available
+ 679593333241
+ 2018-01-29T11:10:07.000Z
false
-
@@ -373,14 +3314,14 @@ http_interactions:
machine
aki-184c7a05
aws-marketplace
- ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20170803-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-599bb422.4
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180122-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-90c8feea.4
ebs
/dev/sda1
-
/dev/sda1
- snap-0e74b8ce54a76cbc3
+ snap-029182ea5c6ca0832
8
true
gp2
@@ -397,31 +3338,59 @@ http_interactions:
false
-
- ami-b51bb5da
- aws-marketplace/ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
+ ami-fbbb1494
+ 309956199498/RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2017-08-01T14:14:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-Atomic_7.4_HVM_GA-20170727-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
+
-
+ /dev/sda1
+
+ snap-0cf8a92f91749c678
+ 10
+ true
+ gp2
+ false
+
+
+
+ hvm
+ xen
+
+ -
+ ami-fe192d15
+ aws-marketplace/ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
available
679593333241
- 2017-08-10T00:12:46.000Z
+ 2018-06-01T11:30:19.000Z
false
-
- b3dl4415quatdndl4qa6kcu45
+ e0rcty0t3zp1mkin7a899fmgw
marketplace
x86_64
machine
- simple
+ aki-184c7a05
aws-marketplace
- ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20170803-bb634ce9-ed92-47ac-a3dc-66e8ab3aaf75-ami-5c95ba27.4
- Canonical, Ubuntu, 14.04 LTS, amd64 trusty image build on 2017-08-03
+ ubuntu/images/ebs-ssd/ubuntu-trusty-14.04-amd64-server-20180522-ecd5575e-d805-450e-843e-f2a9872b8c80-ami-bc1570c3.4
ebs
/dev/sda1
-
/dev/sda1
- snap-01a9b43bc99c8298d
+ snap-0a2eb843ad1287fc2
8
true
gp2
@@ -432,19 +3401,44 @@ http_interactions:
/dev/sdb
ephemeral0
+
+ paravirtual
+ xen
+ false
+
+ -
+ ami-ff11f390
+ 309956199498/RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ available
+ 309956199498
+ 2016-05-03T20:02:58.000Z
+ false
+ x86_64
+ machine
+ simple
+ RHEL-6.8_HVM_GA-20160503-x86_64-1-Access2-GP2
+ Provided by Red Hat, Inc.
+ ebs
+ /dev/sda1
+
-
- /dev/sdc
- ephemeral1
+ /dev/sda1
+
+ snap-a083784b
+ 10
+ true
+ gp2
+ false
+
hvm
xen
- true
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:24 GMT
- request:
method: post
uri: https://ec2.eu-central-1.amazonaws.com/
@@ -457,14 +3451,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140624Z
X-Amz-Content-Sha256:
- 6171eb09865e32b0602af0f7957e26573a51f53caaedff02ff88883cb0275885
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=317c1940e8a2b661c5b81c61fbdca8f118a9d5dca0f15b464feab92e10ebf32d
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=10dfd417688af6ba5d6c1ebf9936450bf89d61e34606c083096416329b183d43
Content-Length:
- '43'
Accept:
@@ -481,7 +3475,7 @@ http_interactions:
Vary:
- Accept-Encoding
Date:
- - Thu, 01 Feb 2018 19:05:01 GMT
+ - Tue, 28 Aug 2018 14:06:19 GMT
Server:
- AmazonEC2
body:
@@ -489,7 +3483,7 @@ http_interactions:
string: |-
- ab472aab-2052-4532-bd5a-37a58eb417eb
+ cdff31b5-c0d0-4e27-ab33-f01375be0bf6
-
r-056692f6dc68b8043
@@ -500,17 +3494,17 @@ http_interactions:
i-091369dd8a8d470ab
ami-0fc85a60
-
16
- running
+ 80
+ stopped
ip-172-31-9-14.eu-central-1.compute.internal
- ec2-18-196-99-129.eu-central-1.compute.amazonaws.com
-
+
+ User initiated (2018-05-03 13:54:51 GMT)
azagayno
0
t2.micro
- 2018-01-15T10:28:27.000Z
+ 2018-05-03T13:18:29.000Z
eu-central-1b
@@ -522,7 +3516,6 @@ http_interactions:
subnet-95b0b1ed
vpc-d78f69be
172.31.9.14
- 18.196.99.129
true
-
@@ -530,6 +3523,10 @@ http_interactions:
miq-ssh-http-https
+
+ Client.UserInitiatedShutdown
+ Client.UserInitiatedShutdown: User initiated shutdown
+
x86_64
ebs
/dev/xvda
@@ -546,6 +3543,16 @@ http_interactions:
hvm
+
+ -
+ redhat
+ brno
+
+ -
+ some_tag
+ some_tag_value
+
+
xen
-
@@ -572,21 +3579,11 @@ http_interactions:
2018-01-15T10:28:27.000Z
true
-
- 18.196.99.129
- ec2-18-196-99-129.eu-central-1.compute.amazonaws.com
- amazon
-
-
172.31.9.14
ip-172-31-9-14.eu-central-1.compute.internal
true
-
- 18.196.99.129
- ec2-18-196-99-129.eu-central-1.compute.amazonaws.com
- amazon
-
@@ -594,13 +3591,17 @@ http_interactions:
false
true
+
+ 1
+ 1
+
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:02 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:24 GMT
- request:
method: post
uri: https://ec2.eu-central-1.amazonaws.com/
@@ -613,14 +3614,14 @@ http_interactions:
Accept-Encoding:
- ''
User-Agent:
- - aws-sdk-ruby2/2.9.44 ruby/2.3.6 x86_64-darwin17 resources
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
X-Amz-Date:
- - 20180201T190502Z
+ - 20180828T140624Z
X-Amz-Content-Sha256:
- 97b5c640c4d026cb78b56efe042e22b5f5ea52221096f5e0d89000943ebdd37c
Authorization:
- - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180201/eu-central-1/ec2/aws4_request,
- SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=951aba47810b39e7731c3c48d0b710d1fcdba0b3293279652369e81091fb2047
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/ec2/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=4551e0e958fccbb1310467ac179cea8e3e796e2a65fc185d3e1efe8a37bb5459
Content-Length:
- '93'
Accept:
@@ -632,12 +3633,10 @@ http_interactions:
headers:
Content-Type:
- text/xml;charset=UTF-8
- Transfer-Encoding:
- - chunked
- Vary:
- - Accept-Encoding
+ Content-Length:
+ - '1732'
Date:
- - Thu, 01 Feb 2018 19:05:02 GMT
+ - Tue, 28 Aug 2018 14:06:19 GMT
Server:
- AmazonEC2
body:
@@ -645,7 +3644,7 @@ http_interactions:
string: |-
- a2f184cf-cd71-4923-a2f5-54b7105c09b3
+ 57a73b5d-f758-45bc-925e-ebb4952ccabc
-
ami-0fc85a60
@@ -680,6 +3679,51 @@ http_interactions:
- http_version:
- recorded_at: Thu, 01 Feb 2018 19:05:03 GMT
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:25 GMT
+- request:
+ method: post
+ uri: https://servicecatalog.eu-central-1.amazonaws.com/
+ body:
+ encoding: UTF-8
+ string: "{}"
+ headers:
+ Content-Type:
+ - application/x-amz-json-1.1
+ Accept-Encoding:
+ - ''
+ User-Agent:
+ - aws-sdk-ruby2/2.9.44 ruby/2.4.2 x86_64-linux resources
+ X-Amz-Target:
+ - AWS242ServiceCatalogService.SearchProductsAsAdmin
+ X-Amz-Date:
+ - 20180828T140625Z
+ X-Amz-Content-Sha256:
+ - 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
+ Authorization:
+ - AWS4-HMAC-SHA256 Credential=AMAZON_CLIENT_ID/20180828/eu-central-1/servicecatalog/aws4_request,
+ SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target,
+ Signature=43866469829b66c25c887f189446941f997e7bb820b4f7f50fee09d64d3b05ec
+ Content-Length:
+ - '2'
+ Accept:
+ - "*/*"
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ X-Amzn-Requestid:
+ - 8a0e35ef-aacb-11e8-af65-390ddfe274ea
+ Content-Type:
+ - application/x-amz-json-1.1
+ Content-Length:
+ - '25'
+ Date:
+ - Tue, 28 Aug 2018 14:06:20 GMT
+ body:
+ encoding: UTF-8
+ string: '{"ProductViewDetails":[]}'
+ http_version:
+ recorded_at: Tue, 28 Aug 2018 14:06:25 GMT
recorded_with: VCR 3.0.3