From 6f472647074888250e83e601f8938ef4ced24228 Mon Sep 17 00:00:00 2001 From: JP Slavinsky Date: Wed, 4 Dec 2019 13:19:20 -0700 Subject: [PATCH] create stack if it doesn't exist wip --- README.md | 2 +- lib/openstax/aws/stack.rb | 7 +- ...ode_when_deleting_a_non-existent_stack.yml | 12 +- .../returns_empty_for_non-existent_stack.yml | 12 +- ...s_defaults_volatile_use_previous_value.yml | 250 ++-- .../can_be_updated_with_a_new_template.yml | 696 ++++----- .../can_be_updated_with_new_parameters.yml | 523 ++++--- .../can_create_and_delete_in_a_dry_run.yml | 92 +- ...k_s_template_without_specifying_a_file.yml | 246 ++-- ...th_provided_parameters_then_deletes_it.yml | 311 ++-- .../OpenStax_Aws_Stack/gets_output_values.yml | 250 ++-- .../is_a_no-op_update_with_no_changes.yml | 344 +++-- ...k_deleting_a_stack_that_does_not_exist.yml | 24 +- .../skips_create_for_existing_stacks.yml | 1265 +++++++++++++++++ .../uses_parameter_defaults.yml | 260 ++-- ...stack_created_and_deletes_when_deleted.yml | 428 +++--- .../updates_secrets_when_stack_updated.yml | 845 +++++------ spec/stack_spec.rb | 8 + 18 files changed, 3640 insertions(+), 1935 deletions(-) create mode 100644 spec/cassettes/OpenStax_Aws_Stack/skips_create_for_existing_stacks.yml diff --git a/README.md b/README.md index 466461b..b71aabe 100644 --- a/README.md +++ b/README.md @@ -242,7 +242,7 @@ used in the SDK. #### `create` -[ Work on this section ] +If you call create on a stack that already exists, it by default #### `apply_change_set` diff --git a/lib/openstax/aws/stack.rb b/lib/openstax/aws/stack.rb index fcc0c68..d94cd9a 100644 --- a/lib/openstax/aws/stack.rb +++ b/lib/openstax/aws/stack.rb @@ -51,9 +51,14 @@ def template end end - def create(params: {}, wait: false) + def create(params: {}, wait: false, skip_existing: true) logger.info("**** DRY RUN ****") if dry_run + if skip_existing && exists? + logger.info("#{name} stack already exists; skipping create.") + return + end + params = parameter_defaults.merge(params) if defines_secrets? diff --git a/spec/cassettes/OpenStax_Aws_Stack/_delete/does_not_explode_when_deleting_a_non-existent_stack.yml b/spec/cassettes/OpenStax_Aws_Stack/_delete/does_not_explode_when_deleting_a_non-existent_stack.yml index a4248c9..67efef6 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/_delete/does_not_explode_when_deleting_a_non-existent_stack.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/_delete/does_not_explode_when_deleting_a_non-existent_stack.yml @@ -16,11 +16,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T215001Z + - 20191124T154917Z X-Amz-Content-Sha256: - 7fbb919a852977e9f662bc85e932e37164683fee231016b783a11bcbe839808c Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '64' @@ -32,13 +32,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - cb15f716-6cf1-4a4e-892d-9364e22271c3 + - 1c80ff44-371b-4489-ad39-0448d9bb0819 Content-Type: - text/xml Content-Length: - '299' Date: - - Fri, 08 Nov 2019 21:50:01 GMT + - Sun, 24 Nov 2019 15:49:18 GMT Connection: - close body: @@ -50,8 +50,8 @@ http_interactions: ValidationError Stack with id doesnotmatter does not exist - cb15f716-6cf1-4a4e-892d-9364e22271c3 + 1c80ff44-371b-4489-ad39-0448d9bb0819 http_version: - recorded_at: Fri, 08 Nov 2019 21:50:02 GMT + recorded_at: Sun, 24 Nov 2019 15:49:18 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/_deployed_parameters/returns_empty_for_non-existent_stack.yml b/spec/cassettes/OpenStax_Aws_Stack/_deployed_parameters/returns_empty_for_non-existent_stack.yml index 3f51587..07761d6 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/_deployed_parameters/returns_empty_for_non-existent_stack.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/_deployed_parameters/returns_empty_for_non-existent_stack.yml @@ -16,11 +16,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T214633Z + - 20191124T154917Z X-Amz-Content-Sha256: - 7fbb919a852977e9f662bc85e932e37164683fee231016b783a11bcbe839808c Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '64' @@ -32,13 +32,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - 9c005b83-b7e7-4337-9ae8-464f1115667b + - 5798503d-a1b1-409a-b6a2-3490a04b172a Content-Type: - text/xml Content-Length: - '299' Date: - - Fri, 08 Nov 2019 21:46:33 GMT + - Sun, 24 Nov 2019 15:49:16 GMT Connection: - close body: @@ -50,8 +50,8 @@ http_interactions: ValidationError Stack with id doesnotmatter does not exist - 9c005b83-b7e7-4337-9ae8-464f1115667b + 5798503d-a1b1-409a-b6a2-3490a04b172a http_version: - recorded_at: Fri, 08 Nov 2019 21:46:34 GMT + recorded_at: Sun, 24 Nov 2019 15:49:17 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/_parameters_for_update/uses_defaults_volatile_use_previous_value.yml b/spec/cassettes/OpenStax_Aws_Stack/_parameters_for_update/uses_defaults_volatile_use_previous_value.yml index 6c0955c..c60e610 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/_parameters_for_update/uses_defaults_volatile_use_previous_value.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/_parameters_for_update/uses_defaults_volatile_use_previous_value.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-param-update&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154845Z + X-Amz-Content-Sha256: + - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 2121bd06-4b4c-42db-81ba-92f9f93dc7ff + Content-Type: + - text/xml + Content-Length: + - '318' + Date: + - Sun, 24 Nov 2019 15:48:45 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-param-update does not exist + + 2121bd06-4b4c-42db-81ba-92f9f93dc7ff + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:45 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193741Z + - 20191124T154845Z X-Amz-Content-Sha256: - 3190577b59baf8d5700c32941292b06f3736729f5c5819972b733aab8a945455 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '744' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - d10b7147-fc70-475e-b6ed-fa51ab5d9bd2 + - 7525f046-b27c-4cb7-9b06-2501494d11ea Content-Type: - text/xml Content-Length: - '852' Date: - - Fri, 08 Nov 2019 19:37:41 GMT + - Sun, 24 Nov 2019 15:48:45 GMT body: encoding: UTF-8 string: | @@ -66,11 +120,11 @@ http_interactions: - d10b7147-fc70-475e-b6ed-fa51ab5d9bd2 + 7525f046-b27c-4cb7-9b06-2501494d11ea http_version: - recorded_at: Fri, 08 Nov 2019 19:37:41 GMT + recorded_at: Sun, 24 Nov 2019 15:48:46 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/orig.yml @@ -117,11 +171,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193741Z + - 20191124T154846Z X-Amz-Content-Sha256: - 24d48a4517a5898c06d2cb1a55fdb4c367421004ecdff431082af0cfc43b7dc8 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -134,13 +188,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - ZUbVdvfqbVum94m8sKpk9X49IPR7KCKKPLbrZgUjao2uQAcuMENd0cXJhcD8SVl7qX3BuM44Ksc= + - 7AH0jPK2Dey+/SGpDA6q1yNYSkZLT0X/ptp3JVEhLTn7EXdJJOZbiR9U+AmMdx6hqJgiDFCkxCw= X-Amz-Request-Id: - - 3189B9A42965AF43 + - 5058B6BC849814FB Date: - - Fri, 08 Nov 2019 19:37:43 GMT + - Sun, 24 Nov 2019 15:48:47 GMT X-Amz-Version-Id: - - ABnDU9G8s7J34iEEdiHrfm318RSJ_RKl + - 11NR.AVHPGZAGoORf.lzqEk4ROtVYqrP X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -153,7 +207,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:37:42 GMT + recorded_at: Sun, 24 Nov 2019 15:48:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -170,11 +224,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193742Z + - 20191124T154846Z X-Amz-Content-Sha256: - '019f0ff6cfd32dedae531cd351386da9de741998a6afed02af608d8d9772f0c4' Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '614' @@ -186,26 +240,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3735cb2b-8c87-4cf7-a155-4b1630beb298 + - f4f23c3d-de62-459b-b057-001634cde8f7 Content-Type: - text/xml Content-Length: - '402' Date: - - Fri, 08 Nov 2019 19:37:42 GMT + - Sun, 24 Nov 2019 15:48:46 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 - 3735cb2b-8c87-4cf7-a155-4b1630beb298 + f4f23c3d-de62-459b-b057-001634cde8f7 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:43 GMT + recorded_at: Sun, 24 Nov 2019 15:48:47 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -222,11 +276,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193743Z + - 20191124T154847Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -238,13 +292,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8ae55aad-906c-45ff-b0ec-65d036624409 + - 5ef2fae2-685c-491b-90de-e999092f9c21 Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:37:43 GMT + - Sun, 24 Nov 2019 15:48:47 GMT body: encoding: UTF-8 string: | @@ -252,9 +306,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -288,11 +342,11 @@ http_interactions: - 8ae55aad-906c-45ff-b0ec-65d036624409 + 5ef2fae2-685c-491b-90de-e999092f9c21 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:43 GMT + recorded_at: Sun, 24 Nov 2019 15:48:48 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -309,11 +363,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193743Z + - 20191124T154848Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -325,13 +379,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 27c6431f-af22-4ea9-8540-48fb4e7a7990 + - 964795e0-1410-48c9-9d42-7dba9a5cc0f1 Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:37:44 GMT + - Sun, 24 Nov 2019 15:48:47 GMT body: encoding: UTF-8 string: | @@ -339,9 +393,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -375,11 +429,11 @@ http_interactions: - 27c6431f-af22-4ea9-8540-48fb4e7a7990 + 964795e0-1410-48c9-9d42-7dba9a5cc0f1 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:44 GMT + recorded_at: Sun, 24 Nov 2019 15:48:48 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -396,11 +450,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193749Z + - 20191124T154853Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -412,13 +466,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 6de17f64-e0f1-40ba-ac48-b4a74c997f42 + - bd2cbf9e-2c57-463e-ba74-61e3fa9b6f2d Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:37:49 GMT + - Sun, 24 Nov 2019 15:48:53 GMT body: encoding: UTF-8 string: | @@ -426,9 +480,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -462,11 +516,11 @@ http_interactions: - 6de17f64-e0f1-40ba-ac48-b4a74c997f42 + bd2cbf9e-2c57-463e-ba74-61e3fa9b6f2d http_version: - recorded_at: Fri, 08 Nov 2019 19:37:49 GMT + recorded_at: Sun, 24 Nov 2019 15:48:54 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -483,11 +537,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193754Z + - 20191124T154859Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -499,13 +553,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8aef7cd8-bc77-4629-9fa7-ffdfae14a3dd + - e310ac7b-b1e7-4b7b-b577-9035a3efa91d Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:37:53 GMT + - Sun, 24 Nov 2019 15:48:59 GMT body: encoding: UTF-8 string: | @@ -513,9 +567,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -549,11 +603,11 @@ http_interactions: - 8aef7cd8-bc77-4629-9fa7-ffdfae14a3dd + e310ac7b-b1e7-4b7b-b577-9035a3efa91d http_version: - recorded_at: Fri, 08 Nov 2019 19:37:54 GMT + recorded_at: Sun, 24 Nov 2019 15:48:59 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -570,11 +624,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193759Z + - 20191124T154904Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -586,13 +640,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 82dd1133-9dc9-4fa3-87f1-c8fe90f69e0e + - e32b667a-1514-465e-ba71-916335cde643 Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:37:59 GMT + - Sun, 24 Nov 2019 15:49:04 GMT body: encoding: UTF-8 string: | @@ -600,9 +654,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -636,11 +690,11 @@ http_interactions: - 82dd1133-9dc9-4fa3-87f1-c8fe90f69e0e + e32b667a-1514-465e-ba71-916335cde643 http_version: - recorded_at: Fri, 08 Nov 2019 19:38:00 GMT + recorded_at: Sun, 24 Nov 2019 15:49:05 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -657,11 +711,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193805Z + - 20191124T154910Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -673,13 +727,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 12abf751-b7ce-4dd7-b992-6a3a9490ffb8 + - 07dd9e8a-9905-4310-8e81-ba623c973734 Content-Type: - text/xml Content-Length: - '1694' Date: - - Fri, 08 Nov 2019 19:38:04 GMT + - Sun, 24 Nov 2019 15:49:09 GMT body: encoding: UTF-8 string: | @@ -687,9 +741,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -723,11 +777,11 @@ http_interactions: - 12abf751-b7ce-4dd7-b992-6a3a9490ffb8 + 07dd9e8a-9905-4310-8e81-ba623c973734 http_version: - recorded_at: Fri, 08 Nov 2019 19:38:05 GMT + recorded_at: Sun, 24 Nov 2019 15:49:10 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -744,11 +798,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193810Z + - 20191124T154915Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -760,13 +814,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f828e3b1-38a9-434d-a9cb-80966ada42c7 + - c0f543dc-0ee0-45c0-8e6c-ada1a281a4d8 Content-Type: - text/xml Content-Length: - '1691' Date: - - Fri, 08 Nov 2019 19:38:10 GMT + - Sun, 24 Nov 2019 15:49:15 GMT body: encoding: UTF-8 string: | @@ -774,9 +828,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -810,11 +864,11 @@ http_interactions: - f828e3b1-38a9-434d-a9cb-80966ada42c7 + c0f543dc-0ee0-45c0-8e6c-ada1a281a4d8 http_version: - recorded_at: Fri, 08 Nov 2019 19:38:10 GMT + recorded_at: Sun, 24 Nov 2019 15:49:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -831,11 +885,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193811Z + - 20191124T154915Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -847,13 +901,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 39a9ff9d-9c9b-44d8-8975-b98a9780b26d + - 90cdb8d7-3493-4e6d-b3b2-711c588e6ca5 Content-Type: - text/xml Content-Length: - '1691' Date: - - Fri, 08 Nov 2019 19:38:10 GMT + - Sun, 24 Nov 2019 15:49:15 GMT body: encoding: UTF-8 string: | @@ -861,9 +915,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -897,11 +951,11 @@ http_interactions: - 39a9ff9d-9c9b-44d8-8975-b98a9780b26d + 90cdb8d7-3493-4e6d-b3b2-711c588e6ca5 http_version: - recorded_at: Fri, 08 Nov 2019 19:38:11 GMT + recorded_at: Sun, 24 Nov 2019 15:49:16 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -918,11 +972,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193811Z + - 20191124T154916Z X-Amz-Content-Sha256: - f74ab55032086d368109ff16f69c0801f4019fc335bc01f11a10dfa2505f93ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '83' @@ -934,13 +988,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 50463bdb-8800-4597-b5cf-60d0632f4007 + - bf110065-8a30-4a70-b78b-a435a0bc2f3b Content-Type: - text/xml Content-Length: - '1691' Date: - - Fri, 08 Nov 2019 19:38:11 GMT + - Sun, 24 Nov 2019 15:49:16 GMT body: encoding: UTF-8 string: | @@ -948,9 +1002,9 @@ http_interactions: - 2019-11-08T19:37:43.234Z + 2019-11-24T15:48:47.592Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/3b28a6d0-025f-11ea-902e-023006f8d510 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-param-update/e6b1b0e0-0ed1-11ea-97a9-023ebc410218 spec-aws-ruby-stack-param-update aws-ruby spec template - updating_parameters - orig @@ -984,11 +1038,11 @@ http_interactions: - 50463bdb-8800-4597-b5cf-60d0632f4007 + bf110065-8a30-4a70-b78b-a435a0bc2f3b http_version: - recorded_at: Fri, 08 Nov 2019 19:38:11 GMT + recorded_at: Sun, 24 Nov 2019 15:49:16 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1005,11 +1059,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193811Z + - 20191124T154916Z X-Amz-Content-Sha256: - 82c79116f73f17287d34d933db5ef0abee3c232653b46572916d027f809ef766 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '80' @@ -1021,21 +1075,21 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f9b34d67-20e5-4674-862d-e77c08e28a6f + - 417c8fba-1a15-4784-9b0a-486d3b2ffa08 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:38:11 GMT + - Sun, 24 Nov 2019 15:49:16 GMT body: encoding: UTF-8 string: | - f9b34d67-20e5-4674-862d-e77c08e28a6f + 417c8fba-1a15-4784-9b0a-486d3b2ffa08 http_version: - recorded_at: Fri, 08 Nov 2019 19:38:12 GMT + recorded_at: Sun, 24 Nov 2019 15:49:17 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_a_new_template.yml b/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_a_new_template.yml index fa5a16d..e65a8ff 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_a_new_template.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_a_new_template.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-update-new-template&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154604Z + X-Amz-Content-Sha256: + - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '90' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - d8bf9263-c96c-4a06-9882-3802d29db738 + Content-Type: + - text/xml + Content-Length: + - '325' + Date: + - Sun, 24 Nov 2019 15:46:04 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-update-new-template does not exist + + d8bf9263-c96c-4a06-9882-3802d29db738 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:46:04 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193533Z + - 20191124T154604Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3a862875-19b7-400b-b00a-e3c2d3340a26 + - 8e79c7b6-1b4a-43f3-9ede-ece0c8c33b2f Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:35:32 GMT + - Sun, 24 Nov 2019 15:46:03 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 3a862875-19b7-400b-b00a-e3c2d3340a26 + 8e79c7b6-1b4a-43f3-9ede-ece0c8c33b2f http_version: - recorded_at: Fri, 08 Nov 2019 19:35:33 GMT + recorded_at: Sun, 24 Nov 2019 15:46:04 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193533Z + - 20191124T154604Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - QoX2eCG74JvXhxX0aNceyHnVE4fD3H1wTb8zi5ieSh6QkJ8IcZSSwLSZ1nW1b/yfayPzt1Gc+44= + - n+Jfvrk2wQXJeEAlXeOBQvkltQQ6JgFE+2FvHJGQZ7qhr3Wx1VD4Kc/f7gUToHaJ/PToaY6qhQw= X-Amz-Request-Id: - - 90C9A1FC6704723A + - 6D45A192653B47AC Date: - - Fri, 08 Nov 2019 19:35:34 GMT + - Sun, 24 Nov 2019 15:46:06 GMT X-Amz-Version-Id: - - 9gFjL9QNK8Nx4NPq3NKkK.F0tzi3tFKt + - wAVkG5c5m09hFfZwJECXPCVRHicEc7pz X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:35:33 GMT + recorded_at: Sun, 24 Nov 2019 15:46:05 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193533Z + - 20191124T154605Z X-Amz-Content-Sha256: - 4d2f4a028799fff4a5cbe3880f780cccb6340eca4fa2736d350dc31bded0b733 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '447' @@ -179,105 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - b4f50280-1589-42ea-acd3-e03a5ef1062a + - ef303923-36ff-452f-94ef-5a78614a880a Content-Type: - text/xml Content-Length: - '409' Date: - - Fri, 08 Nov 2019 19:35:35 GMT + - Sun, 24 Nov 2019 15:46:05 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 - b4f50280-1589-42ea-acd3-e03a5ef1062a + ef303923-36ff-452f-94ef-5a78614a880a http_version: - recorded_at: Fri, 08 Nov 2019 19:35:35 GMT -- request: - method: post - uri: https://cloudformation.us-east-2.amazonaws.com/ - body: - encoding: UTF-8 - string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-update-new-template&Version=2010-05-15 - headers: - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 - Accept-Encoding: - - '' - User-Agent: - - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 - Host: - - cloudformation.us-east-2.amazonaws.com - X-Amz-Date: - - 20191108T193535Z - X-Amz-Content-Sha256: - - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 - Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= - Content-Length: - - '90' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - X-Amzn-Requestid: - - 65c162b0-c838-4124-860b-65077bbbb80c - Content-Type: - - text/xml - Content-Length: - - '1378' - Date: - - Fri, 08 Nov 2019 19:35:35 GMT - body: - encoding: UTF-8 - string: | - - - - - 2019-11-08T19:35:35.430Z - - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 - spec-aws-ruby-stack-update-new-template - Test template one - - CREATE_IN_PROGRESS - false - - - - NOT_CHECKED - - false - - - BucketName - aws-ruby-rspec-bucket - - - TagValue - howdy - - - - - - - 65c162b0-c838-4124-860b-65077bbbb80c - - - http_version: - recorded_at: Fri, 08 Nov 2019 19:35:35 GMT + recorded_at: Sun, 24 Nov 2019 15:46:06 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -294,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193535Z + - 20191124T154606Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -310,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 02ef8dfa-85d5-42aa-9f44-fba6621b1691 + - 04c12c68-1aba-4eaf-803d-a06f0662a1a5 Content-Type: - text/xml Content-Length: - - '1378' + - '1440' Date: - - Fri, 08 Nov 2019 19:35:36 GMT + - Sun, 24 Nov 2019 15:46:06 GMT body: encoding: UTF-8 string: | @@ -324,88 +299,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 - spec-aws-ruby-stack-update-new-template - Test template one - - CREATE_IN_PROGRESS - false - - - - NOT_CHECKED - - false - - - BucketName - aws-ruby-rspec-bucket - - - TagValue - howdy - - - - - - - 02ef8dfa-85d5-42aa-9f44-fba6621b1691 - - - http_version: - recorded_at: Fri, 08 Nov 2019 19:35:36 GMT -- request: - method: post - uri: https://cloudformation.us-east-2.amazonaws.com/ - body: - encoding: UTF-8 - string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-update-new-template&Version=2010-05-15 - headers: - Content-Type: - - application/x-www-form-urlencoded; charset=utf-8 - Accept-Encoding: - - '' - User-Agent: - - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 - Host: - - cloudformation.us-east-2.amazonaws.com - X-Amz-Date: - - 20191108T193541Z - X-Amz-Content-Sha256: - - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 - Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, - SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= - Content-Length: - - '90' - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - X-Amzn-Requestid: - - d6fdbcdc-85ea-437c-a6d3-007f124b29aa - Content-Type: - - text/xml - Content-Length: - - '1378' - Date: - - Fri, 08 Nov 2019 19:35:41 GMT - body: - encoding: UTF-8 - string: | - - - - - 2019-11-08T19:35:35.430Z - - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -427,15 +323,16 @@ http_interactions: howdy + User Initiated - d6fdbcdc-85ea-437c-a6d3-007f124b29aa + 04c12c68-1aba-4eaf-803d-a06f0662a1a5 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:41 GMT + recorded_at: Sun, 24 Nov 2019 15:46:06 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -452,11 +349,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193546Z + - 20191124T154606Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -468,13 +365,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - db2a69bc-c8e9-4d16-8eca-21e06175f7fc + - 230d7c0b-3866-4e1e-b0fd-5ae315568349 Content-Type: - text/xml Content-Length: - '1378' Date: - - Fri, 08 Nov 2019 19:35:46 GMT + - Sun, 24 Nov 2019 15:46:06 GMT body: encoding: UTF-8 string: | @@ -482,9 +379,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -510,11 +407,11 @@ http_interactions: - db2a69bc-c8e9-4d16-8eca-21e06175f7fc + 230d7c0b-3866-4e1e-b0fd-5ae315568349 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:47 GMT + recorded_at: Sun, 24 Nov 2019 15:46:07 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -531,11 +428,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193552Z + - 20191124T154612Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -547,13 +444,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 53e2176c-e5ca-4a68-8a41-7e71c35bb9c5 + - 78d0502d-b640-43ba-a8ac-c7cd268d3880 Content-Type: - text/xml Content-Length: - '1378' Date: - - Fri, 08 Nov 2019 19:35:51 GMT + - Sun, 24 Nov 2019 15:46:11 GMT body: encoding: UTF-8 string: | @@ -561,9 +458,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -589,11 +486,11 @@ http_interactions: - 53e2176c-e5ca-4a68-8a41-7e71c35bb9c5 + 78d0502d-b640-43ba-a8ac-c7cd268d3880 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:52 GMT + recorded_at: Sun, 24 Nov 2019 15:46:12 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -610,11 +507,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193557Z + - 20191124T154617Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -626,13 +523,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2b9d0ebc-8094-4536-a009-5fbe429ec949 + - 4ff3a3fc-b711-409a-99db-0ad97d8d35a4 Content-Type: - text/xml Content-Length: - '1378' Date: - - Fri, 08 Nov 2019 19:35:57 GMT + - Sun, 24 Nov 2019 15:46:17 GMT body: encoding: UTF-8 string: | @@ -640,9 +537,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -668,11 +565,11 @@ http_interactions: - 2b9d0ebc-8094-4536-a009-5fbe429ec949 + 4ff3a3fc-b711-409a-99db-0ad97d8d35a4 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:57 GMT + recorded_at: Sun, 24 Nov 2019 15:46:17 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -689,11 +586,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193602Z + - 20191124T154622Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -705,13 +602,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7438ccac-ea7d-4d89-a2a7-410383c6ec04 + - dcea82e9-545d-4c3c-ace4-2f0f1c5c3ec0 Content-Type: - text/xml Content-Length: - '1378' Date: - - Fri, 08 Nov 2019 19:36:02 GMT + - Sun, 24 Nov 2019 15:46:22 GMT body: encoding: UTF-8 string: | @@ -719,9 +616,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -747,11 +644,11 @@ http_interactions: - 7438ccac-ea7d-4d89-a2a7-410383c6ec04 + dcea82e9-545d-4c3c-ace4-2f0f1c5c3ec0 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:03 GMT + recorded_at: Sun, 24 Nov 2019 15:46:23 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -768,11 +665,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193608Z + - 20191124T154628Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -784,13 +681,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8353d379-46fe-4b83-a54a-75bdeaf2e48e + - ef21e2a4-b3ec-4b90-9f61-f4c6f2b7de4f Content-Type: - text/xml Content-Length: - '1378' Date: - - Fri, 08 Nov 2019 19:36:07 GMT + - Sun, 24 Nov 2019 15:46:27 GMT body: encoding: UTF-8 string: | @@ -798,9 +695,9 @@ http_interactions: - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -826,11 +723,11 @@ http_interactions: - 8353d379-46fe-4b83-a54a-75bdeaf2e48e + ef21e2a4-b3ec-4b90-9f61-f4c6f2b7de4f http_version: - recorded_at: Fri, 08 Nov 2019 19:36:08 GMT + recorded_at: Sun, 24 Nov 2019 15:46:28 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -847,11 +744,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193613Z + - 20191124T154633Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -863,13 +760,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 07bea359-6906-4544-9e16-f3ce12f012ff + - fe9d1603-87e2-45d0-8730-b07cf9c71775 Content-Type: - text/xml Content-Length: - '1657' Date: - - Fri, 08 Nov 2019 19:36:13 GMT + - Sun, 24 Nov 2019 15:46:33 GMT body: encoding: UTF-8 string: | @@ -884,9 +781,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -912,11 +809,11 @@ http_interactions: - 07bea359-6906-4544-9e16-f3ce12f012ff + fe9d1603-87e2-45d0-8730-b07cf9c71775 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:13 GMT + recorded_at: Sun, 24 Nov 2019 15:46:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -933,11 +830,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193613Z + - 20191124T154634Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -949,13 +846,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bfc33739-a0b0-48ec-816f-f53498efabfc + - ff786c49-58b3-484c-a643-412591321871 Content-Type: - text/xml Content-Length: - '1657' Date: - - Fri, 08 Nov 2019 19:36:13 GMT + - Sun, 24 Nov 2019 15:46:33 GMT body: encoding: UTF-8 string: | @@ -970,9 +867,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one @@ -998,11 +895,11 @@ http_interactions: - bfc33739-a0b0-48ec-816f-f53498efabfc + ff786c49-58b3-484c-a643-412591321871 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:14 GMT + recorded_at: Sun, 24 Nov 2019 15:46:34 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -1019,11 +916,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193614Z + - 20191124T154634Z X-Amz-Content-Sha256: - 5eb619b65efcc18b666b442690dffbc9dc19e666a24123308c3d15790aace0fa Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '768' @@ -1035,13 +932,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a995834b-6494-455f-8a47-dc1aa5c8f3de + - 819ce508-1ca6-4423-9e9a-1bb4548b38ad Content-Type: - text/xml Content-Length: - '584' Date: - - Fri, 08 Nov 2019 19:36:14 GMT + - Sun, 24 Nov 2019 15:46:33 GMT body: encoding: UTF-8 string: | @@ -1061,11 +958,11 @@ http_interactions: - a995834b-6494-455f-8a47-dc1aa5c8f3de + 819ce508-1ca6-4423-9e9a-1bb4548b38ad http_version: - recorded_at: Fri, 08 Nov 2019 19:36:14 GMT + recorded_at: Sun, 24 Nov 2019 15:46:34 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one_mod.yml @@ -1113,11 +1010,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193614Z + - 20191124T154634Z X-Amz-Content-Sha256: - 5ad35ad2af86222e60a5cfe2121a209113cd24760fbdbba63571a7dfd0ae619a Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -1130,13 +1027,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - 8emxJNWW4F9hu99o9hl/24jGYAVd1HjlPW8M06woqx95x+dv5BjohJzgRQTsnf1yKRcV9EIvGns= + - wLNOjaCKeamQAjLo7eeDE47py+JM8XnIhI+gbnXie7U+bQ4f/kOWNEL8ioU1+imygJJrAEbtBQk= X-Amz-Request-Id: - - D37F07D26C937330 + - 5264C4CC5D92F244 Date: - - Fri, 08 Nov 2019 19:36:15 GMT + - Sun, 24 Nov 2019 15:46:36 GMT X-Amz-Version-Id: - - et5p3vPzy98j1hgmg4_C0X6LNDiukE8i + - 0LNI6gpHC9dhDVs3_d261GrHgupNgkNn X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -1149,13 +1046,13 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:36:14 GMT + recorded_at: Sun, 24 Nov 2019 15:46:35 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-new-template-20191108-193614&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.UsePreviousValue=true&StackName=spec-aws-ruby-stack-update-new-template&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one_mod.yml&Version=2010-05-15 + string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-new-template-20191124-154635&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.UsePreviousValue=true&StackName=spec-aws-ruby-stack-update-new-template&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one_mod.yml&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1166,11 +1063,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193614Z + - 20191124T154635Z X-Amz-Content-Sha256: - - b9b7948551b6364194c4a275a3253607fcc5e2c439d2c941cbc6d7f0853532ae + - d9a2b0ccabec649421782cd11626ad09ab10e9f91376be6dcd14f702c4e0f0c6 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '477' @@ -1182,33 +1079,33 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - b6eefcd5-c44c-4f94-bbc8-a020a5c9156b + - ce5aee07-555d-4ca9-bdf9-2e297f403bd5 Content-Type: - text/xml Content-Length: - '587' Date: - - Fri, 08 Nov 2019 19:36:15 GMT + - Sun, 24 Nov 2019 15:46:35 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - b6eefcd5-c44c-4f94-bbc8-a020a5c9156b + ce5aee07-555d-4ca9-bdf9-2e297f403bd5 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:16 GMT + recorded_at: Sun, 24 Nov 2019 15:46:36 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191108-193614%2Fab84c3e2-2e17-40b7-8ad1-40cd55241c7b&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191124-154635%2F7dff374a-7496-47cc-be27-c97a5e572d61&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1219,11 +1116,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193616Z + - 20191124T154636Z X-Amz-Content-Sha256: - - 4df414f5005dbd9e86d906bbac61abdaa1ba56bfc8d72703b17768e250ba0464 + - b2b52d430f62fa8830e1412a2fb9796f0e132f654a355e540eba1c7511a22d3b Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '220' @@ -1235,26 +1132,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 86dd4aa1-dbe9-4faf-8256-fa3281ad8cd7 + - 1e019c0c-914e-4f15-b9ca-1baa532bb3c2 Content-Type: - text/xml Content-Length: - '1309' Date: - - Fri, 08 Nov 2019 19:36:15 GMT + - Sun, 24 Nov 2019 15:46:35 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:36:16.014Z + 2019-11-24T15:46:36.058Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 UNAVAILABLE spec-aws-ruby-stack-update-new-template - spec-aws-ruby-stack-update-new-template-20191108-193614 + spec-aws-ruby-stack-update-new-template-20191124-154635 @@ -1266,21 +1163,21 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 CREATE_IN_PROGRESS - 86dd4aa1-dbe9-4faf-8256-fa3281ad8cd7 + 1e019c0c-914e-4f15-b9ca-1baa532bb3c2 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:16 GMT + recorded_at: Sun, 24 Nov 2019 15:46:36 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191108-193614%2Fab84c3e2-2e17-40b7-8ad1-40cd55241c7b&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191124-154635%2F7dff374a-7496-47cc-be27-c97a5e572d61&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1291,11 +1188,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193621Z + - 20191124T154641Z X-Amz-Content-Sha256: - - 4df414f5005dbd9e86d906bbac61abdaa1ba56bfc8d72703b17768e250ba0464 + - b2b52d430f62fa8830e1412a2fb9796f0e132f654a355e540eba1c7511a22d3b Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '220' @@ -1307,26 +1204,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - ffee679d-28d3-42d1-a939-1362c4167052 + - b7d44105-ea66-4a64-9719-76eed41bd156 Content-Type: - text/xml Content-Length: - '1304' Date: - - Fri, 08 Nov 2019 19:36:21 GMT + - Sun, 24 Nov 2019 15:46:42 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:36:16.014Z + 2019-11-24T15:46:36.058Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 AVAILABLE spec-aws-ruby-stack-update-new-template - spec-aws-ruby-stack-update-new-template-20191108-193614 + spec-aws-ruby-stack-update-new-template-20191124-154635 @@ -1338,21 +1235,21 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 CREATE_COMPLETE - ffee679d-28d3-42d1-a939-1362c4167052 + b7d44105-ea66-4a64-9719-76eed41bd156 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:21 GMT + recorded_at: Sun, 24 Nov 2019 15:46:42 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191108-193614%2Fab84c3e2-2e17-40b7-8ad1-40cd55241c7b&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191124-154635%2F7dff374a-7496-47cc-be27-c97a5e572d61&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1363,11 +1260,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193621Z + - 20191124T154642Z X-Amz-Content-Sha256: - - 4df414f5005dbd9e86d906bbac61abdaa1ba56bfc8d72703b17768e250ba0464 + - b2b52d430f62fa8830e1412a2fb9796f0e132f654a355e540eba1c7511a22d3b Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '220' @@ -1379,26 +1276,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - ce1e987c-aefa-4ae7-9644-6e0019ecc1a6 + - b1cc3f2a-c2c9-416a-8df8-125dce264d66 Content-Type: - text/xml Content-Length: - '1304' Date: - - Fri, 08 Nov 2019 19:36:21 GMT + - Sun, 24 Nov 2019 15:46:42 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:36:16.014Z + 2019-11-24T15:46:36.058Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 AVAILABLE spec-aws-ruby-stack-update-new-template - spec-aws-ruby-stack-update-new-template-20191108-193614 + spec-aws-ruby-stack-update-new-template-20191124-154635 @@ -1410,21 +1307,21 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 CREATE_COMPLETE - ce1e987c-aefa-4ae7-9644-6e0019ecc1a6 + b1cc3f2a-c2c9-416a-8df8-125dce264d66 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:22 GMT + recorded_at: Sun, 24 Nov 2019 15:46:43 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191108-193614%2Fab84c3e2-2e17-40b7-8ad1-40cd55241c7b&Version=2010-05-15 + string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-template-20191124-154635%2F7dff374a-7496-47cc-be27-c97a5e572d61&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1435,11 +1332,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193622Z + - 20191124T154643Z X-Amz-Content-Sha256: - - 93122ec8bb7dea694d21c3d3eab229060f2c436c807c4892340087e9af73e84d + - 50db1e41f9468e8d6c12ee3886ce36fa426555628dbf1a6e6af4398fd846b67b Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '219' @@ -1451,24 +1348,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - dba98fe1-085a-47e3-88a5-bfc65296b319 + - cca19d48-d038-4db1-8917-e98a655f2eac Content-Type: - text/xml Content-Length: - '250' Date: - - Fri, 08 Nov 2019 19:36:22 GMT + - Sun, 24 Nov 2019 15:46:43 GMT body: encoding: UTF-8 string: | - dba98fe1-085a-47e3-88a5-bfc65296b319 + cca19d48-d038-4db1-8917-e98a655f2eac http_version: - recorded_at: Fri, 08 Nov 2019 19:36:22 GMT + recorded_at: Sun, 24 Nov 2019 15:46:43 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1485,11 +1382,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193622Z + - 20191124T154643Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1501,13 +1398,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 16c906c1-694e-441b-a30b-9bef01380858 + - e1593094-14ca-4971-95de-9ab3ea3c6dd1 Content-Type: - text/xml Content-Length: - '1916' Date: - - Fri, 08 Nov 2019 19:36:23 GMT + - Sun, 24 Nov 2019 15:46:43 GMT body: encoding: UTF-8 string: | @@ -1522,9 +1419,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod @@ -1536,7 +1433,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -1547,16 +1444,16 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - 16c906c1-694e-441b-a30b-9bef01380858 + e1593094-14ca-4971-95de-9ab3ea3c6dd1 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:23 GMT + recorded_at: Sun, 24 Nov 2019 15:46:44 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1573,11 +1470,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193623Z + - 20191124T154644Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1589,13 +1486,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - fcac776f-0a88-4bab-bb73-1f4e81575f59 + - df7c1c35-de01-4ec4-a466-8dba4e95cec0 Content-Type: - text/xml Content-Length: - '1916' Date: - - Fri, 08 Nov 2019 19:36:22 GMT + - Sun, 24 Nov 2019 15:46:45 GMT body: encoding: UTF-8 string: | @@ -1610,9 +1507,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod @@ -1624,7 +1521,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -1635,16 +1532,16 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - fcac776f-0a88-4bab-bb73-1f4e81575f59 + df7c1c35-de01-4ec4-a466-8dba4e95cec0 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:23 GMT + recorded_at: Sun, 24 Nov 2019 15:46:45 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1661,11 +1558,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193628Z + - 20191124T154650Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1677,13 +1574,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 20200355-5be7-4413-be1a-dc5eabb4c692 + - 51aa4f7d-f19e-410c-b7d8-17bf2c959dcf Content-Type: - text/xml Content-Length: - '1916' Date: - - Fri, 08 Nov 2019 19:36:27 GMT + - Sun, 24 Nov 2019 15:46:49 GMT body: encoding: UTF-8 string: | @@ -1698,9 +1595,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod @@ -1712,7 +1609,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -1723,16 +1620,16 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - 20200355-5be7-4413-be1a-dc5eabb4c692 + 51aa4f7d-f19e-410c-b7d8-17bf2c959dcf http_version: - recorded_at: Fri, 08 Nov 2019 19:36:28 GMT + recorded_at: Sun, 24 Nov 2019 15:46:50 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1749,11 +1646,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193628Z + - 20191124T154650Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1765,13 +1662,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4cc07d4a-ce50-4c57-9127-e0195cd84e6b + - 59770b26-f8b4-4c43-8da8-197d1d503eb9 Content-Type: - text/xml Content-Length: - '1916' Date: - - Fri, 08 Nov 2019 19:36:28 GMT + - Sun, 24 Nov 2019 15:46:50 GMT body: encoding: UTF-8 string: | @@ -1786,9 +1683,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod @@ -1800,7 +1697,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -1811,16 +1708,16 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - 4cc07d4a-ce50-4c57-9127-e0195cd84e6b + 59770b26-f8b4-4c43-8da8-197d1d503eb9 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:29 GMT + recorded_at: Sun, 24 Nov 2019 15:46:51 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1837,11 +1734,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193629Z + - 20191124T154651Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1853,13 +1750,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - c8bae40c-b0dd-4d50-b6ee-7391637570d7 + - 39a8d60b-525c-4d04-a394-a022f812c3ed Content-Type: - text/xml Content-Length: - '1916' Date: - - Fri, 08 Nov 2019 19:36:28 GMT + - Sun, 24 Nov 2019 15:46:51 GMT body: encoding: UTF-8 string: | @@ -1874,9 +1771,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod @@ -1888,7 +1785,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -1899,16 +1796,16 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191108-193614/ab84c3e2-2e17-40b7-8ad1-40cd55241c7b + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-template-20191124-154635/7dff374a-7496-47cc-be27-c97a5e572d61 - c8bae40c-b0dd-4d50-b6ee-7391637570d7 + 39a8d60b-525c-4d04-a394-a022f812c3ed http_version: - recorded_at: Fri, 08 Nov 2019 19:36:29 GMT + recorded_at: Sun, 24 Nov 2019 15:46:51 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1925,11 +1822,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193629Z + - 20191124T154651Z X-Amz-Content-Sha256: - bb18180cd3fd9efa06741315862be9b93947a107e635e6e301718f254e66c030 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '87' @@ -1941,23 +1838,23 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - d9d70841-4d32-4703-9361-e3899f60695c + - d8ddaf45-f28a-47e4-8e3a-e74703ff268d Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:36:29 GMT + - Sun, 24 Nov 2019 15:46:51 GMT body: encoding: UTF-8 string: | - d9d70841-4d32-4703-9361-e3899f60695c + d8ddaf45-f28a-47e4-8e3a-e74703ff268d http_version: - recorded_at: Fri, 08 Nov 2019 19:36:30 GMT + recorded_at: Sun, 24 Nov 2019 15:46:52 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1974,11 +1871,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193630Z + - 20191124T154652Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -1990,13 +1887,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - fc0f5bb3-d91f-4763-8221-ebccccbd79bf + - 91763009-bbbc-41e7-845b-a468fddaa458 Content-Type: - text/xml Content-Length: - - '1859' + - '1797' Date: - - Fri, 08 Nov 2019 19:36:29 GMT + - Sun, 24 Nov 2019 15:46:52 GMT body: encoding: UTF-8 string: | @@ -2011,14 +1908,14 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod DELETE_IN_PROGRESS - 2019-11-08T19:36:29.956Z + 2019-11-24T15:46:52.131Z false @@ -2026,8 +1923,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z - User Initiated + 2019-11-24T15:46:43.747Z BucketName @@ -2042,11 +1938,11 @@ http_interactions: - fc0f5bb3-d91f-4763-8221-ebccccbd79bf + 91763009-bbbc-41e7-845b-a468fddaa458 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:30 GMT + recorded_at: Sun, 24 Nov 2019 15:46:52 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2063,11 +1959,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193630Z + - 20191124T154652Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -2079,13 +1975,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a1f01a2d-dcfa-4bf7-a64c-dac5362b95de + - b47d5af9-885d-42d1-936d-8aad35635c9c Content-Type: - text/xml Content-Length: - '1797' Date: - - Fri, 08 Nov 2019 19:36:29 GMT + - Sun, 24 Nov 2019 15:46:52 GMT body: encoding: UTF-8 string: | @@ -2100,14 +1996,14 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:35:35.430Z + 2019-11-24T15:46:06.154Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/eeaeb5b0-025e-11ea-aa58-02848c93abf4 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-template/867771b0-0ed1-11ea-8f06-025282f53354 spec-aws-ruby-stack-update-new-template Test template one mod DELETE_IN_PROGRESS - 2019-11-08T19:36:29.956Z + 2019-11-24T15:46:52.131Z false @@ -2115,7 +2011,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:36:22.601Z + 2019-11-24T15:46:43.747Z BucketName @@ -2130,11 +2026,11 @@ http_interactions: - a1f01a2d-dcfa-4bf7-a64c-dac5362b95de + b47d5af9-885d-42d1-936d-8aad35635c9c http_version: - recorded_at: Fri, 08 Nov 2019 19:36:30 GMT + recorded_at: Sun, 24 Nov 2019 15:46:53 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2151,11 +2047,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193635Z + - 20191124T154658Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -2167,13 +2063,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - e592d598-8566-412a-b0ef-27585734ccf9 + - bb410315-7f31-491f-9715-33c61dfa14b6 Content-Type: - text/xml Content-Length: - '325' Date: - - Fri, 08 Nov 2019 19:36:35 GMT + - Sun, 24 Nov 2019 15:46:58 GMT Connection: - close body: @@ -2185,10 +2081,10 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-update-new-template does not exist - e592d598-8566-412a-b0ef-27585734ccf9 + bb410315-7f31-491f-9715-33c61dfa14b6 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:36 GMT + recorded_at: Sun, 24 Nov 2019 15:46:58 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2205,11 +2101,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193636Z + - 20191124T154658Z X-Amz-Content-Sha256: - d95f800c28614edc4ceb0feda5e47d26d6cef558af128e412c1639dc293a4996 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -2221,13 +2117,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - 3dd86e58-ef8a-4736-88cb-f375248e0768 + - a8394e8e-5f5a-4901-9c68-0173a6658e05 Content-Type: - text/xml Content-Length: - '325' Date: - - Fri, 08 Nov 2019 19:36:36 GMT + - Sun, 24 Nov 2019 15:46:59 GMT Connection: - close body: @@ -2239,8 +2135,8 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-update-new-template does not exist - 3dd86e58-ef8a-4736-88cb-f375248e0768 + a8394e8e-5f5a-4901-9c68-0173a6658e05 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:36 GMT + recorded_at: Sun, 24 Nov 2019 15:46:59 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_new_parameters.yml b/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_new_parameters.yml index 48aabec..e56f66d 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_new_parameters.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/can_be_updated_with_new_parameters.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-update-new-parameters&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154456Z + X-Amz-Content-Sha256: + - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '92' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 9e3f01c4-7f07-43e5-8c42-53b8e8c9e482 + Content-Type: + - text/xml + Content-Length: + - '327' + Date: + - Sun, 24 Nov 2019 15:44:56 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-update-new-parameters does not exist + + 9e3f01c4-7f07-43e5-8c42-53b8e8c9e482 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:44:56 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193426Z + - 20191124T154456Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3ab4da82-993e-463c-919d-baae227111ee + - 9d006ee7-219f-479e-9ea8-685ed689ca44 Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:34:26 GMT + - Sun, 24 Nov 2019 15:44:56 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 3ab4da82-993e-463c-919d-baae227111ee + 9d006ee7-219f-479e-9ea8-685ed689ca44 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:27 GMT + recorded_at: Sun, 24 Nov 2019 15:44:57 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193427Z + - 20191124T154457Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - h7e1Us/CQAxtJ5Dcr5zibyV51joz7F8oStMA7FGTXUts3bF5QxaBlUrxU9sllJ7xF+YdJXpNxhY= + - lT/UAgAlCNyU8fY7/iXpdQ6f+X+EJ5ADK9uefSxsNRQ2eQ+1/dnncCM2/88x+z3UAKSbY3geu94= X-Amz-Request-Id: - - 3D4DB80F96B70C83 + - 8BE26051EC0E96AB Date: - - Fri, 08 Nov 2019 19:34:28 GMT + - Sun, 24 Nov 2019 15:44:58 GMT X-Amz-Version-Id: - - awFjQBjI_ahJ57HZhiloP4sUxnqoEMog + - DiCXx0bkhFNHKTfZ6wqiJhKQvmjq4Ps2 X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:34:27 GMT + recorded_at: Sun, 24 Nov 2019 15:44:57 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193427Z + - 20191124T154457Z X-Amz-Content-Sha256: - d2063d201cc84783e87836d4c0d4040cdb0f7e817f97e03849af6532a905350e Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '449' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2209489b-dd82-46ca-ac85-9ecab1089cb8 + - c83d53b5-f75c-473e-91dd-8c05742a5678 Content-Type: - text/xml Content-Length: - '411' Date: - - Fri, 08 Nov 2019 19:34:27 GMT + - Sun, 24 Nov 2019 15:44:58 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 - 2209489b-dd82-46ca-ac85-9ecab1089cb8 + c83d53b5-f75c-473e-91dd-8c05742a5678 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:28 GMT + recorded_at: Sun, 24 Nov 2019 15:44:58 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193428Z + - 20191124T154458Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 0e0767bf-97c1-4207-9704-94732b8dd585 + - 7374cfe7-09fe-4044-8dfd-e386c2755f0a Content-Type: - text/xml Content-Length: - - '1382' + - '1444' Date: - - Fri, 08 Nov 2019 19:34:27 GMT + - Sun, 24 Nov 2019 15:44:59 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -259,6 +313,7 @@ http_interactions: NOT_CHECKED false + User Initiated BucketName @@ -273,11 +328,11 @@ http_interactions: - 0e0767bf-97c1-4207-9704-94732b8dd585 + 7374cfe7-09fe-4044-8dfd-e386c2755f0a http_version: - recorded_at: Fri, 08 Nov 2019 19:34:28 GMT + recorded_at: Sun, 24 Nov 2019 15:44:59 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -294,11 +349,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193428Z + - 20191124T154459Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -310,13 +365,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 34bcda09-bacb-4980-bc7f-b5e94154ee2a + - 43e3effa-77ad-439b-8a0f-e25d73acfe2a Content-Type: - text/xml Content-Length: - '1382' Date: - - Fri, 08 Nov 2019 19:34:29 GMT + - Sun, 24 Nov 2019 15:44:59 GMT body: encoding: UTF-8 string: | @@ -324,9 +379,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -352,11 +407,11 @@ http_interactions: - 34bcda09-bacb-4980-bc7f-b5e94154ee2a + 43e3effa-77ad-439b-8a0f-e25d73acfe2a http_version: - recorded_at: Fri, 08 Nov 2019 19:34:29 GMT + recorded_at: Sun, 24 Nov 2019 15:44:59 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -373,11 +428,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193434Z + - 20191124T154504Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -389,13 +444,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 0f092c80-1c6f-4c51-8929-0ec0f20101ea + - df2c6228-4263-4297-bebe-795d804fd5cb Content-Type: - text/xml Content-Length: - '1382' Date: - - Fri, 08 Nov 2019 19:34:34 GMT + - Sun, 24 Nov 2019 15:45:04 GMT body: encoding: UTF-8 string: | @@ -403,9 +458,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -431,11 +486,11 @@ http_interactions: - 0f092c80-1c6f-4c51-8929-0ec0f20101ea + df2c6228-4263-4297-bebe-795d804fd5cb http_version: - recorded_at: Fri, 08 Nov 2019 19:34:34 GMT + recorded_at: Sun, 24 Nov 2019 15:45:04 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -452,11 +507,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193439Z + - 20191124T154509Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -468,13 +523,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e912f0a3-1741-46d0-9697-412e39f83572 + - 242ec22d-01d8-4aed-a02c-51e3d8996790 Content-Type: - text/xml Content-Length: - '1382' Date: - - Fri, 08 Nov 2019 19:34:39 GMT + - Sun, 24 Nov 2019 15:45:10 GMT body: encoding: UTF-8 string: | @@ -482,9 +537,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -510,11 +565,11 @@ http_interactions: - e912f0a3-1741-46d0-9697-412e39f83572 + 242ec22d-01d8-4aed-a02c-51e3d8996790 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:40 GMT + recorded_at: Sun, 24 Nov 2019 15:45:10 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -531,11 +586,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193445Z + - 20191124T154515Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -547,13 +602,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 881dddd7-45cb-43db-ab11-d6a44a84f332 + - bc2a7399-bde7-403f-a580-006d03800b38 Content-Type: - text/xml Content-Length: - '1382' Date: - - Fri, 08 Nov 2019 19:34:44 GMT + - Sun, 24 Nov 2019 15:45:15 GMT body: encoding: UTF-8 string: | @@ -561,9 +616,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -589,11 +644,11 @@ http_interactions: - 881dddd7-45cb-43db-ab11-d6a44a84f332 + bc2a7399-bde7-403f-a580-006d03800b38 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:45 GMT + recorded_at: Sun, 24 Nov 2019 15:45:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -610,11 +665,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193450Z + - 20191124T154520Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -626,13 +681,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bc91e532-774a-4a43-9516-a9926def10b6 + - a01b2bb0-46f2-4de6-a7e8-213ffc41b9c3 Content-Type: - text/xml Content-Length: - '1382' Date: - - Fri, 08 Nov 2019 19:34:50 GMT + - Sun, 24 Nov 2019 15:45:21 GMT body: encoding: UTF-8 string: | @@ -640,9 +695,9 @@ http_interactions: - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -668,11 +723,11 @@ http_interactions: - bc91e532-774a-4a43-9516-a9926def10b6 + a01b2bb0-46f2-4de6-a7e8-213ffc41b9c3 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:50 GMT + recorded_at: Sun, 24 Nov 2019 15:45:21 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -689,11 +744,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193455Z + - 20191124T154526Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -705,13 +760,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 76d673dd-15fa-4885-9d28-18a4f29f45c2 + - 18f39275-d2fa-4f16-8811-71d29bef9212 Content-Type: - text/xml Content-Length: - '1663' Date: - - Fri, 08 Nov 2019 19:34:55 GMT + - Sun, 24 Nov 2019 15:45:26 GMT body: encoding: UTF-8 string: | @@ -726,9 +781,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -754,11 +809,11 @@ http_interactions: - 76d673dd-15fa-4885-9d28-18a4f29f45c2 + 18f39275-d2fa-4f16-8811-71d29bef9212 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:56 GMT + recorded_at: Sun, 24 Nov 2019 15:45:26 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -775,11 +830,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193456Z + - 20191124T154526Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -791,13 +846,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 076fa181-6e10-4afc-8af6-6f5da23c84c0 + - 212ddb60-45b7-48ff-af5b-1ccbb55d2f27 Content-Type: - text/xml Content-Length: - '1663' Date: - - Fri, 08 Nov 2019 19:34:56 GMT + - Sun, 24 Nov 2019 15:45:26 GMT body: encoding: UTF-8 string: | @@ -812,9 +867,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -840,17 +895,17 @@ http_interactions: - 076fa181-6e10-4afc-8af6-6f5da23c84c0 + 212ddb60-45b7-48ff-af5b-1ccbb55d2f27 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:56 GMT + recorded_at: Sun, 24 Nov 2019 15:45:26 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-new-parameters-20191108-193456&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.ParameterValue=there&StackName=spec-aws-ruby-stack-update-new-parameters&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one.yml&Version=2010-05-15 + string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-new-parameters-20191124-154526&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.ParameterValue=there&StackName=spec-aws-ruby-stack-update-new-parameters&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one.yml&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -861,11 +916,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193456Z + - 20191124T154526Z X-Amz-Content-Sha256: - - 6b8fcb066ae716a8a9458dbd994bc268d9c5a225aea05a639ca96ebfb782a5b1 + - 45acdb3cdaeef4c0c023208715d07ea6d548904ba41f77d569e4184f2edced11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '476' @@ -877,33 +932,33 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8322b995-d484-439f-8280-a793ddbe7780 + - df05e9f6-bb49-426a-af09-01dcf08d878f Content-Type: - text/xml Content-Length: - '591' Date: - - Fri, 08 Nov 2019 19:34:56 GMT + - Sun, 24 Nov 2019 15:45:27 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - 8322b995-d484-439f-8280-a793ddbe7780 + df05e9f6-bb49-426a-af09-01dcf08d878f http_version: - recorded_at: Fri, 08 Nov 2019 19:34:57 GMT + recorded_at: Sun, 24 Nov 2019 15:45:28 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191108-193456%2F8efb6f18-f783-47c4-b492-087246b36d21&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191124-154526%2F2fce3417-9858-4635-892d-54c23cebf090&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -914,11 +969,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193457Z + - 20191124T154528Z X-Amz-Content-Sha256: - - 63310a186222dc7995a167e0c05ec96dbc1c25bcd14cf467a657b63ccf33555f + - ade4db41ab57bdc618064e57b1d9adb46e57de68b030734c7ba87674abdbe5c5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '222' @@ -930,26 +985,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 110a5ba8-fe22-4fd0-8c0a-b6a041c5ea3d + - 108e4bf9-b2d9-408c-9f8b-ecc5a4f2130f Content-Type: - text/xml Content-Length: - '1317' Date: - - Fri, 08 Nov 2019 19:34:57 GMT + - Sun, 24 Nov 2019 15:45:27 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:34:57.590Z + 2019-11-24T15:45:28.040Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 UNAVAILABLE spec-aws-ruby-stack-update-new-parameters - spec-aws-ruby-stack-update-new-parameters-20191108-193456 + spec-aws-ruby-stack-update-new-parameters-20191124-154526 @@ -961,21 +1016,21 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 CREATE_IN_PROGRESS - 110a5ba8-fe22-4fd0-8c0a-b6a041c5ea3d + 108e4bf9-b2d9-408c-9f8b-ecc5a4f2130f http_version: - recorded_at: Fri, 08 Nov 2019 19:34:58 GMT + recorded_at: Sun, 24 Nov 2019 15:45:28 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191108-193456%2F8efb6f18-f783-47c4-b492-087246b36d21&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191124-154526%2F2fce3417-9858-4635-892d-54c23cebf090&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -986,11 +1041,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193503Z + - 20191124T154533Z X-Amz-Content-Sha256: - - 63310a186222dc7995a167e0c05ec96dbc1c25bcd14cf467a657b63ccf33555f + - ade4db41ab57bdc618064e57b1d9adb46e57de68b030734c7ba87674abdbe5c5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '222' @@ -1002,7 +1057,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e30d8518-64f4-4577-b6c9-42a28e4493e4 + - fb2e83d7-0ff8-46ed-a21d-83e9ea07d99b Content-Type: - text/xml Content-Length: @@ -1010,16 +1065,16 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:35:03 GMT + - Sun, 24 Nov 2019 15:45:33 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:34:57.590Z + 2019-11-24T15:45:28.040Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 AVAILABLE spec-aws-ruby-stack-update-new-parameters @@ -1044,11 +1099,11 @@ http_interactions: Static ParameterReference - TagValue Never Tags + TagValue False @@ -1056,7 +1111,7 @@ http_interactions: - spec-aws-ruby-stack-update-new-parameters-20191108-193456 + spec-aws-ruby-stack-update-new-parameters-20191124-154526 @@ -1068,21 +1123,21 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 CREATE_COMPLETE - e30d8518-64f4-4577-b6c9-42a28e4493e4 + fb2e83d7-0ff8-46ed-a21d-83e9ea07d99b http_version: - recorded_at: Fri, 08 Nov 2019 19:35:03 GMT + recorded_at: Sun, 24 Nov 2019 15:45:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191108-193456%2F8efb6f18-f783-47c4-b492-087246b36d21&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191124-154526%2F2fce3417-9858-4635-892d-54c23cebf090&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1093,11 +1148,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193503Z + - 20191124T154534Z X-Amz-Content-Sha256: - - 63310a186222dc7995a167e0c05ec96dbc1c25bcd14cf467a657b63ccf33555f + - ade4db41ab57bdc618064e57b1d9adb46e57de68b030734c7ba87674abdbe5c5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '222' @@ -1109,7 +1164,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 540cc050-ebf3-4c9b-a152-9dd45f49c0c3 + - '09d76184-4aa1-4867-a6a6-68521489b3d4' Content-Type: - text/xml Content-Length: @@ -1117,16 +1172,16 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:35:03 GMT + - Sun, 24 Nov 2019 15:45:33 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:34:57.590Z + 2019-11-24T15:45:28.040Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 AVAILABLE spec-aws-ruby-stack-update-new-parameters @@ -1151,11 +1206,11 @@ http_interactions: Static ParameterReference + TagValue Never Tags - TagValue False @@ -1163,7 +1218,7 @@ http_interactions: - spec-aws-ruby-stack-update-new-parameters-20191108-193456 + spec-aws-ruby-stack-update-new-parameters-20191124-154526 @@ -1175,21 +1230,21 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 CREATE_COMPLETE - 540cc050-ebf3-4c9b-a152-9dd45f49c0c3 + 09d76184-4aa1-4867-a6a6-68521489b3d4 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:03 GMT + recorded_at: Sun, 24 Nov 2019 15:45:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191108-193456%2F8efb6f18-f783-47c4-b492-087246b36d21&Version=2010-05-15 + string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-new-parameters-20191124-154526%2F2fce3417-9858-4635-892d-54c23cebf090&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1200,11 +1255,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193503Z + - 20191124T154534Z X-Amz-Content-Sha256: - - e94632e8c5ccc2d552f5a1f0f086638d1b00cf70f2149ec9c57397ca3695b1bc + - 35f7a5b7b6ae4a275c35a8a4e1155811613fc27bc550e8d276266b817226b631 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '221' @@ -1216,24 +1271,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - b36e7bd2-dee7-4e04-badb-53874d339099 + - 16f64774-2632-4f20-a216-02ab4fbcde9a Content-Type: - text/xml Content-Length: - '250' Date: - - Fri, 08 Nov 2019 19:35:03 GMT + - Sun, 24 Nov 2019 15:45:34 GMT body: encoding: UTF-8 string: | - b36e7bd2-dee7-4e04-badb-53874d339099 + 16f64774-2632-4f20-a216-02ab4fbcde9a http_version: - recorded_at: Fri, 08 Nov 2019 19:35:04 GMT + recorded_at: Sun, 24 Nov 2019 15:45:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1250,11 +1305,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193504Z + - 20191124T154534Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1266,13 +1321,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 12af29f9-3de2-4f3a-9227-d5facedb001c + - bfe9c4b4-68cc-46c3-b48e-d395938434d5 Content-Type: - text/xml Content-Length: - '1982' Date: - - Fri, 08 Nov 2019 19:35:04 GMT + - Sun, 24 Nov 2019 15:45:34 GMT body: encoding: UTF-8 string: | @@ -1287,9 +1342,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1301,7 +1356,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z User Initiated @@ -1313,16 +1368,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - 12af29f9-3de2-4f3a-9227-d5facedb001c + bfe9c4b4-68cc-46c3-b48e-d395938434d5 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:04 GMT + recorded_at: Sun, 24 Nov 2019 15:45:35 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1339,11 +1394,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193504Z + - 20191124T154535Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1355,13 +1410,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4124ec03-1245-44c4-91d1-e3eb2ebac172 + - dcb893dd-cb10-4dbc-a491-fb7aefa875ea Content-Type: - text/xml Content-Length: - '1920' Date: - - Fri, 08 Nov 2019 19:35:04 GMT + - Sun, 24 Nov 2019 15:45:35 GMT body: encoding: UTF-8 string: | @@ -1376,9 +1431,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1390,7 +1445,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1401,16 +1456,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - 4124ec03-1245-44c4-91d1-e3eb2ebac172 + dcb893dd-cb10-4dbc-a491-fb7aefa875ea http_version: - recorded_at: Fri, 08 Nov 2019 19:35:04 GMT + recorded_at: Sun, 24 Nov 2019 15:45:35 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1427,11 +1482,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193509Z + - 20191124T154540Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1443,13 +1498,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e941de27-e34f-4669-8b07-506a2129f4d2 + - e17be342-45cf-47c9-bfaf-1e9d9c45ce94 Content-Type: - text/xml Content-Length: - '1920' Date: - - Fri, 08 Nov 2019 19:35:10 GMT + - Sun, 24 Nov 2019 15:45:40 GMT body: encoding: UTF-8 string: | @@ -1464,9 +1519,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1478,7 +1533,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1489,16 +1544,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - e941de27-e34f-4669-8b07-506a2129f4d2 + e17be342-45cf-47c9-bfaf-1e9d9c45ce94 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:10 GMT + recorded_at: Sun, 24 Nov 2019 15:45:41 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1515,11 +1570,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193515Z + - 20191124T154546Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1531,13 +1586,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bb2c685c-a2df-4926-94f1-1c7aa67192ce + - 43c824f5-8126-40e7-9ee5-40323dc86cb7 Content-Type: - text/xml Content-Length: - '1920' Date: - - Fri, 08 Nov 2019 19:35:15 GMT + - Sun, 24 Nov 2019 15:45:45 GMT body: encoding: UTF-8 string: | @@ -1552,9 +1607,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1566,7 +1621,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1577,16 +1632,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - bb2c685c-a2df-4926-94f1-1c7aa67192ce + 43c824f5-8126-40e7-9ee5-40323dc86cb7 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:15 GMT + recorded_at: Sun, 24 Nov 2019 15:45:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1603,11 +1658,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193520Z + - 20191124T154551Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1619,13 +1674,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1b0ccf44-5343-4550-afb7-88d8acdfad0c + - 855924ff-f9e0-43da-a47d-41db353c048a Content-Type: - text/xml Content-Length: - '1920' Date: - - Fri, 08 Nov 2019 19:35:20 GMT + - Sun, 24 Nov 2019 15:45:51 GMT body: encoding: UTF-8 string: | @@ -1640,9 +1695,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1654,7 +1709,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1665,16 +1720,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - 1b0ccf44-5343-4550-afb7-88d8acdfad0c + 855924ff-f9e0-43da-a47d-41db353c048a http_version: - recorded_at: Fri, 08 Nov 2019 19:35:21 GMT + recorded_at: Sun, 24 Nov 2019 15:45:51 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1691,11 +1746,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193526Z + - 20191124T154556Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1707,13 +1762,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - de932bfd-610e-425f-80c3-35e44bf91c78 + - de5d8f5a-b185-4afb-9fff-55159a1b13f1 Content-Type: - text/xml Content-Length: - '1920' Date: - - Fri, 08 Nov 2019 19:35:26 GMT + - Sun, 24 Nov 2019 15:45:56 GMT body: encoding: UTF-8 string: | @@ -1728,9 +1783,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1742,7 +1797,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1753,16 +1808,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - de932bfd-610e-425f-80c3-35e44bf91c78 + de5d8f5a-b185-4afb-9fff-55159a1b13f1 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:26 GMT + recorded_at: Sun, 24 Nov 2019 15:45:57 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1779,11 +1834,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193531Z + - 20191124T154602Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1795,13 +1850,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3453ce48-376e-46e5-8111-a24833b38357 + - 5e4861d8-65c8-4ba5-9f5a-6738f4071aca Content-Type: - text/xml Content-Length: - '1917' Date: - - Fri, 08 Nov 2019 19:35:31 GMT + - Sun, 24 Nov 2019 15:46:01 GMT body: encoding: UTF-8 string: | @@ -1816,9 +1871,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1830,7 +1885,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1841,16 +1896,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - 3453ce48-376e-46e5-8111-a24833b38357 + 5e4861d8-65c8-4ba5-9f5a-6738f4071aca http_version: - recorded_at: Fri, 08 Nov 2019 19:35:31 GMT + recorded_at: Sun, 24 Nov 2019 15:46:02 GMT - request: method: get uri: https://aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com/?tagging @@ -1867,11 +1922,11 @@ http_interactions: Host: - aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193531Z + - 20191124T154602Z X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/s3/aws4_request, SignedHeaders=host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '0' @@ -1883,11 +1938,11 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - it6Rxw9YJiNUJlUbrAmZCsazbWPqAOxT+b/oQc1zo27yRaA1NPqcvulhl7Lqykp9jglwylA4yVE= + - PyCIRtsiVk3vz4ZOEc/M1sVBa7yPDDcDECgceAaM80TjycDn9un8HDCv5oWdzds30LfKL2Ppolc= X-Amz-Request-Id: - - 723A1607EE29C25F + - 319423BAD5208EFE Date: - - Fri, 08 Nov 2019 19:35:33 GMT + - Sun, 24 Nov 2019 15:46:04 GMT Transfer-Encoding: - chunked Server: @@ -1896,9 +1951,9 @@ http_interactions: encoding: UTF-8 string: |- - Tag1thereaws:cloudformation:stack-namespec-aws-ruby-stack-update-new-parametersaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + Tag1thereaws:cloudformation:stack-namespec-aws-ruby-stack-update-new-parametersaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:32 GMT + recorded_at: Sun, 24 Nov 2019 15:46:03 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1915,11 +1970,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193532Z + - 20191124T154603Z X-Amz-Content-Sha256: - abccd74eca89849e4d19c03dc47b0fa39b43e3543ba76676b60e43a408dfbd82 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '92' @@ -1931,13 +1986,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - c445d553-4e86-4501-97ef-e2f90a6f2a3e + - 5b794733-941e-4b58-a756-8b079792a1e7 Content-Type: - text/xml Content-Length: - '1917' Date: - - Fri, 08 Nov 2019 19:35:31 GMT + - Sun, 24 Nov 2019 15:46:02 GMT body: encoding: UTF-8 string: | @@ -1952,9 +2007,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:34:28.442Z + 2019-11-24T15:44:58.650Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/c70f9510-025e-11ea-ab6c-0af659736e02 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-new-parameters/5e3a3c50-0ed1-11ea-8aa3-0a22cca2ed82 spec-aws-ruby-stack-update-new-parameters Test template one @@ -1966,7 +2021,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:35:04.175Z + 2019-11-24T15:45:34.827Z BucketName @@ -1977,16 +2032,16 @@ http_interactions: there - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191108-193456/8efb6f18-f783-47c4-b492-087246b36d21 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-new-parameters-20191124-154526/2fce3417-9858-4635-892d-54c23cebf090 - c445d553-4e86-4501-97ef-e2f90a6f2a3e + 5b794733-941e-4b58-a756-8b079792a1e7 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:32 GMT + recorded_at: Sun, 24 Nov 2019 15:46:03 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2003,11 +2058,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193532Z + - 20191124T154603Z X-Amz-Content-Sha256: - af6e286e1d4145245a971914fce508597f7a849b79b00c2c09acf1a45e5db1a6 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -2019,21 +2074,21 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5f2c4a10-c3dd-47c2-afe0-7197e203882a + - 59719e06-0376-4d97-be92-208cb5146810 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:35:32 GMT + - Sun, 24 Nov 2019 15:46:03 GMT body: encoding: UTF-8 string: | - 5f2c4a10-c3dd-47c2-afe0-7197e203882a + 59719e06-0376-4d97-be92-208cb5146810 http_version: - recorded_at: Fri, 08 Nov 2019 19:35:33 GMT + recorded_at: Sun, 24 Nov 2019 15:46:04 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/can_create_and_delete_in_a_dry_run.yml b/spec/cassettes/OpenStax_Aws_Stack/can_create_and_delete_in_a_dry_run.yml index ef3774b..42bc05b 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/can_create_and_delete_in_a_dry_run.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/can_create_and_delete_in_a_dry_run.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-create-delete-dry&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154734Z + X-Amz-Content-Sha256: + - 778b7e84e12984d834604e0a7e8794e8ababfdebc17c63d330af24cb06d225bb + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '88' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - b17c3e6c-431a-4e49-92d1-34f497f2979a + Content-Type: + - text/xml + Content-Length: + - '323' + Date: + - Sun, 24 Nov 2019 15:47:34 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-create-delete-dry does not exist + + b17c3e6c-431a-4e49-92d1-34f497f2979a + + http_version: + recorded_at: Sun, 24 Nov 2019 15:47:35 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193709Z + - 20191124T154735Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2658bc69-d37f-4249-aa2a-e0f4c97f16aa + - 4523308f-e5dd-4b31-843b-4e3c7b89cd3b Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:37:10 GMT + - Sun, 24 Nov 2019 15:47:35 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 2658bc69-d37f-4249-aa2a-e0f4c97f16aa + 4523308f-e5dd-4b31-843b-4e3c7b89cd3b http_version: - recorded_at: Fri, 08 Nov 2019 19:37:10 GMT + recorded_at: Sun, 24 Nov 2019 15:47:35 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193710Z + - 20191124T154735Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - 0T1W7PUZk5ngHl9LZ1kYaIItPmpJedYMg9ztXLn8CDDar3s3/MkG6eEMD+ppODr2f5X0d9CDcNQ= + - 2abr7LOkZ95FaI5wcCIKAvD1waQQDkSgkUhxQokz5za6zkds3qSII9WHWVMXT+oU7rbI5Cpn4hE= X-Amz-Request-Id: - - E8A4790F8DAD5DC1 + - 3527785D9715CF87 Date: - - Fri, 08 Nov 2019 19:37:11 GMT + - Sun, 24 Nov 2019 15:47:36 GMT X-Amz-Version-Id: - - Q30mDZHQwuQc3yyEbuHJXT9fvLM3wLBX + - zZup6HTlHUFCjVc9jLHjFUfq9rV12d1W X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:37:10 GMT + recorded_at: Sun, 24 Nov 2019 15:47:35 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193710Z + - 20191124T154735Z X-Amz-Content-Sha256: - 778b7e84e12984d834604e0a7e8794e8ababfdebc17c63d330af24cb06d225bb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -179,13 +233,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - b17756b5-7a30-4ef5-89e2-582c241bb19f + - f685cbea-d8f9-4d90-9f91-b1e48ac28e67 Content-Type: - text/xml Content-Length: - '323' Date: - - Fri, 08 Nov 2019 19:37:09 GMT + - Sun, 24 Nov 2019 15:47:35 GMT Connection: - close body: @@ -197,8 +251,8 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-create-delete-dry does not exist - b17756b5-7a30-4ef5-89e2-582c241bb19f + f685cbea-d8f9-4d90-9f91-b1e48ac28e67 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:10 GMT + recorded_at: Sun, 24 Nov 2019 15:47:36 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/can_get_a_existing_stack_s_template_without_specifying_a_file.yml b/spec/cassettes/OpenStax_Aws_Stack/can_get_a_existing_stack_s_template_without_specifying_a_file.yml index f7a5ec9..d55a0fd 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/can_get_a_existing_stack_s_template_without_specifying_a_file.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/can_get_a_existing_stack_s_template_without_specifying_a_file.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-existing-template&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154736Z + X-Amz-Content-Sha256: + - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '88' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - bcb70b5c-9fe3-4ba0-88a1-2056aab12a98 + Content-Type: + - text/xml + Content-Length: + - '323' + Date: + - Sun, 24 Nov 2019 15:47:36 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-existing-template does not exist + + bcb70b5c-9fe3-4ba0-88a1-2056aab12a98 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:47:36 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193710Z + - 20191124T154736Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bfd7dfe1-8c6b-4347-bf17-22dc4c494b59 + - 44d1d86e-f790-4d3c-b34b-8047b1e72228 Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:37:10 GMT + - Sun, 24 Nov 2019 15:47:37 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - bfd7dfe1-8c6b-4347-bf17-22dc4c494b59 + 44d1d86e-f790-4d3c-b34b-8047b1e72228 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:11 GMT + recorded_at: Sun, 24 Nov 2019 15:47:37 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193711Z + - 20191124T154737Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - 0Zet4Y8iWiQBzeoaBGBQIj3fBcEzOsjp6x5fpADcJcjeOt3jBKuxe1n1rUHXciYO9Wvq2FSOzeY= + - Z6HqEAcWzBxpCCeCFZUOB7M3hAc0Y90E7s57b13eFzZvIYrjhlHM/mheSfeIfo2/hTemsFbBIMw= X-Amz-Request-Id: - - 4A7E6BD3990F7132 + - E254E9028DE9E7FA Date: - - Fri, 08 Nov 2019 19:37:12 GMT + - Sun, 24 Nov 2019 15:47:38 GMT X-Amz-Version-Id: - - VmN7effu8DDkQv1z39ZtYBYxhVTM3ZDG + - KZfRn._XrmcLnrGKmFu_xgkRjANJFY_W X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:37:11 GMT + recorded_at: Sun, 24 Nov 2019 15:47:37 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193711Z + - 20191124T154737Z X-Amz-Content-Sha256: - cda3833662a2647089eefb64133ef865c27c76561fa54cbc6837d2301ebc6d37 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '445' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - '05862d26-e161-4e78-9267-d8523d5f431c' + - ebbba038-33a8-4267-918c-f9c7855da84e Content-Type: - text/xml Content-Length: - '407' Date: - - Fri, 08 Nov 2019 19:37:12 GMT + - Sun, 24 Nov 2019 15:47:38 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 - 05862d26-e161-4e78-9267-d8523d5f431c + ebbba038-33a8-4267-918c-f9c7855da84e http_version: - recorded_at: Fri, 08 Nov 2019 19:37:12 GMT + recorded_at: Sun, 24 Nov 2019 15:47:38 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193712Z + - 20191124T154738Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 90e7f84a-c470-4fbb-b9df-ed55b7933ad6 + - f2e3a8f9-b225-4afd-a9cf-94c67588d409 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:13 GMT + - Sun, 24 Nov 2019 15:47:38 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -273,11 +327,11 @@ http_interactions: - 90e7f84a-c470-4fbb-b9df-ed55b7933ad6 + f2e3a8f9-b225-4afd-a9cf-94c67588d409 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:13 GMT + recorded_at: Sun, 24 Nov 2019 15:47:39 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -294,11 +348,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193713Z + - 20191124T154739Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -310,13 +364,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9fc68f6d-a527-42a1-8575-f593b1041ec7 + - 9a41f14f-f96a-4820-964d-7a3e7f66e4a9 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:13 GMT + - Sun, 24 Nov 2019 15:47:38 GMT body: encoding: UTF-8 string: | @@ -324,9 +378,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -352,11 +406,11 @@ http_interactions: - 9fc68f6d-a527-42a1-8575-f593b1041ec7 + 9a41f14f-f96a-4820-964d-7a3e7f66e4a9 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:13 GMT + recorded_at: Sun, 24 Nov 2019 15:47:39 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -373,11 +427,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193718Z + - 20191124T154744Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -389,13 +443,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - ff130423-8c01-4a59-ab5d-a4e3d3b35fff + - 5c568cc6-3b65-49bb-902b-e07b0aae74a4 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:18 GMT + - Sun, 24 Nov 2019 15:47:44 GMT body: encoding: UTF-8 string: | @@ -403,9 +457,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -431,11 +485,11 @@ http_interactions: - ff130423-8c01-4a59-ab5d-a4e3d3b35fff + 5c568cc6-3b65-49bb-902b-e07b0aae74a4 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:18 GMT + recorded_at: Sun, 24 Nov 2019 15:47:45 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -452,11 +506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193723Z + - 20191124T154750Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -468,13 +522,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 929ee439-bf1f-4608-a9cf-c4b4a551e14e + - e6ddd1c5-ef9c-4833-82d9-723f7082d9f4 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:23 GMT + - Sun, 24 Nov 2019 15:47:49 GMT body: encoding: UTF-8 string: | @@ -482,9 +536,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -510,11 +564,11 @@ http_interactions: - 929ee439-bf1f-4608-a9cf-c4b4a551e14e + e6ddd1c5-ef9c-4833-82d9-723f7082d9f4 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:24 GMT + recorded_at: Sun, 24 Nov 2019 15:47:50 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -531,11 +585,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193729Z + - 20191124T154755Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -547,13 +601,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5640581f-8be1-4baa-bc5f-b102dd78f09a + - d6af6646-48b3-4505-a71c-818e5dfc96b1 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:29 GMT + - Sun, 24 Nov 2019 15:47:55 GMT body: encoding: UTF-8 string: | @@ -561,9 +615,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -589,11 +643,11 @@ http_interactions: - 5640581f-8be1-4baa-bc5f-b102dd78f09a + d6af6646-48b3-4505-a71c-818e5dfc96b1 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:29 GMT + recorded_at: Sun, 24 Nov 2019 15:47:55 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -610,11 +664,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193734Z + - 20191124T154800Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -626,13 +680,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 02bd1e52-b197-4f89-ab9b-de9b13422f40 + - 52de1688-c9da-44a6-b8c2-fa48b774349c Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:37:34 GMT + - Sun, 24 Nov 2019 15:48:00 GMT body: encoding: UTF-8 string: | @@ -640,9 +694,9 @@ http_interactions: - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -668,11 +722,11 @@ http_interactions: - 02bd1e52-b197-4f89-ab9b-de9b13422f40 + 52de1688-c9da-44a6-b8c2-fa48b774349c http_version: - recorded_at: Fri, 08 Nov 2019 19:37:35 GMT + recorded_at: Sun, 24 Nov 2019 15:48:01 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -689,11 +743,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193740Z + - 20191124T154806Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -705,13 +759,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - b5a99dbe-7c8f-4b17-be1e-6d3dbc80922d + - 76043e3d-2bff-46bb-8aa5-729345f66151 Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:39 GMT + - Sun, 24 Nov 2019 15:48:05 GMT body: encoding: UTF-8 string: | @@ -726,9 +780,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -754,11 +808,11 @@ http_interactions: - b5a99dbe-7c8f-4b17-be1e-6d3dbc80922d + 76043e3d-2bff-46bb-8aa5-729345f66151 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:40 GMT + recorded_at: Sun, 24 Nov 2019 15:48:06 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -775,11 +829,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193740Z + - 20191124T154806Z X-Amz-Content-Sha256: - 23ede7d9694d06a0c02250dcc45c1644163b16086f3deb74ce332888bcb8b5e5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '85' @@ -791,13 +845,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2c15e064-c30b-4984-85d8-7db9a32ddcc5 + - 7cc42abe-82ca-4045-8fe6-c731e58013c2 Content-Type: - text/xml Content-Length: - '799' Date: - - Fri, 08 Nov 2019 19:37:40 GMT + - Sun, 24 Nov 2019 15:48:06 GMT body: encoding: UTF-8 string: | @@ -837,11 +891,11 @@ http_interactions: - 2c15e064-c30b-4984-85d8-7db9a32ddcc5 + 7cc42abe-82ca-4045-8fe6-c731e58013c2 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:40 GMT + recorded_at: Sun, 24 Nov 2019 15:48:07 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -858,11 +912,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193740Z + - 20191124T154807Z X-Amz-Content-Sha256: - a456b24f34bf3c1a8ee413a2ceba78eb185dc57ced75c9f89412f2e261f239eb Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -874,13 +928,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - dc8504e1-e72d-49b0-8dec-6cebea47d29e + - cb88e761-2fea-46ca-bdf5-762d93a14bf9 Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:40 GMT + - Sun, 24 Nov 2019 15:48:06 GMT body: encoding: UTF-8 string: | @@ -895,9 +949,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:37:12.660Z + 2019-11-24T15:47:38.648Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/28f31770-025f-11ea-972a-0ab3f1b1cb5a + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-existing-template/bd97b010-0ed1-11ea-9235-02860fd3b864 spec-aws-ruby-stack-existing-template Test template one @@ -923,11 +977,11 @@ http_interactions: - dc8504e1-e72d-49b0-8dec-6cebea47d29e + cb88e761-2fea-46ca-bdf5-762d93a14bf9 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:41 GMT + recorded_at: Sun, 24 Nov 2019 15:48:07 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -944,11 +998,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193741Z + - 20191124T154807Z X-Amz-Content-Sha256: - 30ea3be7ba0b9e2b3d02b6a662f6e5b4fff712264f40e3a7f47909c9c296cb98 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '85' @@ -960,21 +1014,21 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5ba05f04-1e54-4983-a6a8-f5528b2cae19 + - ee7e5b5a-8b07-43bb-92b9-119ef0ed0708 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:37:41 GMT + - Sun, 24 Nov 2019 15:48:07 GMT body: encoding: UTF-8 string: | - 5ba05f04-1e54-4983-a6a8-f5528b2cae19 + ee7e5b5a-8b07-43bb-92b9-119ef0ed0708 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:41 GMT + recorded_at: Sun, 24 Nov 2019 15:48:07 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/creates_a_stack_with_provided_parameters_then_deletes_it.yml b/spec/cassettes/OpenStax_Aws_Stack/creates_a_stack_with_provided_parameters_then_deletes_it.yml index 4278c01..84e934a 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/creates_a_stack_with_provided_parameters_then_deletes_it.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/creates_a_stack_with_provided_parameters_then_deletes_it.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-create-delete&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154315Z + X-Amz-Content-Sha256: + - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '84' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 8d985393-3100-47f2-86bd-2a23a6355cda + Content-Type: + - text/xml + Content-Length: + - '319' + Date: + - Sun, 24 Nov 2019 15:43:16 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-create-delete does not exist + + 8d985393-3100-47f2-86bd-2a23a6355cda + + http_version: + recorded_at: Sun, 24 Nov 2019 15:43:16 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193242Z + - 20191124T154316Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 946baa33-a761-4326-b1a6-f7d04bc384ea + - b468a33e-3de5-4560-b37a-e9c47a9b41d0 Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:32:42 GMT + - Sun, 24 Nov 2019 15:43:16 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 946baa33-a761-4326-b1a6-f7d04bc384ea + b468a33e-3de5-4560-b37a-e9c47a9b41d0 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:42 GMT + recorded_at: Sun, 24 Nov 2019 15:43:16 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193242Z + - 20191124T154316Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - Aee6CHQyuPNT5aPOarvlHhYCu6qcpe8VgtY2wkWSrPoh7RVeCRdfUd0KbY0JWllN044q0B2Y7uY= + - sxN/cSq+9aTZK4xYYJYBbYDA6U2BrnQ7Cbvx0qn9LRKYm+of5p3aXvR00oYeB0zJUbd5MkbU/Ac= X-Amz-Request-Id: - - 783BE4AF1C6337CC + - 815D7350183596D1 Date: - - Fri, 08 Nov 2019 19:32:43 GMT + - Sun, 24 Nov 2019 15:43:17 GMT X-Amz-Version-Id: - - VPcF2VjtyFLuYChfuTtTQnaMgaIbjHwx + - jOTmgNaR677QOTHYnTeAGeGM8EhhUF_X X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:32:42 GMT + recorded_at: Sun, 24 Nov 2019 15:43:17 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193242Z + - 20191124T154317Z X-Amz-Content-Sha256: - d96f9db22351387d01bdad7a3363cb84a84097f682c5a8f8826bc6d50f14e46c Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '441' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - ed898648-94ce-4e7c-8a86-08ba669f425a + - 6ae4f69b-ae00-43cb-9dc1-ccd8724f16dc Content-Type: - text/xml Content-Length: - '403' Date: - - Fri, 08 Nov 2019 19:32:43 GMT + - Sun, 24 Nov 2019 15:43:17 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c - ed898648-94ce-4e7c-8a86-08ba669f425a + 6ae4f69b-ae00-43cb-9dc1-ccd8724f16dc http_version: - recorded_at: Fri, 08 Nov 2019 19:32:43 GMT + recorded_at: Sun, 24 Nov 2019 15:43:18 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193243Z + - 20191124T154318Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 0d4c861f-1414-49c2-a578-a0ba4dfd2f0e + - 21b56b52-3bf6-45b6-9142-ace98bf53e96 Content-Type: - text/xml Content-Length: - - '1428' + - '1366' Date: - - Fri, 08 Nov 2019 19:32:44 GMT + - Sun, 24 Nov 2019 15:43:17 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -259,7 +313,6 @@ http_interactions: NOT_CHECKED false - User Initiated BucketName @@ -274,11 +327,11 @@ http_interactions: - 0d4c861f-1414-49c2-a578-a0ba4dfd2f0e + 21b56b52-3bf6-45b6-9142-ace98bf53e96 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:44 GMT + recorded_at: Sun, 24 Nov 2019 15:43:18 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -295,11 +348,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193244Z + - 20191124T154318Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -311,13 +364,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 19821717-722a-435c-894c-5ead607c88b5 + - c54c3a5a-0b5b-4d6d-a280-e6329ab49299 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:32:44 GMT + - Sun, 24 Nov 2019 15:43:18 GMT body: encoding: UTF-8 string: | @@ -325,9 +378,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -353,11 +406,11 @@ http_interactions: - 19821717-722a-435c-894c-5ead607c88b5 + c54c3a5a-0b5b-4d6d-a280-e6329ab49299 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:44 GMT + recorded_at: Sun, 24 Nov 2019 15:43:18 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -374,11 +427,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193249Z + - 20191124T154323Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -390,13 +443,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1203bf97-47ce-4fb1-af57-8f3f2091de47 + - 4bbda60e-4b01-4547-9d64-d4be7483c3f8 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:32:49 GMT + - Sun, 24 Nov 2019 15:43:23 GMT body: encoding: UTF-8 string: | @@ -404,9 +457,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -432,11 +485,11 @@ http_interactions: - 1203bf97-47ce-4fb1-af57-8f3f2091de47 + 4bbda60e-4b01-4547-9d64-d4be7483c3f8 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:50 GMT + recorded_at: Sun, 24 Nov 2019 15:43:24 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -453,11 +506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193255Z + - 20191124T154329Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -469,13 +522,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f68cd773-2f11-4c08-92e2-8e2f1e7ce1ca + - e1689cb8-deb0-42ff-b9cb-9051b9d79dd3 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:32:55 GMT + - Sun, 24 Nov 2019 15:43:28 GMT body: encoding: UTF-8 string: | @@ -483,9 +536,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -511,11 +564,11 @@ http_interactions: - f68cd773-2f11-4c08-92e2-8e2f1e7ce1ca + e1689cb8-deb0-42ff-b9cb-9051b9d79dd3 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:55 GMT + recorded_at: Sun, 24 Nov 2019 15:43:29 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -532,11 +585,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193300Z + - 20191124T154334Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -548,13 +601,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 24d46cb6-ec30-4f93-a25b-87e2ee38e262 + - f8d4ef42-52f0-4faf-99ea-39f130a0278e Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:32:59 GMT + - Sun, 24 Nov 2019 15:43:34 GMT body: encoding: UTF-8 string: | @@ -562,9 +615,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -590,11 +643,11 @@ http_interactions: - 24d46cb6-ec30-4f93-a25b-87e2ee38e262 + f8d4ef42-52f0-4faf-99ea-39f130a0278e http_version: - recorded_at: Fri, 08 Nov 2019 19:33:00 GMT + recorded_at: Sun, 24 Nov 2019 15:43:35 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -611,11 +664,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193305Z + - 20191124T154340Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -627,13 +680,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9610d527-dad3-4a37-b56f-f048f587dfcd + - 5b9a685c-1a5f-4a2f-8cda-b8cd71d2c033 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:33:05 GMT + - Sun, 24 Nov 2019 15:43:39 GMT body: encoding: UTF-8 string: | @@ -641,9 +694,9 @@ http_interactions: - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -669,11 +722,11 @@ http_interactions: - 9610d527-dad3-4a37-b56f-f048f587dfcd + 5b9a685c-1a5f-4a2f-8cda-b8cd71d2c033 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:06 GMT + recorded_at: Sun, 24 Nov 2019 15:43:40 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -690,11 +743,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193311Z + - 20191124T154345Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -706,13 +759,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 697975c5-e94b-4a6f-8f27-3bab95c013c3 + - 81bcaf89-832c-403f-aa6f-77bd76895f5b Content-Type: - text/xml Content-Length: - '1639' Date: - - Fri, 08 Nov 2019 19:33:11 GMT + - Sun, 24 Nov 2019 15:43:45 GMT body: encoding: UTF-8 string: | @@ -727,9 +780,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -755,11 +808,11 @@ http_interactions: - 697975c5-e94b-4a6f-8f27-3bab95c013c3 + 81bcaf89-832c-403f-aa6f-77bd76895f5b http_version: - recorded_at: Fri, 08 Nov 2019 19:33:11 GMT + recorded_at: Sun, 24 Nov 2019 15:43:45 GMT - request: method: get uri: https://aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com/?tagging @@ -776,11 +829,11 @@ http_interactions: Host: - aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193311Z + - 20191124T154345Z X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/s3/aws4_request, SignedHeaders=host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '0' @@ -792,11 +845,11 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - JlmKe/l3WRAEMCg6MFMba2XD0wT72TGeER+1ZDWb4ryGXntHMTSN1Zp2mcD147+BL7+OUyoRWlI= + - OBuKceqj+jvgRuj/nZ/pxqjquF89jgPYfuZNOqzJQw+23HFykDV85afwfhVskDnZK0v0biz2stQ= X-Amz-Request-Id: - - 98848B787C6E845F + - 3E757F49025E341B Date: - - Fri, 08 Nov 2019 19:33:12 GMT + - Sun, 24 Nov 2019 15:43:47 GMT Transfer-Encoding: - chunked Server: @@ -805,9 +858,9 @@ http_interactions: encoding: UTF-8 string: |- - Tag1howdyaws:cloudformation:stack-namespec-aws-ruby-stack-create-deleteaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + Tag1howdyaws:cloudformation:stack-namespec-aws-ruby-stack-create-deleteaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c http_version: - recorded_at: Fri, 08 Nov 2019 19:33:11 GMT + recorded_at: Sun, 24 Nov 2019 15:43:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -824,11 +877,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193311Z + - 20191124T154346Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -840,13 +893,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8a6ff6bb-8ac1-4498-bfb1-793f83abea5f + - 0a4419ed-a13c-43d6-979c-b4d58b5a8e77 Content-Type: - text/xml Content-Length: - '1639' Date: - - Fri, 08 Nov 2019 19:33:11 GMT + - Sun, 24 Nov 2019 15:43:46 GMT body: encoding: UTF-8 string: | @@ -861,9 +914,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one @@ -889,11 +942,11 @@ http_interactions: - 8a6ff6bb-8ac1-4498-bfb1-793f83abea5f + 0a4419ed-a13c-43d6-979c-b4d58b5a8e77 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:12 GMT + recorded_at: Sun, 24 Nov 2019 15:43:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -910,11 +963,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193312Z + - 20191124T154346Z X-Amz-Content-Sha256: - b38bcc9ee05550ea52f9b299c7e0a41cf3dd788caedb0960fee80b6c73d30347 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '81' @@ -926,23 +979,23 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a51eb308-ec87-488b-a5d2-522c97cd87b7 + - cd84578a-b93c-46aa-8064-3241a21a2daa Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:33:12 GMT + - Sun, 24 Nov 2019 15:43:46 GMT body: encoding: UTF-8 string: | - a51eb308-ec87-488b-a5d2-522c97cd87b7 + cd84578a-b93c-46aa-8064-3241a21a2daa http_version: - recorded_at: Fri, 08 Nov 2019 19:33:12 GMT + recorded_at: Sun, 24 Nov 2019 15:43:47 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -959,11 +1012,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193312Z + - 20191124T154347Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -975,13 +1028,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 372b2151-b88a-4e80-b5c8-60d00d200f16 + - be9f01d0-357b-4910-bbec-df9969a9cf52 Content-Type: - text/xml Content-Length: - '1704' Date: - - Fri, 08 Nov 2019 19:33:12 GMT + - Sun, 24 Nov 2019 15:43:47 GMT body: encoding: UTF-8 string: | @@ -996,14 +1049,14 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one DELETE_IN_PROGRESS - 2019-11-08T19:33:12.734Z + 2019-11-24T15:43:47.150Z false @@ -1025,11 +1078,11 @@ http_interactions: - 372b2151-b88a-4e80-b5c8-60d00d200f16 + be9f01d0-357b-4910-bbec-df9969a9cf52 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:13 GMT + recorded_at: Sun, 24 Nov 2019 15:43:47 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1046,11 +1099,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193313Z + - 20191124T154347Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -1062,13 +1115,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 840ecbc8-b471-4983-9a88-4c576ffd5a2f + - 27ba3b5f-8833-445b-a0f8-fb2ee37bff14 Content-Type: - text/xml Content-Length: - '1704' Date: - - Fri, 08 Nov 2019 19:33:12 GMT + - Sun, 24 Nov 2019 15:43:47 GMT body: encoding: UTF-8 string: | @@ -1083,14 +1136,14 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:32:43.843Z + 2019-11-24T15:43:17.816Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/88bb0240-025e-11ea-bde8-02402ec64522 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-create-delete/224cbe70-0ed1-11ea-abe4-064e3beebd9c spec-aws-ruby-stack-create-delete Test template one DELETE_IN_PROGRESS - 2019-11-08T19:33:12.734Z + 2019-11-24T15:43:47.150Z false @@ -1112,11 +1165,11 @@ http_interactions: - 840ecbc8-b471-4983-9a88-4c576ffd5a2f + 27ba3b5f-8833-445b-a0f8-fb2ee37bff14 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:13 GMT + recorded_at: Sun, 24 Nov 2019 15:43:47 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1133,11 +1186,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193318Z + - 20191124T154353Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -1149,13 +1202,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - 1ce1de2c-ae12-404f-8fac-bab93667ece7 + - 1bb97559-e7ea-4d39-a5c2-4ac0d21aa38a Content-Type: - text/xml Content-Length: - '319' Date: - - Fri, 08 Nov 2019 19:33:18 GMT + - Sun, 24 Nov 2019 15:43:52 GMT Connection: - close body: @@ -1167,10 +1220,10 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-create-delete does not exist - 1ce1de2c-ae12-404f-8fac-bab93667ece7 + 1bb97559-e7ea-4d39-a5c2-4ac0d21aa38a http_version: - recorded_at: Fri, 08 Nov 2019 19:33:19 GMT + recorded_at: Sun, 24 Nov 2019 15:43:53 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1187,11 +1240,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193319Z + - 20191124T154353Z X-Amz-Content-Sha256: - ea945a7b4b47d3e449ec9123418c50c224920cc7f8e9ccfe3e4d186165f3fe11 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -1203,13 +1256,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - c0729748-317d-4649-9bef-ca8621ed3047 + - ceeb245a-74a9-4da2-ab43-e94be92564c3 Content-Type: - text/xml Content-Length: - '319' Date: - - Fri, 08 Nov 2019 19:33:18 GMT + - Sun, 24 Nov 2019 15:43:52 GMT Connection: - close body: @@ -1221,8 +1274,8 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-create-delete does not exist - c0729748-317d-4649-9bef-ca8621ed3047 + ceeb245a-74a9-4da2-ab43-e94be92564c3 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:19 GMT + recorded_at: Sun, 24 Nov 2019 15:43:53 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/gets_output_values.yml b/spec/cassettes/OpenStax_Aws_Stack/gets_output_values.yml index 1e9262f..79c30df 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/gets_output_values.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/gets_output_values.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-output-values&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154425Z + X-Amz-Content-Sha256: + - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '84' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 41913f9d-54ab-4492-b7d3-f8d4c3bd484a + Content-Type: + - text/xml + Content-Length: + - '319' + Date: + - Sun, 24 Nov 2019 15:44:24 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-output-values does not exist + + 41913f9d-54ab-4492-b7d3-f8d4c3bd484a + + http_version: + recorded_at: Sun, 24 Nov 2019 15:44:25 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193354Z + - 20191124T154425Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a6883e61-f8c7-4070-90ef-700c03914b0e + - 7b29d90a-f921-4677-b158-971fd5a74a45 Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:33:54 GMT + - Sun, 24 Nov 2019 15:44:25 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - a6883e61-f8c7-4070-90ef-700c03914b0e + 7b29d90a-f921-4677-b158-971fd5a74a45 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:55 GMT + recorded_at: Sun, 24 Nov 2019 15:44:25 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193355Z + - 20191124T154425Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - a5onh9CKBbMzk6UAKpcAFo0sNOqAmws+g7lkvEuio/lEsEJFoQpu5qptWVsBm1C2BKOkikuSrvE= + - SAKbuAAYsO5JIQ0SCtMxgT44FzBYskTp7tGnlmCs4A91E9EwLVepyHT9dHVyhUD3B/CotBWyYQI= X-Amz-Request-Id: - - 5BCB0381BACDF452 + - 7ADD0F856E4E36E6 Date: - - Fri, 08 Nov 2019 19:33:57 GMT + - Sun, 24 Nov 2019 15:44:27 GMT X-Amz-Version-Id: - - onBq5sV2JWwQE4v1m56DgNMBytsf.bhu + - pBkSj.pZw__la1eKMK53qRmYDuxJuHPT X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:33:56 GMT + recorded_at: Sun, 24 Nov 2019 15:44:26 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193356Z + - 20191124T154426Z X-Amz-Content-Sha256: - 5eea0741169e341218ba4829b56f267b1197090a6cf8198f085dfac24f80e2b1 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '441' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - da9b6b52-a00d-47f5-b264-e89d30f7aa1d + - 93a5b10c-c00b-450f-892d-6586f3195fc5 Content-Type: - text/xml Content-Length: - '403' Date: - - Fri, 08 Nov 2019 19:33:57 GMT + - Sun, 24 Nov 2019 15:44:26 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e - da9b6b52-a00d-47f5-b264-e89d30f7aa1d + 93a5b10c-c00b-450f-892d-6586f3195fc5 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:57 GMT + recorded_at: Sun, 24 Nov 2019 15:44:27 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193357Z + - 20191124T154427Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4009f8d3-4512-46f9-84c1-8e3ff698a6a0 + - 7634d6f6-a4b1-4ebd-b48d-a514b04f87c6 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:33:58 GMT + - Sun, 24 Nov 2019 15:44:27 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -273,11 +327,11 @@ http_interactions: - 4009f8d3-4512-46f9-84c1-8e3ff698a6a0 + 7634d6f6-a4b1-4ebd-b48d-a514b04f87c6 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:58 GMT + recorded_at: Sun, 24 Nov 2019 15:44:27 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -294,11 +348,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193358Z + - 20191124T154427Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -310,13 +364,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bcbb133f-3e58-4480-98f4-bf6f001c69d4 + - 41513045-1536-4812-8013-c98c4ffdc8f5 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:33:58 GMT + - Sun, 24 Nov 2019 15:44:27 GMT body: encoding: UTF-8 string: | @@ -324,9 +378,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -352,11 +406,11 @@ http_interactions: - bcbb133f-3e58-4480-98f4-bf6f001c69d4 + 41513045-1536-4812-8013-c98c4ffdc8f5 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:58 GMT + recorded_at: Sun, 24 Nov 2019 15:44:28 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -373,11 +427,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193403Z + - 20191124T154433Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -389,13 +443,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 77a3e759-f083-4494-b513-aab6e12367f1 + - 5f0f6987-3a6f-40c6-b3d9-bbc677b95cad Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:34:03 GMT + - Sun, 24 Nov 2019 15:44:33 GMT body: encoding: UTF-8 string: | @@ -403,9 +457,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -431,11 +485,11 @@ http_interactions: - 77a3e759-f083-4494-b513-aab6e12367f1 + 5f0f6987-3a6f-40c6-b3d9-bbc677b95cad http_version: - recorded_at: Fri, 08 Nov 2019 19:34:03 GMT + recorded_at: Sun, 24 Nov 2019 15:44:33 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -452,11 +506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193408Z + - 20191124T154438Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -468,13 +522,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3062f533-e85b-4148-a502-4696f1ccb3f6 + - 502b8937-279c-4b56-adfd-7d6a84171aae Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:34:09 GMT + - Sun, 24 Nov 2019 15:44:38 GMT body: encoding: UTF-8 string: | @@ -482,9 +536,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -510,11 +564,11 @@ http_interactions: - 3062f533-e85b-4148-a502-4696f1ccb3f6 + 502b8937-279c-4b56-adfd-7d6a84171aae http_version: - recorded_at: Fri, 08 Nov 2019 19:34:09 GMT + recorded_at: Sun, 24 Nov 2019 15:44:38 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -531,11 +585,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193414Z + - 20191124T154443Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -547,13 +601,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - caea6b0d-ad19-45d2-aaa7-16c602844f83 + - 333022c0-6027-4211-a03f-ed2cf86d2bc8 Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:34:14 GMT + - Sun, 24 Nov 2019 15:44:43 GMT body: encoding: UTF-8 string: | @@ -561,9 +615,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -589,11 +643,11 @@ http_interactions: - caea6b0d-ad19-45d2-aaa7-16c602844f83 + 333022c0-6027-4211-a03f-ed2cf86d2bc8 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:14 GMT + recorded_at: Sun, 24 Nov 2019 15:44:44 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -610,11 +664,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193419Z + - 20191124T154449Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -626,13 +680,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 764c4f98-6dc8-4973-9909-afceda8888b9 + - acc6b258-f323-41ee-942f-727d5c5d769d Content-Type: - text/xml Content-Length: - '1366' Date: - - Fri, 08 Nov 2019 19:34:19 GMT + - Sun, 24 Nov 2019 15:44:49 GMT body: encoding: UTF-8 string: | @@ -640,9 +694,9 @@ http_interactions: - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -668,11 +722,11 @@ http_interactions: - 764c4f98-6dc8-4973-9909-afceda8888b9 + acc6b258-f323-41ee-942f-727d5c5d769d http_version: - recorded_at: Fri, 08 Nov 2019 19:34:20 GMT + recorded_at: Sun, 24 Nov 2019 15:44:49 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -689,11 +743,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193425Z + - 20191124T154454Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -705,13 +759,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 65224ead-0641-4d2d-a928-726eb2277dd5 + - 0d9f40df-8767-4a1e-85eb-fa2096149cd0 Content-Type: - text/xml Content-Length: - '1639' Date: - - Fri, 08 Nov 2019 19:34:24 GMT + - Sun, 24 Nov 2019 15:44:54 GMT body: encoding: UTF-8 string: | @@ -726,9 +780,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -754,11 +808,11 @@ http_interactions: - 65224ead-0641-4d2d-a928-726eb2277dd5 + 0d9f40df-8767-4a1e-85eb-fa2096149cd0 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:25 GMT + recorded_at: Sun, 24 Nov 2019 15:44:55 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -775,11 +829,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193425Z + - 20191124T154455Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -791,13 +845,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e2d1573d-c51e-481e-8fd8-c904de87893e + - 56f9afb8-8137-4526-989b-20bceb32a817 Content-Type: - text/xml Content-Length: - '1639' Date: - - Fri, 08 Nov 2019 19:34:25 GMT + - Sun, 24 Nov 2019 15:44:54 GMT body: encoding: UTF-8 string: | @@ -812,9 +866,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -840,11 +894,11 @@ http_interactions: - e2d1573d-c51e-481e-8fd8-c904de87893e + 56f9afb8-8137-4526-989b-20bceb32a817 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:25 GMT + recorded_at: Sun, 24 Nov 2019 15:44:55 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -861,11 +915,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193425Z + - 20191124T154455Z X-Amz-Content-Sha256: - a6a95872ab8567f2b6978db6aedd0265894186b7e33f145c9bcffd046b279276 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '84' @@ -877,13 +931,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 946755a7-c8c6-4d69-a913-c87dca75c26e + - 80ebebc6-43f3-43e8-86fa-ef2a20f6bf0a Content-Type: - text/xml Content-Length: - '1639' Date: - - Fri, 08 Nov 2019 19:34:25 GMT + - Sun, 24 Nov 2019 15:44:55 GMT body: encoding: UTF-8 string: | @@ -898,9 +952,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:33:57.685Z + 2019-11-24T15:44:27.237Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/b4bb3310-025e-11ea-964c-022c6f51bf82 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-output-values/4b7bcde0-0ed1-11ea-8f38-026789fff09e spec-aws-ruby-stack-output-values Test template one @@ -926,11 +980,11 @@ http_interactions: - 946755a7-c8c6-4d69-a913-c87dca75c26e + 80ebebc6-43f3-43e8-86fa-ef2a20f6bf0a http_version: - recorded_at: Fri, 08 Nov 2019 19:34:26 GMT + recorded_at: Sun, 24 Nov 2019 15:44:55 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -947,11 +1001,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193426Z + - 20191124T154455Z X-Amz-Content-Sha256: - b43343ad1f2e39279d2dee149a2b981b52073c6630c2cb6297576793922c0942 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '81' @@ -963,21 +1017,21 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a398cec4-31b2-4582-a430-741d7d719e0d + - 346fd4f2-1d90-4fdc-b9f6-68547ed3c4d5 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:34:26 GMT + - Sun, 24 Nov 2019 15:44:56 GMT body: encoding: UTF-8 string: | - a398cec4-31b2-4582-a430-741d7d719e0d + 346fd4f2-1d90-4fdc-b9f6-68547ed3c4d5 http_version: - recorded_at: Fri, 08 Nov 2019 19:34:26 GMT + recorded_at: Sun, 24 Nov 2019 15:44:56 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/is_a_no-op_update_with_no_changes.yml b/spec/cassettes/OpenStax_Aws_Stack/is_a_no-op_update_with_no_changes.yml index 27fccd9..27f78e0 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/is_a_no-op_update_with_no_changes.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/is_a_no-op_update_with_no_changes.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-update-no-changes&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154659Z + X-Amz-Content-Sha256: + - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '88' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 6dbf56fc-9f85-456b-987d-fad639240537 + Content-Type: + - text/xml + Content-Length: + - '323' + Date: + - Sun, 24 Nov 2019 15:46:59 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-update-no-changes does not exist + + 6dbf56fc-9f85-456b-987d-fad639240537 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:46:59 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193636Z + - 20191124T154659Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 431e8e9e-935f-4b16-bce4-ee74877396d7 + - 67053a23-6032-46e6-95b5-86580090114e Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:36:36 GMT + - Sun, 24 Nov 2019 15:46:59 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 431e8e9e-935f-4b16-bce4-ee74877396d7 + 67053a23-6032-46e6-95b5-86580090114e http_version: - recorded_at: Fri, 08 Nov 2019 19:36:36 GMT + recorded_at: Sun, 24 Nov 2019 15:47:00 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193636Z + - 20191124T154700Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - rtpb4Xmrysghc2f61EvcncX9Dn3uOp70MDgFSwW/hFoH5i6+1A614HyvtYPQReHhOKdwZj//NPw= + - TtZZ7eO3OgJBmJI13KgXBU+ITtBds8a9k/2wBA8vzKqBSBGZaKvXbavBPE4LJlVtEgsN2tq92JU= X-Amz-Request-Id: - - 13A83F85A84F1782 + - C4DEF3D108C1CC29 Date: - - Fri, 08 Nov 2019 19:36:38 GMT + - Sun, 24 Nov 2019 15:47:01 GMT X-Amz-Version-Id: - - gEUZxvj9qQYyOZ8GvFYAz9Qlc5FUsEWd + - lNscjFySW3WvpZxbGV9bEstBIplQcLxP X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:36:37 GMT + recorded_at: Sun, 24 Nov 2019 15:47:00 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193637Z + - 20191124T154700Z X-Amz-Content-Sha256: - b9999c72b34eaf2d904e7758f96f5ac58bb3901efeb67909c2690dea675f7b32 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '445' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a6d60814-1cca-4447-991a-12032c96338f + - e03b5568-66a1-4eb6-8929-1bbff9eb40f2 Content-Type: - text/xml Content-Length: - '407' Date: - - Fri, 08 Nov 2019 19:36:37 GMT + - Sun, 24 Nov 2019 15:47:02 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e - a6d60814-1cca-4447-991a-12032c96338f + e03b5568-66a1-4eb6-8929-1bbff9eb40f2 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:38 GMT + recorded_at: Sun, 24 Nov 2019 15:47:02 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193638Z + - 20191124T154702Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1a05e78e-3f34-4e58-981e-4bad019022fd + - 77d118d3-d57b-4810-a755-42067e17916e Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:37 GMT + - Sun, 24 Nov 2019 15:47:01 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -273,11 +327,11 @@ http_interactions: - 1a05e78e-3f34-4e58-981e-4bad019022fd + 77d118d3-d57b-4810-a755-42067e17916e http_version: - recorded_at: Fri, 08 Nov 2019 19:36:38 GMT + recorded_at: Sun, 24 Nov 2019 15:47:02 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -294,11 +348,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193638Z + - 20191124T154702Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -310,13 +364,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 64644afa-d9f3-41aa-b0a1-bf0bfa0e37da + - f7a7558a-51ad-4268-b203-ade3a4a85296 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:38 GMT + - Sun, 24 Nov 2019 15:47:02 GMT body: encoding: UTF-8 string: | @@ -324,9 +378,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -352,11 +406,11 @@ http_interactions: - 64644afa-d9f3-41aa-b0a1-bf0bfa0e37da + f7a7558a-51ad-4268-b203-ade3a4a85296 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:39 GMT + recorded_at: Sun, 24 Nov 2019 15:47:03 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -373,11 +427,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193644Z + - 20191124T154708Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -389,13 +443,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7c441310-1fc5-4634-b290-e091ec31849d + - c6b06d9a-b0a9-435c-863f-bd167975bda9 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:44 GMT + - Sun, 24 Nov 2019 15:47:08 GMT body: encoding: UTF-8 string: | @@ -403,9 +457,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -431,11 +485,11 @@ http_interactions: - 7c441310-1fc5-4634-b290-e091ec31849d + c6b06d9a-b0a9-435c-863f-bd167975bda9 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:44 GMT + recorded_at: Sun, 24 Nov 2019 15:47:08 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -452,11 +506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193649Z + - 20191124T154713Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -468,13 +522,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3031c124-ae69-4599-8358-76336fdc28f9 + - 5467105c-a265-4571-988b-0c4c8ab3cb0a Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:48 GMT + - Sun, 24 Nov 2019 15:47:14 GMT body: encoding: UTF-8 string: | @@ -482,9 +536,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -510,11 +564,11 @@ http_interactions: - 3031c124-ae69-4599-8358-76336fdc28f9 + 5467105c-a265-4571-988b-0c4c8ab3cb0a http_version: - recorded_at: Fri, 08 Nov 2019 19:36:49 GMT + recorded_at: Sun, 24 Nov 2019 15:47:14 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -531,11 +585,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193654Z + - 20191124T154719Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -547,13 +601,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f8c7ca7a-130e-4976-9d4b-bbfbd84c8e32 + - 9706482d-15f6-4e94-82a0-3038e8d3cb50 Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:54 GMT + - Sun, 24 Nov 2019 15:47:19 GMT body: encoding: UTF-8 string: | @@ -561,9 +615,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -589,11 +643,11 @@ http_interactions: - f8c7ca7a-130e-4976-9d4b-bbfbd84c8e32 + 9706482d-15f6-4e94-82a0-3038e8d3cb50 http_version: - recorded_at: Fri, 08 Nov 2019 19:36:55 GMT + recorded_at: Sun, 24 Nov 2019 15:47:19 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -610,11 +664,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193700Z + - 20191124T154724Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -626,13 +680,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 711ed023-4dc5-47d7-a79c-49eff7525957 + - 1acf67ee-ebae-459c-8c0d-7b64ae26a78a Content-Type: - text/xml Content-Length: - '1374' Date: - - Fri, 08 Nov 2019 19:36:59 GMT + - Sun, 24 Nov 2019 15:47:24 GMT body: encoding: UTF-8 string: | @@ -640,9 +694,9 @@ http_interactions: - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -668,11 +722,11 @@ http_interactions: - 711ed023-4dc5-47d7-a79c-49eff7525957 + 1acf67ee-ebae-459c-8c0d-7b64ae26a78a http_version: - recorded_at: Fri, 08 Nov 2019 19:37:00 GMT + recorded_at: Sun, 24 Nov 2019 15:47:25 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -689,11 +743,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193705Z + - 20191124T154730Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -705,13 +759,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 6d157c95-725c-47a9-a44f-d7879d1adf7e + - 15ae4ac3-5f26-4753-814f-6c9bc1a0b3e7 Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:05 GMT + - Sun, 24 Nov 2019 15:47:30 GMT body: encoding: UTF-8 string: | @@ -726,9 +780,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -754,11 +808,11 @@ http_interactions: - 6d157c95-725c-47a9-a44f-d7879d1adf7e + 15ae4ac3-5f26-4753-814f-6c9bc1a0b3e7 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:05 GMT + recorded_at: Sun, 24 Nov 2019 15:47:30 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -775,11 +829,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193705Z + - 20191124T154730Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -791,13 +845,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4aa13a85-663f-439d-92e6-7fad6d77477a + - d8fcebaa-6879-4251-a6db-17729f2b54f1 Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:05 GMT + - Sun, 24 Nov 2019 15:47:30 GMT body: encoding: UTF-8 string: | @@ -812,9 +866,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -840,17 +894,17 @@ http_interactions: - 4aa13a85-663f-439d-92e6-7fad6d77477a + d8fcebaa-6879-4251-a6db-17729f2b54f1 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:06 GMT + recorded_at: Sun, 24 Nov 2019 15:47:30 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-no-changes-20191108-193706&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.UsePreviousValue=true&StackName=spec-aws-ruby-stack-update-no-changes&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one.yml&Version=2010-05-15 + string: Action=CreateChangeSet&Capabilities=&ChangeSetName=spec-aws-ruby-stack-update-no-changes-20191124-154730&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.UsePreviousValue=true&StackName=spec-aws-ruby-stack-update-no-changes&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one.yml&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -861,11 +915,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193706Z + - 20191124T154730Z X-Amz-Content-Sha256: - - 58b344db465a4cee084dbda0a6b67ecb1f0bd4dce050bcbbb3d7091fb6ce7ba1 + - 8ec15d32d71412e457e7837f101453652a021b127c8dbb4093b022dfb07397ec Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '469' @@ -877,33 +931,33 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 844e83ea-d8ad-4d6b-97f3-18b89388c4aa + - b140e955-54e7-4735-9501-50af12f26335 Content-Type: - text/xml Content-Length: - '583' Date: - - Fri, 08 Nov 2019 19:37:06 GMT + - Sun, 24 Nov 2019 15:47:31 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-no-changes-20191108-193706/761c1cf8-fbe4-4213-b876-8f4d3a3a2707 + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-no-changes-20191124-154730/9eabd84d-12fe-43e7-aebe-141e20ea135d - 844e83ea-d8ad-4d6b-97f3-18b89388c4aa + b140e955-54e7-4735-9501-50af12f26335 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:07 GMT + recorded_at: Sun, 24 Nov 2019 15:47:31 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-no-changes-20191108-193706%2F761c1cf8-fbe4-4213-b876-8f4d3a3a2707&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-no-changes-20191124-154730%2F9eabd84d-12fe-43e7-aebe-141e20ea135d&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -914,11 +968,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193707Z + - 20191124T154731Z X-Amz-Content-Sha256: - - a72d0eebcc27e627e8180c925db6608e7e45582604ea6872970384d350eef012 + - 3e0fbc86baca4eb101e7b4eb84eb1f07866c78d5b54e0b34591140e843ca6ad8 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '218' @@ -930,26 +984,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3fd8f6a0-6a37-4c41-a366-84f8c7291810 + - ee13f2bd-8571-48f1-bc8b-e61e5d4ca3dc Content-Type: - text/xml Content-Length: - '1425' Date: - - Fri, 08 Nov 2019 19:37:07 GMT + - Sun, 24 Nov 2019 15:47:31 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:37:07.355Z + 2019-11-24T15:47:31.884Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e UNAVAILABLE spec-aws-ruby-stack-update-no-changes - spec-aws-ruby-stack-update-no-changes-20191108-193706 + spec-aws-ruby-stack-update-no-changes-20191124-154730 The submitted information didn't contain changes. Submit different information to create a change set. @@ -962,21 +1016,21 @@ http_interactions: howdy - arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-no-changes-20191108-193706/761c1cf8-fbe4-4213-b876-8f4d3a3a2707 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/spec-aws-ruby-stack-update-no-changes-20191124-154730/9eabd84d-12fe-43e7-aebe-141e20ea135d FAILED - 3fd8f6a0-6a37-4c41-a366-84f8c7291810 + ee13f2bd-8571-48f1-bc8b-e61e5d4ca3dc http_version: - recorded_at: Fri, 08 Nov 2019 19:37:07 GMT + recorded_at: Sun, 24 Nov 2019 15:47:32 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DeleteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-no-changes-20191108-193706%2F761c1cf8-fbe4-4213-b876-8f4d3a3a2707&Version=2010-05-15 + string: Action=DeleteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fspec-aws-ruby-stack-update-no-changes-20191124-154730%2F9eabd84d-12fe-43e7-aebe-141e20ea135d&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -987,11 +1041,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193707Z + - 20191124T154732Z X-Amz-Content-Sha256: - - 7e8553c0811ea39dfcea94da4789afc551bfe3bd6ea5a31d42d9946aa1ff4e42 + - 11e9935d9601a99b427209574558337b7cd60f2a177f9e48d42a863ca60a6b27 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '216' @@ -1003,24 +1057,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5e91303d-3b22-4a01-b78c-5b9911150417 + - 5767519b-3f4e-4c3e-909f-f82f21b37974 Content-Type: - text/xml Content-Length: - '247' Date: - - Fri, 08 Nov 2019 19:37:08 GMT + - Sun, 24 Nov 2019 15:47:32 GMT body: encoding: UTF-8 string: | - 5e91303d-3b22-4a01-b78c-5b9911150417 + 5767519b-3f4e-4c3e-909f-f82f21b37974 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:08 GMT + recorded_at: Sun, 24 Nov 2019 15:47:32 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1037,11 +1091,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193708Z + - 20191124T154732Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -1053,13 +1107,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 66f28c57-afcb-41fd-b5aa-b5710ef748cf + - c6231faa-a0e7-4284-bca1-22d5fb575d9f Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:07 GMT + - Sun, 24 Nov 2019 15:47:32 GMT body: encoding: UTF-8 string: | @@ -1074,9 +1128,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -1102,11 +1156,11 @@ http_interactions: - 66f28c57-afcb-41fd-b5aa-b5710ef748cf + c6231faa-a0e7-4284-bca1-22d5fb575d9f http_version: - recorded_at: Fri, 08 Nov 2019 19:37:08 GMT + recorded_at: Sun, 24 Nov 2019 15:47:33 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1123,11 +1177,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193708Z + - 20191124T154733Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -1139,13 +1193,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 38c66cec-b89f-43a5-b52d-965521738b32 + - 2de4e37d-3d5a-4056-9d4e-8fd38f90e16f Content-Type: - text/xml Content-Length: - '1651' Date: - - Fri, 08 Nov 2019 19:37:08 GMT + - Sun, 24 Nov 2019 15:47:32 GMT body: encoding: UTF-8 string: | @@ -1160,9 +1214,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one @@ -1188,11 +1242,11 @@ http_interactions: - 38c66cec-b89f-43a5-b52d-965521738b32 + 2de4e37d-3d5a-4056-9d4e-8fd38f90e16f http_version: - recorded_at: Fri, 08 Nov 2019 19:37:08 GMT + recorded_at: Sun, 24 Nov 2019 15:47:33 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1209,11 +1263,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193708Z + - 20191124T154733Z X-Amz-Content-Sha256: - ecc8e107def5db2ac93672e543a9a06ba5047fad97eb8129295e43529c0da268 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '85' @@ -1225,23 +1279,23 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9cd80443-2388-4792-8702-1b92f1d3479b + - dac1a8b2-1034-4dba-9ac9-ddd9b607ad75 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:37:08 GMT + - Sun, 24 Nov 2019 15:47:33 GMT body: encoding: UTF-8 string: | - 9cd80443-2388-4792-8702-1b92f1d3479b + dac1a8b2-1034-4dba-9ac9-ddd9b607ad75 http_version: - recorded_at: Fri, 08 Nov 2019 19:37:09 GMT + recorded_at: Sun, 24 Nov 2019 15:47:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1258,11 +1312,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193709Z + - 20191124T154734Z X-Amz-Content-Sha256: - 808c047ff2fcb931e8ac268ce75494712e19f9c7b412af602f0c76b57fbd2cd0 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '88' @@ -1274,13 +1328,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a1d04de8-019b-4d6f-a702-28fb6843fee2 + - '08a3fc8d-49e6-4906-8854-4104561d496f' Content-Type: - text/xml Content-Length: - '1716' Date: - - Fri, 08 Nov 2019 19:37:08 GMT + - Sun, 24 Nov 2019 15:47:33 GMT body: encoding: UTF-8 string: | @@ -1295,14 +1349,14 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:36:38.152Z + 2019-11-24T15:47:02.095Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/14658e50-025f-11ea-bf3d-060bd4c8b7ba + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-update-no-changes/a7cc9de0-0ed1-11ea-8fd9-064ea827a74e spec-aws-ruby-stack-update-no-changes Test template one DELETE_IN_PROGRESS - 2019-11-08T19:37:09.339Z + 2019-11-24T15:47:34.123Z false @@ -1324,9 +1378,9 @@ http_interactions: - a1d04de8-019b-4d6f-a702-28fb6843fee2 + 08a3fc8d-49e6-4906-8854-4104561d496f http_version: - recorded_at: Fri, 08 Nov 2019 19:37:09 GMT + recorded_at: Sun, 24 Nov 2019 15:47:34 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/is_ok_deleting_a_stack_that_does_not_exist.yml b/spec/cassettes/OpenStax_Aws_Stack/is_ok_deleting_a_stack_that_does_not_exist.yml index b90d205..770f6da 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/is_ok_deleting_a_stack_that_does_not_exist.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/is_ok_deleting_a_stack_that_does_not_exist.yml @@ -16,11 +16,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193241Z + - 20191124T154315Z X-Amz-Content-Sha256: - d493e53f0008c39804861f398041ec7b9d5a5247d56b1e2a334c4878b4f70120 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -32,13 +32,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - 2eec09ae-9ffb-4f85-bda7-2bbc9a0d1172 + - 1d7b7605-30f3-49c8-abde-bd18d6227ed5 Content-Type: - text/xml Content-Length: - '325' Date: - - Fri, 08 Nov 2019 19:32:41 GMT + - Sun, 24 Nov 2019 15:43:14 GMT Connection: - close body: @@ -50,10 +50,10 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-delete-non-existing does not exist - 2eec09ae-9ffb-4f85-bda7-2bbc9a0d1172 + 1d7b7605-30f3-49c8-abde-bd18d6227ed5 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:41 GMT + recorded_at: Sun, 24 Nov 2019 15:43:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -70,11 +70,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193241Z + - 20191124T154315Z X-Amz-Content-Sha256: - d493e53f0008c39804861f398041ec7b9d5a5247d56b1e2a334c4878b4f70120 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '90' @@ -86,13 +86,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - f3b94a62-bb89-4f98-9a35-71cbd9f41dc0 + - 52e26c59-8968-40fa-8b89-f072cd7743b2 Content-Type: - text/xml Content-Length: - '325' Date: - - Fri, 08 Nov 2019 19:32:42 GMT + - Sun, 24 Nov 2019 15:43:15 GMT Connection: - close body: @@ -104,8 +104,8 @@ http_interactions: ValidationError Stack with id spec-aws-ruby-stack-delete-non-existing does not exist - f3b94a62-bb89-4f98-9a35-71cbd9f41dc0 + 52e26c59-8968-40fa-8b89-f072cd7743b2 http_version: - recorded_at: Fri, 08 Nov 2019 19:32:42 GMT + recorded_at: Sun, 24 Nov 2019 15:43:15 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/skips_create_for_existing_stacks.yml b/spec/cassettes/OpenStax_Aws_Stack/skips_create_for_existing_stacks.yml new file mode 100644 index 0000000..ee8a0c8 --- /dev/null +++ b/spec/cassettes/OpenStax_Aws_Stack/skips_create_for_existing_stacks.yml @@ -0,0 +1,1265 @@ +--- +http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154807Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - ec512b99-10a5-451f-a26e-bad0af3a90e2 + Content-Type: + - text/xml + Content-Length: + - '318' + Date: + - Sun, 24 Nov 2019 15:48:07 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-skips-create does not exist + + ec512b99-10a5-451f-a26e-bad0af3a90e2 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:08 GMT +- request: + method: post + uri: https://cloudformation.us-west-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=ValidateTemplate&TemplateBody=Description%3A%20%3E%0A%20%20Test%20template%20one%0A%0AParameters%3A%0A%0A%20%20BucketName%3A%0A%20%20%20%20Type%3A%20String%0A%0A%20%20TagValue%3A%0A%20%20%20%20Type%3A%20String%0A%0AResources%3A%0A%0A%20%20S3Bucket%3A%0A%20%20%20%20Type%3A%20AWS%3A%3AS3%3A%3ABucket%0A%20%20%20%20Properties%3A%0A%20%20%20%20%20%20BucketName%3A%20%21Ref%20%27BucketName%27%0A%20%20%20%20%20%20Tags%3A%0A%20%20%20%20%20%20%20%20-%20Key%3A%20Tag1%0A%20%20%20%20%20%20%20%20%20%20Value%3A%20%21Ref%20%27TagValue%27%0A%0AOutputs%3A%0A%0A%20%20BucketArn%3A%0A%20%20%20%20Value%3A%20%21GetAtt%20%27S3Bucket.Arn%27%0A%20%20%20%20Export%3A%0A%20%20%20%20%20%20Name%3A%20%21Sub%20%27%24%7BAWS%3A%3AStackName%7D-BucketArn%27%0A&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-west-2.amazonaws.com + X-Amz-Date: + - 20191124T154808Z + X-Amz-Content-Sha256: + - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '759' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 544ad884-5471-4a60-844f-441a07dc0f37 + Content-Type: + - text/xml + Content-Length: + - '580' + Date: + - Sun, 24 Nov 2019 15:48:08 GMT + body: + encoding: UTF-8 + string: | + + + Test template one + + + + BucketName + false + + + TagValue + false + + + + + 544ad884-5471-4a60-844f-441a07dc0f37 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:08 GMT +- request: + method: put + uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml + body: + encoding: UTF-8 + string: | + Description: > + Test template one + + Parameters: + + BucketName: + Type: String + + TagValue: + Type: String + + Resources: + + S3Bucket: + Type: AWS::S3::Bucket + Properties: + BucketName: !Ref 'BucketName' + Tags: + - Key: Tag1 + Value: !Ref 'TagValue' + + Outputs: + + BucketArn: + Value: !GetAtt 'S3Bucket.Arn' + Export: + Name: !Sub '${AWS::StackName}-BucketArn' + headers: + Content-Type: + - '' + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-s3/1.37.0 + Expect: + - 100-continue + Content-Md5: + - iwRQXuudefxiuYnuy/AKYA== + Host: + - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com + X-Amz-Date: + - 20191124T154808Z + X-Amz-Content-Sha256: + - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, + SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, + Signature= + Content-Length: + - '395' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amz-Id-2: + - FBBpwGFBs/Qqd2dKs6kPT7FBtnKx8E+9GHQXxw4nor/LjRXIKRG9Af+OTbmR2EGK8SN2Y7XivlQ= + X-Amz-Request-Id: + - 9FCCC9B39233D519 + Date: + - Sun, 24 Nov 2019 15:48:10 GMT + X-Amz-Version-Id: + - rQG3hwU0YRJFPJAZQNhgBgFXBAW9WkFU + X-Amz-Server-Side-Encryption: + - AES256 + Etag: + - '"8b04505eeb9d79fc62b989eecbf00a60"' + Content-Length: + - '0' + Server: + - AmazonS3 + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:09 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=CreateStack&Capabilities=&EnableTerminationProtection=false&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.ParameterValue=aws-ruby-rspec-bucket&Parameters.member.2.ParameterKey=TagValue&Parameters.member.2.ParameterValue=howdy&StackName=spec-aws-ruby-stack-skips-create&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Ftemplate_one.yml&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154809Z + X-Amz-Content-Sha256: + - 449c695fbea15fa95af8242eedc2ca4827528f0b110413bcdc5a2de889f53d3c + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '440' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 535c58e6-9b06-472a-a11a-183d2771ddce + Content-Type: + - text/xml + Content-Length: + - '402' + Date: + - Sun, 24 Nov 2019 15:48:09 GMT + body: + encoding: UTF-8 + string: | + + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + + + 535c58e6-9b06-472a-a11a-183d2771ddce + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:10 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154810Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - a8e5d411-4ae6-4a56-b400-1148a4e2ea22 + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:09 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + a8e5d411-4ae6-4a56-b400-1148a4e2ea22 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:10 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154810Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 247caffc-1ad9-41ee-9df9-9c01c59fcd65 + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:10 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + 247caffc-1ad9-41ee-9df9-9c01c59fcd65 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:10 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154815Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 27e5d15c-3499-4afb-9d35-0a8a6b6d6dca + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:15 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + 27e5d15c-3499-4afb-9d35-0a8a6b6d6dca + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:16 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154821Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - b14f7366-5228-4e8e-95ea-0972e78f4570 + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:20 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + b14f7366-5228-4e8e-95ea-0972e78f4570 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:21 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154826Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - a8836671-c4a5-42dd-9226-ecdc8e289e7d + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:26 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + a8836671-c4a5-42dd-9226-ecdc8e289e7d + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:26 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154831Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - c5dafc53-31d1-4d4e-937e-efc0a3cdae27 + Content-Type: + - text/xml + Content-Length: + - '1364' + Date: + - Sun, 24 Nov 2019 15:48:31 GMT + body: + encoding: UTF-8 + string: | + + + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_IN_PROGRESS + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + c5dafc53-31d1-4d4e-937e-efc0a3cdae27 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:32 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154837Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - afbd7cd0-eb3b-47d5-91e3-43026751a5d8 + Content-Type: + - text/xml + Content-Length: + - '1636' + Date: + - Sun, 24 Nov 2019 15:48:37 GMT + body: + encoding: UTF-8 + string: | + + + + + + + spec-aws-ruby-stack-skips-create-BucketArn + BucketArn + arn:aws:s3:::aws-ruby-rspec-bucket + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_COMPLETE + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + afbd7cd0-eb3b-47d5-91e3-43026751a5d8 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:37 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154837Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - ab55ac87-3dd9-4963-a40f-6c51e65f99eb + Content-Type: + - text/xml + Content-Length: + - '1636' + Date: + - Sun, 24 Nov 2019 15:48:37 GMT + body: + encoding: UTF-8 + string: | + + + + + + + spec-aws-ruby-stack-skips-create-BucketArn + BucketArn + arn:aws:s3:::aws-ruby-rspec-bucket + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_COMPLETE + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + ab55ac87-3dd9-4963-a40f-6c51e65f99eb + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:38 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154838Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 6acb9467-fab3-4155-a8dc-acd366a93609 + Content-Type: + - text/xml + Content-Length: + - '1636' + Date: + - Sun, 24 Nov 2019 15:48:38 GMT + body: + encoding: UTF-8 + string: | + + + + + + + spec-aws-ruby-stack-skips-create-BucketArn + BucketArn + arn:aws:s3:::aws-ruby-rspec-bucket + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + CREATE_COMPLETE + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + 6acb9467-fab3-4155-a8dc-acd366a93609 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:38 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DeleteStack&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154838Z + X-Amz-Content-Sha256: + - 9fdd0b821cf5cbe181efc6d21e54e0db16c0670f47a4d2ee95595b7d5c6d584a + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '80' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 9e7d74fd-fcef-49d0-9b98-568530ded423 + Content-Type: + - text/xml + Content-Length: + - '212' + Date: + - Sun, 24 Nov 2019 15:48:38 GMT + body: + encoding: UTF-8 + string: | + + + 9e7d74fd-fcef-49d0-9b98-568530ded423 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:39 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154839Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - 890ab5d4-c33c-4db4-a86f-abce41bf2319 + Content-Type: + - text/xml + Content-Length: + - '1701' + Date: + - Sun, 24 Nov 2019 15:48:38 GMT + body: + encoding: UTF-8 + string: | + + + + + + + spec-aws-ruby-stack-skips-create-BucketArn + BucketArn + arn:aws:s3:::aws-ruby-rspec-bucket + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + DELETE_IN_PROGRESS + 2019-11-24T15:48:39.045Z + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + 890ab5d4-c33c-4db4-a86f-abce41bf2319 + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:39 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154839Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + X-Amzn-Requestid: + - c8870a51-840d-46bb-9b6b-733ddc8b9e4d + Content-Type: + - text/xml + Content-Length: + - '1701' + Date: + - Sun, 24 Nov 2019 15:48:39 GMT + body: + encoding: UTF-8 + string: | + + + + + + + spec-aws-ruby-stack-skips-create-BucketArn + BucketArn + arn:aws:s3:::aws-ruby-rspec-bucket + + + 2019-11-24T15:48:09.902Z + + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-skips-create/d066c050-0ed1-11ea-81c9-0a9d1f6a4556 + spec-aws-ruby-stack-skips-create + Test template one + + DELETE_IN_PROGRESS + 2019-11-24T15:48:39.045Z + false + + + + NOT_CHECKED + + false + + + BucketName + aws-ruby-rspec-bucket + + + TagValue + howdy + + + + + + + c8870a51-840d-46bb-9b6b-733ddc8b9e4d + + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:39 GMT +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-skips-create&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154844Z + X-Amz-Content-Sha256: + - 3e33e3f79ec7d0f79bfcd4c86cbe0484c769729bad98a3c624f508972d7d95aa + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '83' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 8948e897-b2ea-4be0-be54-5321e6e0bef5 + Content-Type: + - text/xml + Content-Length: + - '318' + Date: + - Sun, 24 Nov 2019 15:48:45 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-skips-create does not exist + + 8948e897-b2ea-4be0-be54-5321e6e0bef5 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:48:45 GMT +recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/OpenStax_Aws_Stack/uses_parameter_defaults.yml b/spec/cassettes/OpenStax_Aws_Stack/uses_parameter_defaults.yml index 9d9f23e..030818f 100644 --- a/spec/cassettes/OpenStax_Aws_Stack/uses_parameter_defaults.yml +++ b/spec/cassettes/OpenStax_Aws_Stack/uses_parameter_defaults.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=spec-aws-ruby-stack-parameter-defaults&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T154353Z + X-Amz-Content-Sha256: + - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '89' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - f26b34f3-19c2-43c9-a3c3-2d572194ee35 + Content-Type: + - text/xml + Content-Length: + - '324' + Date: + - Sun, 24 Nov 2019 15:43:53 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id spec-aws-ruby-stack-parameter-defaults does not exist + + f26b34f3-19c2-43c9-a3c3-2d572194ee35 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:43:54 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -16,11 +70,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193319Z + - 20191124T154354Z X-Amz-Content-Sha256: - 4c4130d6d8ee21d1264dded763ed8d1415f408345990e0ea0c57bac79465bafc Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '759' @@ -32,13 +86,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9ae20c41-5d72-4916-aed0-a9c939c05294 + - b7a4d854-f1cb-4582-8de3-a3287ed31588 Content-Type: - text/xml Content-Length: - '580' Date: - - Fri, 08 Nov 2019 19:33:19 GMT + - Sun, 24 Nov 2019 15:43:54 GMT body: encoding: UTF-8 string: | @@ -58,11 +112,11 @@ http_interactions: - 9ae20c41-5d72-4916-aed0-a9c939c05294 + b7a4d854-f1cb-4582-8de3-a3287ed31588 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:20 GMT + recorded_at: Sun, 24 Nov 2019 15:43:54 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/template_one.yml @@ -110,11 +164,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T193320Z + - 20191124T154354Z X-Amz-Content-Sha256: - 44820f5081bfdd4c387cf15b34f8f70367dbba4e87e0c51380353e1b3b436eab Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -127,13 +181,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - 9SK0oCViO5uAxW0TzZNSqKBKvC0+SI7Xf6oQygEqXL1Xa9ydldovFfBUffYz/yCRHmySFxJnMXc= + - 5gFDTQSxp+NjA9clC8OxyBHwpFoqf8Ywx4OEy/+Uk3lCQ2MnXKRUguwTJNiYkXzfDnLQ0Nt+QXc= X-Amz-Request-Id: - - D98A828A285789B7 + - AECA370730A06136 Date: - - Fri, 08 Nov 2019 19:33:22 GMT + - Sun, 24 Nov 2019 15:43:55 GMT X-Amz-Version-Id: - - MgIA16ctEN_RqHVv2vOpVbZgdzr573Xh + - V_S1Dr_eryQmvoeMwyfBhhJ8oqme0O8U X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -146,7 +200,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:33:22 GMT + recorded_at: Sun, 24 Nov 2019 15:43:54 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -163,11 +217,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193322Z + - 20191124T154354Z X-Amz-Content-Sha256: - abf367974e569307512f32ba2930691adea33016aea4b7eb97ef52a285dcc85d Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '446' @@ -179,26 +233,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 86739a64-0772-4fcc-b068-46e01ed5b5ae + - e37319b0-cbcf-4aa6-b015-680df845de61 Content-Type: - text/xml Content-Length: - '408' Date: - - Fri, 08 Nov 2019 19:33:22 GMT + - Sun, 24 Nov 2019 15:43:55 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 - 86739a64-0772-4fcc-b068-46e01ed5b5ae + e37319b0-cbcf-4aa6-b015-680df845de61 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:23 GMT + recorded_at: Sun, 24 Nov 2019 15:43:56 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -215,11 +269,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193323Z + - 20191124T154356Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -231,13 +285,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f9e96f5b-1e49-4d18-8568-b2ec0d66c022 + - '0007480f-6861-4a72-b33e-1ff304b1ac9a' Content-Type: - text/xml Content-Length: - - '1438' + - '1376' Date: - - Fri, 08 Nov 2019 19:33:23 GMT + - Sun, 24 Nov 2019 15:43:56 GMT body: encoding: UTF-8 string: | @@ -245,9 +299,9 @@ http_interactions: - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -259,7 +313,6 @@ http_interactions: NOT_CHECKED false - User Initiated BucketName @@ -274,11 +327,11 @@ http_interactions: - f9e96f5b-1e49-4d18-8568-b2ec0d66c022 + 0007480f-6861-4a72-b33e-1ff304b1ac9a http_version: - recorded_at: Fri, 08 Nov 2019 19:33:23 GMT + recorded_at: Sun, 24 Nov 2019 15:43:56 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -295,11 +348,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193324Z + - 20191124T154356Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -311,13 +364,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9380d7c8-4c21-4f73-814e-e93012c4dbfb + - 937fd509-6f74-49f3-86be-96c553555cc5 Content-Type: - text/xml Content-Length: - '1376' Date: - - Fri, 08 Nov 2019 19:33:23 GMT + - Sun, 24 Nov 2019 15:43:56 GMT body: encoding: UTF-8 string: | @@ -325,9 +378,9 @@ http_interactions: - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -353,11 +406,11 @@ http_interactions: - 9380d7c8-4c21-4f73-814e-e93012c4dbfb + 937fd509-6f74-49f3-86be-96c553555cc5 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:24 GMT + recorded_at: Sun, 24 Nov 2019 15:43:56 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -374,11 +427,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193329Z + - 20191124T154401Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -390,13 +443,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e08ab029-e020-45eb-a900-71378ee7d7c6 + - e19c0071-c6d9-451c-8b3e-ecd11676db2a Content-Type: - text/xml Content-Length: - '1376' Date: - - Fri, 08 Nov 2019 19:33:31 GMT + - Sun, 24 Nov 2019 15:44:02 GMT body: encoding: UTF-8 string: | @@ -404,9 +457,9 @@ http_interactions: - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -432,11 +485,11 @@ http_interactions: - e08ab029-e020-45eb-a900-71378ee7d7c6 + e19c0071-c6d9-451c-8b3e-ecd11676db2a http_version: - recorded_at: Fri, 08 Nov 2019 19:33:32 GMT + recorded_at: Sun, 24 Nov 2019 15:44:02 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -453,11 +506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193337Z + - 20191124T154407Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -469,13 +522,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a38b5d08-83ae-4100-93cf-a250e94e6c6c + - 765a5e11-52e7-4a68-931c-227c7ddd85ed Content-Type: - text/xml Content-Length: - '1376' Date: - - Fri, 08 Nov 2019 19:33:37 GMT + - Sun, 24 Nov 2019 15:44:07 GMT body: encoding: UTF-8 string: | @@ -483,9 +536,9 @@ http_interactions: - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -511,11 +564,11 @@ http_interactions: - a38b5d08-83ae-4100-93cf-a250e94e6c6c + 765a5e11-52e7-4a68-931c-227c7ddd85ed http_version: - recorded_at: Fri, 08 Nov 2019 19:33:37 GMT + recorded_at: Sun, 24 Nov 2019 15:44:07 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -532,11 +585,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193342Z + - 20191124T154412Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -548,13 +601,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - c14e786b-23ad-4f76-ac39-cabfa22e43d4 + - fe89e1c6-163e-42aa-9d04-6418e146e797 Content-Type: - text/xml Content-Length: - '1376' Date: - - Fri, 08 Nov 2019 19:33:42 GMT + - Sun, 24 Nov 2019 15:44:12 GMT body: encoding: UTF-8 string: | @@ -562,9 +615,9 @@ http_interactions: - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -590,11 +643,11 @@ http_interactions: - c14e786b-23ad-4f76-ac39-cabfa22e43d4 + fe89e1c6-163e-42aa-9d04-6418e146e797 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:42 GMT + recorded_at: Sun, 24 Nov 2019 15:44:12 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -611,11 +664,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193347Z + - 20191124T154417Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -627,13 +680,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2a446899-ec7c-4fb0-99c4-ebf8eebbae32 + - ea4141a5-514f-483e-88f8-e55a0b65d618 Content-Type: - text/xml Content-Length: - - '1657' + - '1376' Date: - - Fri, 08 Nov 2019 19:33:47 GMT + - Sun, 24 Nov 2019 15:44:17 GMT body: encoding: UTF-8 string: | @@ -641,16 +694,9 @@ http_interactions: - - - spec-aws-ruby-stack-parameter-defaults-BucketArn - BucketArn - arn:aws:s3:::aws-ruby-rspec-bucket - - - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -676,11 +722,11 @@ http_interactions: - 2a446899-ec7c-4fb0-99c4-ebf8eebbae32 + ea4141a5-514f-483e-88f8-e55a0b65d618 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:48 GMT + recorded_at: Sun, 24 Nov 2019 15:44:18 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -697,11 +743,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193353Z + - 20191124T154423Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -713,13 +759,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bc9e9c0b-f6a1-4dea-b04a-b954cfb53460 + - f451fca4-7a71-4eca-9035-f767d7afecc9 Content-Type: - text/xml Content-Length: - '1654' Date: - - Fri, 08 Nov 2019 19:33:52 GMT + - Sun, 24 Nov 2019 15:44:23 GMT body: encoding: UTF-8 string: | @@ -734,9 +780,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -762,11 +808,11 @@ http_interactions: - bc9e9c0b-f6a1-4dea-b04a-b954cfb53460 + f451fca4-7a71-4eca-9035-f767d7afecc9 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:53 GMT + recorded_at: Sun, 24 Nov 2019 15:44:23 GMT - request: method: get uri: https://aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com/?tagging @@ -783,11 +829,11 @@ http_interactions: Host: - aws-ruby-rspec-bucket.s3.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193353Z + - 20191124T154423Z X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/s3/aws4_request, SignedHeaders=host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '0' @@ -799,11 +845,11 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - iWrBDmPXI6Wq3St/wyGn1zRZG8pzNDb8eYfXYLqVZfO/wW6S29hV2mKmVDkEeeKF2DznW7SWkuw= + - 9/VHowYAlp1JzhM8YJkQb7hA0Tj8N0rmLgHvXcvu1plrADR6NWObxmWm17eabeuAKsa1nXgUoMk= X-Amz-Request-Id: - - 4E0F7D9AA440F6BE + - 633A21ED4C2D4851 Date: - - Fri, 08 Nov 2019 19:33:54 GMT + - Sun, 24 Nov 2019 15:44:25 GMT Transfer-Encoding: - chunked Server: @@ -812,9 +858,9 @@ http_interactions: encoding: UTF-8 string: |- - Tag1howdyaws:cloudformation:stack-namespec-aws-ruby-stack-parameter-defaultsaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + Tag1howdyaws:cloudformation:stack-namespec-aws-ruby-stack-parameter-defaultsaws:cloudformation:logical-idS3Bucketaws:cloudformation:stack-idarn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 http_version: - recorded_at: Fri, 08 Nov 2019 19:33:53 GMT + recorded_at: Sun, 24 Nov 2019 15:44:24 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -831,11 +877,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193353Z + - 20191124T154424Z X-Amz-Content-Sha256: - dedb9323659b15e9bc62233e5e805e710d8653be986e2e6cc4958a8ddc435720 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '89' @@ -847,13 +893,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - afbe0494-96c8-426b-bd39-73ac39a08a04 + - eca9e714-f833-46c4-be62-92478ce1a67e Content-Type: - text/xml Content-Length: - '1654' Date: - - Fri, 08 Nov 2019 19:33:54 GMT + - Sun, 24 Nov 2019 15:44:24 GMT body: encoding: UTF-8 string: | @@ -868,9 +914,9 @@ http_interactions: arn:aws:s3:::aws-ruby-rspec-bucket - 2019-11-08T19:33:23.528Z + 2019-11-24T15:43:55.870Z - arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/a0618b30-025e-11ea-a594-0ad7a569cb8c + arn:aws:cloudformation:us-east-2:373045849756:stack/spec-aws-ruby-stack-parameter-defaults/38cdb320-0ed1-11ea-81c9-0a9d1f6a4556 spec-aws-ruby-stack-parameter-defaults Test template one @@ -896,11 +942,11 @@ http_interactions: - afbe0494-96c8-426b-bd39-73ac39a08a04 + eca9e714-f833-46c4-be62-92478ce1a67e http_version: - recorded_at: Fri, 08 Nov 2019 19:33:54 GMT + recorded_at: Sun, 24 Nov 2019 15:44:24 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -917,11 +963,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193354Z + - 20191124T154424Z X-Amz-Content-Sha256: - 4c599648be73710a3fc44978d9158a4a7716b42f61e56fdccee47d65e543b2f3 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '86' @@ -933,21 +979,21 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2bff12e2-4423-40bf-92de-3bff3c8f7871 + - 2f1df4a2-5da5-454a-8104-751b2d1750bb Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:33:53 GMT + - Sun, 24 Nov 2019 15:44:24 GMT body: encoding: UTF-8 string: | - 2bff12e2-4423-40bf-92de-3bff3c8f7871 + 2f1df4a2-5da5-454a-8104-751b2d1750bb http_version: - recorded_at: Fri, 08 Nov 2019 19:33:54 GMT + recorded_at: Sun, 24 Nov 2019 15:44:25 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/secrets_DSL/creates_secrets_when_stack_created_and_deletes_when_deleted.yml b/spec/cassettes/secrets_DSL/creates_secrets_when_stack_created_and_deletes_when_deleted.yml index bdfc2e9..56d08d8 100644 --- a/spec/cassettes/secrets_DSL/creates_secrets_when_stack_created_and_deletes_when_deleted.yml +++ b/spec/cassettes/secrets_DSL/creates_secrets_when_stack_created_and_deletes_when_deleted.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=openstax-aws-ruby-secrets-secrets-dsl-spec-main&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T150548Z + X-Amz-Content-Sha256: + - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '98' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - aa9267ad-a046-4f00-bbb9-b2910ec0d50a + Content-Type: + - text/xml + Content-Length: + - '333' + Date: + - Sun, 24 Nov 2019 15:05:48 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id openstax-aws-ruby-secrets-secrets-dsl-spec-main does not exist + + aa9267ad-a046-4f00-bbb9-b2910ec0d50a + + http_version: + recorded_at: Sun, 24 Nov 2019 15:05:48 GMT - request: method: get uri: https://raw.githubusercontent.com/openstax/aws-ruby/1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e/spec/support/secrets_dsl/secrets.yml @@ -41,29 +95,29 @@ http_interactions: X-Geo-Block-List: - '' X-Github-Request-Id: - - E9EE:9743:2ABE1:30AC8:5DC5C1C2 + - 9704:464E:1EC83C:265331:5DDA9C4B Accept-Ranges: - bytes Date: - - Fri, 08 Nov 2019 19:28:04 GMT + - Sun, 24 Nov 2019 15:05:49 GMT Via: - 1.1 varnish X-Served-By: - - cache-lax8624-LAX + - cache-den19621-DEN X-Cache: - MISS X-Cache-Hits: - '0' X-Timer: - - S1573241284.125508,VS0,VE205 + - S1574607949.242272,VS0,VE201 Vary: - Authorization,Accept-Encoding Access-Control-Allow-Origin: - "*" X-Fastly-Request-Id: - - 3c19f0a8f93ec6071958fdd796ecee8ad5aa570f + - 806989c8d3f1ef9624535c8fda89ef067b6d19c8 Expires: - - Fri, 08 Nov 2019 19:33:04 GMT + - Sun, 24 Nov 2019 15:10:49 GMT Source-Age: - '0' body: @@ -74,7 +128,7 @@ http_interactions: interpolated: "https://{{ domain }}" for_shared_substitution: "howdy {{ shared_value }}" http_version: - recorded_at: Fri, 08 Nov 2019 19:28:04 GMT + recorded_at: Sun, 24 Nov 2019 15:05:49 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -93,11 +147,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192804Z + - 20191124T150549Z X-Amz-Content-Sha256: - 47b11b12abf0d8dbb242518083482c379f7cbc802ed34b0594480da3a6387264 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -110,24 +164,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 52ffe468-b4fe-470d-9b66-d91f23bde6ac + - 1ceb6384-992c-4c30-a708-e1238816f07d Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:04 GMT + - Sun, 24 Nov 2019 15:05:49 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:04 GMT + recorded_at: Sun, 24 Nov 2019 15:05:49 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: '{"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"dbaf","Description":"Generated + string: '{"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"ef98","Description":"Generated with random(hex,4)","Overwrite":true}' headers: Content-Type: @@ -141,11 +195,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192804Z + - 20191124T150549Z X-Amz-Content-Sha256: - - 28df2f0deda493b5405066b69b6e5a48d7bc047e0bc1e0d65e6156b418f88d43 + - 48be5936e929b3e833588f5a9b6566ac20fbfb3af3f3384403ec803f4bdfcaa9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -158,18 +212,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 81420107-b233-4937-a017-a2b7c0a8bfde + - 74e81a24-a31c-431d-8c5c-4fc68a3c0403 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:05 GMT + - Sun, 24 Nov 2019 15:05:49 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:05 GMT + recorded_at: Sun, 24 Nov 2019 15:05:50 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -188,11 +242,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192805Z + - 20191124T150550Z X-Amz-Content-Sha256: - 14d83b481d20fa39820ad18e42c3a12f747aa21af820954f4e94b6c2646d7cb1 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -205,18 +259,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a3112de2-5430-4443-ac9f-87143ed71b64 + - 1b57394b-2b50-4610-ba2f-10e90114c072 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:04 GMT + - Sun, 24 Nov 2019 15:05:50 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:05 GMT + recorded_at: Sun, 24 Nov 2019 15:05:50 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -236,11 +290,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192805Z + - 20191124T150550Z X-Amz-Content-Sha256: - 5b1c3b60a81704fd67444e637ef8fd76d2991ef56d9cd4240ec6723de92a6eed Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -253,18 +307,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7522e7e4-b082-4382-8122-17b9c06d4cdf + - 55843aee-3356-4933-b7f3-d5fcded942c9 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:05 GMT + - Sun, 24 Nov 2019 15:05:50 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:05 GMT + recorded_at: Sun, 24 Nov 2019 15:05:51 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -283,11 +337,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192805Z + - 20191124T150551Z X-Amz-Content-Sha256: - 575af75277a5cbb2e34d8f625bee432033c0f66aba168f9c31ed1decd565a1a5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -300,18 +354,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7532ed41-e2a0-4f82-bee5-482258e25e59 + - e9df256e-9d11-405a-b524-377504a064d8 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:05 GMT + - Sun, 24 Nov 2019 15:05:51 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:06 GMT + recorded_at: Sun, 24 Nov 2019 15:05:51 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -328,11 +382,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T192806Z + - 20191124T150551Z X-Amz-Content-Sha256: - eac6bb3472ca681dfb051bc17aa1fb87e9a70cb5d5a2f3633633ea0514279640 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '882' @@ -344,13 +398,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8a63f7e2-5a01-4625-9b56-85bce4707c47 + - 8968061a-cd54-481d-9ddb-6388ca13d9ee Content-Type: - text/xml Content-Length: - '718' Date: - - Fri, 08 Nov 2019 19:28:06 GMT + - Sun, 24 Nov 2019 15:05:51 GMT body: encoding: UTF-8 string: | @@ -375,11 +429,11 @@ http_interactions: - 8a63f7e2-5a01-4625-9b56-85bce4707c47 + 8968061a-cd54-481d-9ddb-6388ca13d9ee http_version: - recorded_at: Fri, 08 Nov 2019 19:28:06 GMT + recorded_at: Sun, 24 Nov 2019 15:05:52 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/main.yml @@ -431,11 +485,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T192806Z + - 20191124T150552Z X-Amz-Content-Sha256: - 64e8ada9f3320d27210e42c3d99b33b451892c68d0c964fd9e3bfff375f96cf2 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -448,13 +502,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - 1K6/8Ny4rHuHUFwzKdDWA4I5x/6kqSoh0wLkFI7/O8sHqV/Y40nNXEPrCOKYmXTcFYmMtgotXdQ= + - O0JalN7lRF7Y4Y1W5qkVPffnljATthWPDgh1Gg0fxV2wRUxVggZNTCFqa4hT5+wL4CqcdpOUSFc= X-Amz-Request-Id: - - 0300F534D18C6913 + - 95C12B1D893D62B4 Date: - - Fri, 08 Nov 2019 19:28:07 GMT + - Sun, 24 Nov 2019 15:05:53 GMT X-Amz-Version-Id: - - sbGqPcKr.Muk6T8v28.orhgxib3fplPN + - wIL.uSEi_vI.rxjju1GMciFWeKK70.Kt X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -467,7 +521,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:07 GMT + recorded_at: Sun, 24 Nov 2019 15:05:52 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -484,11 +538,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192807Z + - 20191124T150552Z X-Amz-Content-Sha256: - 0efcada8844666611cbeeee0d048eb4b18547095ad4d23b6f67381bcbd9f4f5c Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '492' @@ -500,26 +554,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - '0910c50c-493f-4ce4-af3c-2fdf599b190b' + - 4f8fcece-fbd5-43e9-9ef6-5b3bb66ba5ec Content-Type: - text/xml Content-Length: - '417' Date: - - Fri, 08 Nov 2019 19:28:08 GMT + - Sun, 24 Nov 2019 15:05:52 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c - 0910c50c-493f-4ce4-af3c-2fdf599b190b + 4f8fcece-fbd5-43e9-9ef6-5b3bb66ba5ec http_version: - recorded_at: Fri, 08 Nov 2019 19:28:08 GMT + recorded_at: Sun, 24 Nov 2019 15:05:53 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -536,11 +590,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192808Z + - 20191124T150553Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -552,13 +606,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - b8e3c337-1e4f-4e36-bd89-03a0e83e6a6a + - f9221b55-68ad-46a6-8b97-21122a95528f Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:08 GMT + - Sun, 24 Nov 2019 15:05:53 GMT body: encoding: UTF-8 string: | @@ -566,9 +620,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -598,11 +652,11 @@ http_interactions: - b8e3c337-1e4f-4e36-bd89-03a0e83e6a6a + f9221b55-68ad-46a6-8b97-21122a95528f http_version: - recorded_at: Fri, 08 Nov 2019 19:28:08 GMT + recorded_at: Sun, 24 Nov 2019 15:05:54 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -619,11 +673,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192808Z + - 20191124T150554Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -635,13 +689,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7be0546d-2344-45f6-a8ad-3b16f9ff322a + - 54204a1d-048f-4fbc-af0d-9e4006cb6680 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:08 GMT + - Sun, 24 Nov 2019 15:05:54 GMT body: encoding: UTF-8 string: | @@ -649,9 +703,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -681,11 +735,11 @@ http_interactions: - 7be0546d-2344-45f6-a8ad-3b16f9ff322a + 54204a1d-048f-4fbc-af0d-9e4006cb6680 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:08 GMT + recorded_at: Sun, 24 Nov 2019 15:05:54 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -702,11 +756,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192813Z + - 20191124T150559Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -718,13 +772,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5c38596e-0664-4769-9a50-3a8a60390bc7 + - b682009a-a031-4e93-9be6-60db11e1f8e5 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:14 GMT + - Sun, 24 Nov 2019 15:05:59 GMT body: encoding: UTF-8 string: | @@ -732,9 +786,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -764,11 +818,11 @@ http_interactions: - 5c38596e-0664-4769-9a50-3a8a60390bc7 + b682009a-a031-4e93-9be6-60db11e1f8e5 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:14 GMT + recorded_at: Sun, 24 Nov 2019 15:05:59 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -785,11 +839,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192819Z + - 20191124T150604Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -801,13 +855,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4e0e9a14-01de-412d-98dc-7d4e383ebce1 + - 9b4d020a-0f41-4a21-83ee-5ecc1b5f3d56 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:19 GMT + - Sun, 24 Nov 2019 15:06:04 GMT body: encoding: UTF-8 string: | @@ -815,9 +869,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -847,11 +901,11 @@ http_interactions: - 4e0e9a14-01de-412d-98dc-7d4e383ebce1 + 9b4d020a-0f41-4a21-83ee-5ecc1b5f3d56 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:19 GMT + recorded_at: Sun, 24 Nov 2019 15:06:05 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -868,11 +922,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192824Z + - 20191124T150610Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -884,13 +938,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 323ae234-68c9-4f9c-856b-fb730e99c1f9 + - 41e4a1b6-c756-4a52-86de-41e5f79d3c84 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:24 GMT + - Sun, 24 Nov 2019 15:06:10 GMT body: encoding: UTF-8 string: | @@ -898,9 +952,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -930,11 +984,11 @@ http_interactions: - 323ae234-68c9-4f9c-856b-fb730e99c1f9 + 41e4a1b6-c756-4a52-86de-41e5f79d3c84 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:25 GMT + recorded_at: Sun, 24 Nov 2019 15:06:10 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -951,11 +1005,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192830Z + - 20191124T150615Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -967,13 +1021,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 18d6fd8a-e0db-46d6-841c-5cd29cd35bd8 + - 904a711a-354d-4d4c-be99-512d4724858f Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:30 GMT + - Sun, 24 Nov 2019 15:06:15 GMT body: encoding: UTF-8 string: | @@ -981,9 +1035,9 @@ http_interactions: - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1013,11 +1067,11 @@ http_interactions: - 18d6fd8a-e0db-46d6-841c-5cd29cd35bd8 + 904a711a-354d-4d4c-be99-512d4724858f http_version: - recorded_at: Fri, 08 Nov 2019 19:28:30 GMT + recorded_at: Sun, 24 Nov 2019 15:06:16 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1034,11 +1088,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192835Z + - 20191124T150621Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1050,13 +1104,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - cf3e260c-aa9c-4c27-9457-5b4af0a30d58 + - f28f0c46-8296-463a-99cd-a0f74da91f27 Content-Type: - text/xml Content-Length: - '1863' Date: - - Fri, 08 Nov 2019 19:28:35 GMT + - Sun, 24 Nov 2019 15:06:20 GMT body: encoding: UTF-8 string: | @@ -1071,9 +1125,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1103,11 +1157,11 @@ http_interactions: - cf3e260c-aa9c-4c27-9457-5b4af0a30d58 + f28f0c46-8296-463a-99cd-a0f74da91f27 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:35 GMT + recorded_at: Sun, 24 Nov 2019 15:06:21 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1126,11 +1180,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192835Z + - 20191124T150621Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1143,19 +1197,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 7c62a97d-bf74-4725-b0c0-676e68def68d + - 1e528f09-c0a5-4cc5-953b-ba253b823e95 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1507' + - '1508' Date: - - Fri, 08 Nov 2019 19:28:35 GMT + - Sun, 24 Nov 2019 15:06:21 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.57324128473E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241285822E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241285447E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.573241286206E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.573241285079E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"dbaf","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607949854E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574607951009E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.574607950611E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607951407E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607950234E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"ef98","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:36 GMT + recorded_at: Sun, 24 Nov 2019 15:06:22 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1174,11 +1228,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192836Z + - 20191124T150622Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1191,19 +1245,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - d521aa25-313a-4aef-883b-acec9306f717 + - 9d7a8c91-3b6d-4c28-a87a-682bc15daa48 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1507' + - '1508' Date: - - Fri, 08 Nov 2019 19:28:36 GMT + - Sun, 24 Nov 2019 15:06:21 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.57324128473E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241285822E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241285447E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.573241286206E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.573241285079E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"dbaf","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607949854E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574607951009E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.574607950611E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607951407E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607950234E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"ef98","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:36 GMT + recorded_at: Sun, 24 Nov 2019 15:06:22 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1222,11 +1276,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192836Z + - 20191124T150622Z X-Amz-Content-Sha256: - 9eae29c9a9c93edd7d56bcefe36da0f52736679f0b9c2a53c303ff22e0e49d30 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1239,18 +1293,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4e2e62a5-2067-4db6-99f3-97d5969f8f0e + - 26b45fd7-5003-42b7-a2ca-6354b2db6e1c Content-Type: - application/x-amz-json-1.1 Content-Length: - '370' Date: - - Fri, 08 Nov 2019 19:28:36 GMT + - Sun, 24 Nov 2019 15:06:22 GMT body: encoding: UTF-8 string: '{"DeletedParameters":["/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random"],"InvalidParameters":[]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:37 GMT + recorded_at: Sun, 24 Nov 2019 15:06:22 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1269,11 +1323,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192837Z + - 20191124T150622Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1286,19 +1340,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 64e5658a-c419-4886-a855-ea618b8b4b95 + - 823eaee6-9b43-42d1-b174-e5ec6ba40e74 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1507' + - '1508' Date: - - Fri, 08 Nov 2019 19:28:36 GMT + - Sun, 24 Nov 2019 15:06:23 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.57324128473E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241285822E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241285447E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.573241286206E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.573241285079E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"dbaf","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607949854E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574607951009E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.574607950611E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607951407E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607950234E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"ef98","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:37 GMT + recorded_at: Sun, 24 Nov 2019 15:06:23 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1317,11 +1371,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192837Z + - 20191124T150623Z X-Amz-Content-Sha256: - 9eae29c9a9c93edd7d56bcefe36da0f52736679f0b9c2a53c303ff22e0e49d30 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1334,18 +1388,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bfa89460-8818-4213-a223-0db9f34c3963 + - 46891bc6-7306-4fff-86c0-b04e133204d6 Content-Type: - application/x-amz-json-1.1 Content-Length: - '370' Date: - - Fri, 08 Nov 2019 19:28:37 GMT + - Sun, 24 Nov 2019 15:06:22 GMT body: encoding: UTF-8 string: '{"DeletedParameters":[],"InvalidParameters":["/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random"]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:37 GMT + recorded_at: Sun, 24 Nov 2019 15:06:23 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1362,11 +1416,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192837Z + - 20191124T150623Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1378,13 +1432,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 82a3f110-b4a5-4279-85a0-13daa09dcfe7 + - 896a9593-df84-4b95-a933-489489d3540f Content-Type: - text/xml Content-Length: - '1863' Date: - - Fri, 08 Nov 2019 19:28:37 GMT + - Sun, 24 Nov 2019 15:06:24 GMT body: encoding: UTF-8 string: | @@ -1399,9 +1453,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1431,11 +1485,11 @@ http_interactions: - 82a3f110-b4a5-4279-85a0-13daa09dcfe7 + 896a9593-df84-4b95-a933-489489d3540f http_version: - recorded_at: Fri, 08 Nov 2019 19:28:38 GMT + recorded_at: Sun, 24 Nov 2019 15:06:24 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1452,11 +1506,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192838Z + - 20191124T150624Z X-Amz-Content-Sha256: - a5000bf791a40989964ea0e8de9c3104f1c1bb65e6267d7cc59c4bcec8b9f3d4 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '95' @@ -1468,23 +1522,23 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - d2957b9e-d96a-4dbf-962e-9a2c7d941739 + - ee969378-bffe-45e8-bbd9-8279cd98ee98 Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:28:38 GMT + - Sun, 24 Nov 2019 15:06:24 GMT body: encoding: UTF-8 string: | - d2957b9e-d96a-4dbf-962e-9a2c7d941739 + ee969378-bffe-45e8-bbd9-8279cd98ee98 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:38 GMT + recorded_at: Sun, 24 Nov 2019 15:06:24 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1501,11 +1555,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192838Z + - 20191124T150624Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1517,13 +1571,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bab62119-a02c-42d8-af9f-874dc719b5fb + - ba4aace1-2151-475d-8da0-71af1a1b5d2f Content-Type: - text/xml Content-Length: - '1928' Date: - - Fri, 08 Nov 2019 19:28:38 GMT + - Sun, 24 Nov 2019 15:06:25 GMT body: encoding: UTF-8 string: | @@ -1538,14 +1592,14 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec DELETE_IN_PROGRESS - 2019-11-08T19:28:38.796Z + 2019-11-24T15:06:24.861Z false @@ -1571,11 +1625,11 @@ http_interactions: - bab62119-a02c-42d8-af9f-874dc719b5fb + ba4aace1-2151-475d-8da0-71af1a1b5d2f http_version: - recorded_at: Fri, 08 Nov 2019 19:28:39 GMT + recorded_at: Sun, 24 Nov 2019 15:06:25 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1592,11 +1646,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192839Z + - 20191124T150625Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1608,13 +1662,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4671b943-a46d-4129-be79-c7e6f6bb2755 + - d41b7134-327e-4b66-aef4-84c98ac65ad1 Content-Type: - text/xml Content-Length: - '1928' Date: - - Fri, 08 Nov 2019 19:28:39 GMT + - Sun, 24 Nov 2019 15:06:25 GMT body: encoding: UTF-8 string: | @@ -1629,14 +1683,14 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:08.136Z + 2019-11-24T15:05:53.558Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e45f8220-025d-11ea-be41-064e3beebd9c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/e86eb1e0-0ecb-11ea-9caa-0a9fc5c4303c openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec DELETE_IN_PROGRESS - 2019-11-08T19:28:38.796Z + 2019-11-24T15:06:24.861Z false @@ -1662,11 +1716,11 @@ http_interactions: - 4671b943-a46d-4129-be79-c7e6f6bb2755 + d41b7134-327e-4b66-aef4-84c98ac65ad1 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:39 GMT + recorded_at: Sun, 24 Nov 2019 15:06:25 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1683,11 +1737,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192844Z + - 20191124T150630Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1699,13 +1753,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - 3b9681d3-a4ef-41f3-bfad-e76ff24844e0 + - 2447cda8-c134-49bf-96ca-0aa2e6219cf7 Content-Type: - text/xml Content-Length: - '333' Date: - - Fri, 08 Nov 2019 19:28:44 GMT + - Sun, 24 Nov 2019 15:06:30 GMT Connection: - close body: @@ -1717,10 +1771,10 @@ http_interactions: ValidationError Stack with id openstax-aws-ruby-secrets-secrets-dsl-spec-main does not exist - 3b9681d3-a4ef-41f3-bfad-e76ff24844e0 + 2447cda8-c134-49bf-96ca-0aa2e6219cf7 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:44 GMT + recorded_at: Sun, 24 Nov 2019 15:06:31 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1739,11 +1793,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192844Z + - 20191124T150631Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1756,16 +1810,16 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2f813776-1177-40b2-9f64-5b72b5adbf26 + - 6c6d8eb9-f685-496a-ae1f-7c6536e2f37a Content-Type: - application/x-amz-json-1.1 Content-Length: - '17' Date: - - Fri, 08 Nov 2019 19:28:44 GMT + - Sun, 24 Nov 2019 15:06:31 GMT body: encoding: UTF-8 string: '{"Parameters":[]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:45 GMT + recorded_at: Sun, 24 Nov 2019 15:06:31 GMT recorded_with: VCR 4.0.0 diff --git a/spec/cassettes/secrets_DSL/updates_secrets_when_stack_updated.yml b/spec/cassettes/secrets_DSL/updates_secrets_when_stack_updated.yml index b9566c3..24bcc9b 100644 --- a/spec/cassettes/secrets_DSL/updates_secrets_when_stack_updated.yml +++ b/spec/cassettes/secrets_DSL/updates_secrets_when_stack_updated.yml @@ -1,5 +1,59 @@ --- http_interactions: +- request: + method: post + uri: https://cloudformation.us-east-2.amazonaws.com/ + body: + encoding: UTF-8 + string: Action=DescribeStacks&StackName=openstax-aws-ruby-secrets-secrets-dsl-spec-main&Version=2010-05-15 + headers: + Content-Type: + - application/x-www-form-urlencoded; charset=utf-8 + Accept-Encoding: + - '' + User-Agent: + - aws-sdk-ruby3/3.52.0 ruby/2.5.0 x86_64-darwin17 aws-sdk-cloudformation/1.20.0 + Host: + - cloudformation.us-east-2.amazonaws.com + X-Amz-Date: + - 20191124T150631Z + X-Amz-Content-Sha256: + - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 + Authorization: + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, + SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= + Content-Length: + - '98' + Accept: + - "*/*" + response: + status: + code: 400 + message: Bad Request + headers: + X-Amzn-Requestid: + - 89233f4c-db0a-45d2-8bac-13fe6ef82057 + Content-Type: + - text/xml + Content-Length: + - '333' + Date: + - Sun, 24 Nov 2019 15:06:31 GMT + Connection: + - close + body: + encoding: UTF-8 + string: | + + + Sender + ValidationError + Stack with id openstax-aws-ruby-secrets-secrets-dsl-spec-main does not exist + + 89233f4c-db0a-45d2-8bac-13fe6ef82057 + + http_version: + recorded_at: Sun, 24 Nov 2019 15:06:31 GMT - request: method: get uri: https://raw.githubusercontent.com/openstax/aws-ruby/1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e/spec/support/secrets_dsl/secrets.yml @@ -41,31 +95,31 @@ http_interactions: X-Geo-Block-List: - '' X-Github-Request-Id: - - 74BE:441A:22918:2BEF4:5DC5C1ED + - 9704:464E:1EC83C:265331:5DDA9C4B Accept-Ranges: - bytes Date: - - Fri, 08 Nov 2019 19:28:45 GMT + - Sun, 24 Nov 2019 15:06:32 GMT Via: - 1.1 varnish X-Served-By: - - cache-den19636-DEN + - cache-den19641-DEN X-Cache: - - MISS + - HIT X-Cache-Hits: - - '0' + - '1' X-Timer: - - S1573241326.547862,VS0,VE113 + - S1574607992.172514,VS0,VE1 Vary: - Authorization,Accept-Encoding Access-Control-Allow-Origin: - "*" X-Fastly-Request-Id: - - 9439bc1a5375c65398905b32c59addc764eccae0 + - 5d4a28f621e4e98c8499625b9dd8b29a3a6d9b20 Expires: - - Fri, 08 Nov 2019 19:33:45 GMT + - Sun, 24 Nov 2019 15:11:32 GMT Source-Age: - - '0' + - '43' body: encoding: ASCII-8BIT string: | @@ -74,7 +128,7 @@ http_interactions: interpolated: "https://{{ domain }}" for_shared_substitution: "howdy {{ shared_value }}" http_version: - recorded_at: Fri, 08 Nov 2019 19:28:45 GMT + recorded_at: Sun, 24 Nov 2019 15:06:32 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -93,11 +147,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192845Z + - 20191124T150632Z X-Amz-Content-Sha256: - 47b11b12abf0d8dbb242518083482c379f7cbc802ed34b0594480da3a6387264 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -110,24 +164,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 3b4e7216-f6fd-4159-bcfa-b0ef9c149ef2 + - e8c75efc-5723-4d36-84f0-962b8dd64d15 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:45 GMT + - Sun, 24 Nov 2019 15:06:32 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:46 GMT + recorded_at: Sun, 24 Nov 2019 15:06:32 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: '{"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Description":"Generated + string: '{"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Description":"Generated with random(hex,4)","Overwrite":true}' headers: Content-Type: @@ -141,11 +195,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192846Z + - 20191124T150632Z X-Amz-Content-Sha256: - - 9b37aac920d286ceba3293612d4f395609db18d945df57d594ddc421b9086d45 + - 4303bc3835d76dd4dfc0d72eb032295978bdb2acf6c8dc201a8d1ff575e4be54 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -158,18 +212,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 575d0dd3-bfbd-45c7-b3ec-74a6e79a08dd + - 3edc65fc-a465-4f1c-afbf-1e778547585a Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:46 GMT + - Sun, 24 Nov 2019 15:06:31 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:46 GMT + recorded_at: Sun, 24 Nov 2019 15:06:32 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -188,11 +242,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192846Z + - 20191124T150632Z X-Amz-Content-Sha256: - 14d83b481d20fa39820ad18e42c3a12f747aa21af820954f4e94b6c2646d7cb1 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -205,18 +259,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - f8777a96-0f14-42bb-b557-be937977b274 + - 24d684d8-a2c4-4d49-854e-fa2d14315a39 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:45 GMT + - Sun, 24 Nov 2019 15:06:32 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:46 GMT + recorded_at: Sun, 24 Nov 2019 15:06:33 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -236,11 +290,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192846Z + - 20191124T150633Z X-Amz-Content-Sha256: - 5b1c3b60a81704fd67444e637ef8fd76d2991ef56d9cd4240ec6723de92a6eed Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -253,18 +307,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a3993e33-8ed0-4d4a-a3f4-166b8585b3ac + - 05cb2936-3640-45da-ad44-4e52fcb284dd Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:46 GMT + - Sun, 24 Nov 2019 15:06:33 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:47 GMT + recorded_at: Sun, 24 Nov 2019 15:06:33 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -283,11 +337,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192847Z + - 20191124T150633Z X-Amz-Content-Sha256: - 575af75277a5cbb2e34d8f625bee432033c0f66aba168f9c31ed1decd565a1a5 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -300,18 +354,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - eaab9c1e-9c23-4c85-a046-6969dd08199f + - f5ecd713-a086-4a3f-9835-9a2d3ec6c240 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:28:46 GMT + - Sun, 24 Nov 2019 15:06:33 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":1}' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:47 GMT + recorded_at: Sun, 24 Nov 2019 15:06:34 GMT - request: method: post uri: https://cloudformation.us-west-2.amazonaws.com/ @@ -328,11 +382,11 @@ http_interactions: Host: - cloudformation.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T192847Z + - 20191124T150634Z X-Amz-Content-Sha256: - eac6bb3472ca681dfb051bc17aa1fb87e9a70cb5d5a2f3633633ea0514279640 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '882' @@ -344,13 +398,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - ed0dc6cf-74a9-4e00-805b-44185d7c19a5 + - 18da5e4b-0023-4655-9763-ad61ca2da827 Content-Type: - text/xml Content-Length: - '718' Date: - - Fri, 08 Nov 2019 19:28:47 GMT + - Sun, 24 Nov 2019 15:06:34 GMT body: encoding: UTF-8 string: | @@ -375,11 +429,11 @@ http_interactions: - ed0dc6cf-74a9-4e00-805b-44185d7c19a5 + 18da5e4b-0023-4655-9763-ad61ca2da827 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:47 GMT + recorded_at: Sun, 24 Nov 2019 15:06:34 GMT - request: method: put uri: https://openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com/cfn_templates/spec-templates/main.yml @@ -431,11 +485,11 @@ http_interactions: Host: - openstax-sandbox-cfn-templates.s3.us-west-2.amazonaws.com X-Amz-Date: - - 20191108T192847Z + - 20191124T150634Z X-Amz-Content-Sha256: - 64e8ada9f3320d27210e42c3d99b33b451892c68d0c964fd9e3bfff375f96cf2 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-west-2/s3/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-west-2/s3/aws4_request, SignedHeaders=content-md5;expect;host;user-agent;x-amz-content-sha256;x-amz-date, Signature= Content-Length: @@ -448,13 +502,13 @@ http_interactions: message: OK headers: X-Amz-Id-2: - - MLtC+B+wJW5bXaElGgjw2d7xPgRDFUvPCJjIcO16Brhj76d8whD7ppBwAvjl2vMm/Fbb5SSzNbA= + - o7B2YHo3ixFPUyoYh3h3jzaR07HAFmxEpp4Q6gEmdvw1Ll4YFvipm0zp40bDJlO0H3Rxu1JjXQU= X-Amz-Request-Id: - - B64B823765797B9D + - B44D204E35C52247 Date: - - Fri, 08 Nov 2019 19:28:49 GMT + - Sun, 24 Nov 2019 15:06:35 GMT X-Amz-Version-Id: - - 5gZHp19l2jOoZWNjy3av5l9Kmh2sP339 + - halp4KO5nqZ3HNFat4RiBwDgvNm70o0_ X-Amz-Server-Side-Encryption: - AES256 Etag: @@ -467,7 +521,7 @@ http_interactions: encoding: UTF-8 string: '' http_version: - recorded_at: Fri, 08 Nov 2019 19:28:48 GMT + recorded_at: Sun, 24 Nov 2019 15:06:34 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -484,11 +538,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192848Z + - 20191124T150634Z X-Amz-Content-Sha256: - 0efcada8844666611cbeeee0d048eb4b18547095ad4d23b6f67381bcbd9f4f5c Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '492' @@ -500,26 +554,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2734cb77-f4e7-4e19-b228-8e874184a64b + - 9ae4f3d7-61f3-4771-aa68-e75aa29daf07 Content-Type: - text/xml Content-Length: - '417' Date: - - Fri, 08 Nov 2019 19:28:48 GMT + - Sun, 24 Nov 2019 15:06:35 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 - 2734cb77-f4e7-4e19-b228-8e874184a64b + 9ae4f3d7-61f3-4771-aa68-e75aa29daf07 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:49 GMT + recorded_at: Sun, 24 Nov 2019 15:06:36 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -536,11 +590,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192849Z + - 20191124T150636Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -552,13 +606,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e3584b58-6b67-42e9-aee9-8ca89a83ae4d + - de9c3c51-76a0-4dcb-96fd-5d1e2eab6d2a Content-Type: - text/xml Content-Length: - - '1627' + - '1565' Date: - - Fri, 08 Nov 2019 19:28:49 GMT + - Sun, 24 Nov 2019 15:06:35 GMT body: encoding: UTF-8 string: | @@ -566,9 +620,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -580,7 +634,6 @@ http_interactions: NOT_CHECKED false - User Initiated BucketName @@ -599,11 +652,11 @@ http_interactions: - e3584b58-6b67-42e9-aee9-8ca89a83ae4d + de9c3c51-76a0-4dcb-96fd-5d1e2eab6d2a http_version: - recorded_at: Fri, 08 Nov 2019 19:28:49 GMT + recorded_at: Sun, 24 Nov 2019 15:06:36 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -620,11 +673,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192849Z + - 20191124T150636Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -636,13 +689,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - d1eb48f8-87ef-4c9c-87d0-66d8a33bb6ab + - 0550d172-00e5-4c5e-9e2f-e36920e2ece3 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:49 GMT + - Sun, 24 Nov 2019 15:06:36 GMT body: encoding: UTF-8 string: | @@ -650,9 +703,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -682,11 +735,11 @@ http_interactions: - d1eb48f8-87ef-4c9c-87d0-66d8a33bb6ab + 0550d172-00e5-4c5e-9e2f-e36920e2ece3 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:50 GMT + recorded_at: Sun, 24 Nov 2019 15:06:37 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -703,11 +756,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192855Z + - 20191124T150642Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -719,13 +772,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9f12eb9a-9a6c-4653-ac60-6fc0d9c81d51 + - 988d368a-f056-43fb-8e5e-c2a0ee5f2ec1 Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:28:54 GMT + - Sun, 24 Nov 2019 15:06:41 GMT body: encoding: UTF-8 string: | @@ -733,9 +786,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -765,11 +818,11 @@ http_interactions: - 9f12eb9a-9a6c-4653-ac60-6fc0d9c81d51 + 988d368a-f056-43fb-8e5e-c2a0ee5f2ec1 http_version: - recorded_at: Fri, 08 Nov 2019 19:28:55 GMT + recorded_at: Sun, 24 Nov 2019 15:06:42 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -786,11 +839,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192900Z + - 20191124T150647Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -802,13 +855,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 84957522-4a81-4feb-a04d-ecaf79331dc6 + - 583df799-860e-4590-a9ba-4e8ffd10feda Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:29:00 GMT + - Sun, 24 Nov 2019 15:06:47 GMT body: encoding: UTF-8 string: | @@ -816,9 +869,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -848,11 +901,11 @@ http_interactions: - 84957522-4a81-4feb-a04d-ecaf79331dc6 + 583df799-860e-4590-a9ba-4e8ffd10feda http_version: - recorded_at: Fri, 08 Nov 2019 19:29:00 GMT + recorded_at: Sun, 24 Nov 2019 15:06:48 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -869,11 +922,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192905Z + - 20191124T150653Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -885,13 +938,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1b9904b2-e50e-4b14-86e9-8112d8647a34 + - abaede05-ca90-4332-925c-8ae675543f2c Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:29:05 GMT + - Sun, 24 Nov 2019 15:06:53 GMT body: encoding: UTF-8 string: | @@ -899,9 +952,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -931,11 +984,11 @@ http_interactions: - 1b9904b2-e50e-4b14-86e9-8112d8647a34 + abaede05-ca90-4332-925c-8ae675543f2c http_version: - recorded_at: Fri, 08 Nov 2019 19:29:06 GMT + recorded_at: Sun, 24 Nov 2019 15:06:53 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -952,11 +1005,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192911Z + - 20191124T150658Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -968,13 +1021,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8cb47000-8434-4ed6-ad2f-328bce9f1cfa + - 9dd5de64-a46d-4e04-9c02-f788c695fdfe Content-Type: - text/xml Content-Length: - '1565' Date: - - Fri, 08 Nov 2019 19:29:10 GMT + - Sun, 24 Nov 2019 15:06:58 GMT body: encoding: UTF-8 string: | @@ -982,9 +1035,9 @@ http_interactions: - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1014,11 +1067,11 @@ http_interactions: - 8cb47000-8434-4ed6-ad2f-328bce9f1cfa + 9dd5de64-a46d-4e04-9c02-f788c695fdfe http_version: - recorded_at: Fri, 08 Nov 2019 19:29:11 GMT + recorded_at: Sun, 24 Nov 2019 15:06:58 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1035,11 +1088,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192916Z + - 20191124T150703Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1051,13 +1104,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - bcf17854-1de9-4ae9-aeeb-fe376908adb1 + - 4353ca0f-9969-4199-a519-e26baeb14821 Content-Type: - text/xml Content-Length: - '1863' Date: - - Fri, 08 Nov 2019 19:29:16 GMT + - Sun, 24 Nov 2019 15:07:04 GMT body: encoding: UTF-8 string: | @@ -1072,9 +1125,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1104,11 +1157,11 @@ http_interactions: - bcf17854-1de9-4ae9-aeeb-fe376908adb1 + 4353ca0f-9969-4199-a519-e26baeb14821 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:16 GMT + recorded_at: Sun, 24 Nov 2019 15:07:04 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1127,11 +1180,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192916Z + - 20191124T150704Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1144,19 +1197,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 40500743-2790-43c2-b313-d221f24ce1a2 + - 251c9001-f616-4066-b83b-69c6644333dc Content-Type: - application/x-amz-json-1.1 Content-Length: - '1506' Date: - - Fri, 08 Nov 2019 19:29:16 GMT + - Sun, 24 Nov 2019 15:07:04 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241327126E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.57460799368E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:17 GMT + recorded_at: Sun, 24 Nov 2019 15:07:04 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1173,11 +1226,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192917Z + - 20191124T150704Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1189,13 +1242,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - cbf088ea-6384-48cf-af3f-e7e76c4e9285 + - 87551315-b1b1-4946-b9fe-e093d0d74f94 Content-Type: - text/xml Content-Length: - '1863' Date: - - Fri, 08 Nov 2019 19:29:16 GMT + - Sun, 24 Nov 2019 15:07:04 GMT body: encoding: UTF-8 string: | @@ -1210,9 +1263,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1242,11 +1295,11 @@ http_interactions: - cbf088ea-6384-48cf-af3f-e7e76c4e9285 + 87551315-b1b1-4946-b9fe-e093d0d74f94 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:17 GMT + recorded_at: Sun, 24 Nov 2019 15:07:05 GMT - request: method: get uri: https://raw.githubusercontent.com/openstax/aws-ruby/1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e/spec/support/secrets_dsl/secrets.yml @@ -1288,31 +1341,31 @@ http_interactions: X-Geo-Block-List: - '' X-Github-Request-Id: - - E9EE:9743:2ABE1:30AC8:5DC5C1C2 + - 9704:464E:1EC83C:265331:5DDA9C4B Accept-Ranges: - bytes Date: - - Fri, 08 Nov 2019 19:29:17 GMT + - Sun, 24 Nov 2019 15:07:05 GMT Via: - 1.1 varnish X-Served-By: - - cache-lax8620-LAX + - cache-den19627-DEN X-Cache: - HIT X-Cache-Hits: - '1' X-Timer: - - S1573241358.836712,VS0,VE1 + - S1574608025.366704,VS0,VE1 Vary: - Authorization,Accept-Encoding Access-Control-Allow-Origin: - "*" X-Fastly-Request-Id: - - a4fa5663b3670f0791372630e08259eae868b56b + - a646d076b25d6a76acd28175d59b711d0e66001f Expires: - - Fri, 08 Nov 2019 19:34:17 GMT + - Sun, 24 Nov 2019 15:12:05 GMT Source-Age: - - '74' + - '76' body: encoding: ASCII-8BIT string: | @@ -1321,7 +1374,7 @@ http_interactions: interpolated: "https://{{ domain }}" for_shared_substitution: "howdy {{ shared_value }}" http_version: - recorded_at: Fri, 08 Nov 2019 19:29:17 GMT + recorded_at: Sun, 24 Nov 2019 15:07:05 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1340,11 +1393,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192917Z + - 20191124T150705Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1357,19 +1410,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - effbf353-f9bc-43d3-9bfc-71f096be2994 + - cdae4bbe-907e-49cb-8cac-6ddc0bcf1660 Content-Type: - application/x-amz-json-1.1 Content-Length: - '1506' Date: - - Fri, 08 Nov 2019 19:29:18 GMT + - Sun, 24 Nov 2019 15:07:04 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241327126E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.57460799368E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:18 GMT + recorded_at: Sun, 24 Nov 2019 15:07:05 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1388,11 +1441,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192918Z + - 20191124T150705Z X-Amz-Content-Sha256: - 9a8fbce2781c4001ccbf1e3f337fbd5239194b0b5a4ba7ea3b0ace417841f070 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1405,18 +1458,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - '0180601f-9933-4138-9175-9e0ace669a6c' + - 150e2fed-796d-4acc-9595-65c81aadeed2 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '300' + - '301' Date: - - Fri, 08 Nov 2019 19:29:17 GMT + - Sun, 24 Nov 2019 15:07:05 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"DataType":"text","Description":"Generated with random(hex,4)","LastModifiedDate":1.57324132636E9,"LastModifiedUser":"arn:aws:iam::373045849756:user/jpslav","Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Policies":[],"Tier":"Standard","Type":"String","Version":1}]}' + string: '{"Parameters":[{"DataType":"text","Description":"Generated with random(hex,4)","LastModifiedDate":1.574607992915E9,"LastModifiedUser":"arn:aws:iam::373045849756:user/jpslav","Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Policies":[],"Tier":"Standard","Type":"String","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:18 GMT + recorded_at: Sun, 24 Nov 2019 15:07:06 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1436,11 +1489,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192918Z + - 20191124T150706Z X-Amz-Content-Sha256: - 14e6413514a714446bb798a2de4e03b9b0a26d28164934b95799bbcd6caa2789 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1453,18 +1506,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 52d4e344-5871-4cf4-be52-b5f0be34425d + - 75efb992-1d23-4337-b973-edd1770c3339 Content-Type: - application/x-amz-json-1.1 Content-Length: - '31' Date: - - Fri, 08 Nov 2019 19:29:18 GMT + - Sun, 24 Nov 2019 15:07:05 GMT body: encoding: UTF-8 string: '{"Tier":"Standard","Version":2}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:18 GMT + recorded_at: Sun, 24 Nov 2019 15:07:06 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -1483,11 +1536,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192918Z + - 20191124T150706Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -1500,25 +1553,25 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 5ac2e761-d83d-4903-89f6-e8fa53794c67 + - caa7fd4e-d7b4-4306-891c-6fc783aeba56 Content-Type: - application/x-amz-json-1.1 Content-Length: - '1506' Date: - - Fri, 08 Nov 2019 19:29:19 GMT + - Sun, 24 Nov 2019 15:07:06 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241327126E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.57460799368E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + y''all","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:19 GMT + recorded_at: Sun, 24 Nov 2019 15:07:06 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=CreateChangeSet&Capabilities=&ChangeSetName=openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=SomeSha&Parameters.member.2.UsePreviousValue=true&Parameters.member.3.ParameterKey=CycleIfDifferent&Parameters.member.3.ParameterValue=2125bb055cfa6b6a4381&StackName=openstax-aws-ruby-secrets-secrets-dsl-spec-main&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Fmain.yml&Version=2010-05-15 + string: Action=CreateChangeSet&Capabilities=&ChangeSetName=openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706&Parameters.member.1.ParameterKey=BucketName&Parameters.member.1.UsePreviousValue=true&Parameters.member.2.ParameterKey=SomeSha&Parameters.member.2.UsePreviousValue=true&Parameters.member.3.ParameterKey=CycleIfDifferent&Parameters.member.3.ParameterValue=865c4820db0d4e6c773c&StackName=openstax-aws-ruby-secrets-secrets-dsl-spec-main&TemplateURL=https%3A%2F%2Fs3.amazonaws.com%2Fopenstax-sandbox-cfn-templates%2Fcfn_templates%2Fspec-templates%2Fmain.yml&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1529,11 +1582,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192919Z + - 20191124T150706Z X-Amz-Content-Sha256: - - 18da2046527693aaf818d5b4c405ee7b4c8e1ef5e33d96d4728eec3f239cea06 + - 4781704a580b371fd7a7fb0c155b3be6cf09c2c4cd54b323496eb703f3279ff2 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '586' @@ -1545,33 +1598,33 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - e36676a9-31c4-4715-9b3e-c8f6bad002a3 + - bf51865c-c435-4dff-937d-c1fccd6ae611 Content-Type: - text/xml Content-Length: - '603' Date: - - Fri, 08 Nov 2019 19:29:19 GMT + - Sun, 24 Nov 2019 15:07:07 GMT body: encoding: UTF-8 string: | - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - e36676a9-31c4-4715-9b3e-c8f6bad002a3 + bf51865c-c435-4dff-937d-c1fccd6ae611 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:20 GMT + recorded_at: Sun, 24 Nov 2019 15:07:08 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919%2Fa3a35c01-e9f8-4108-8d72-1564d4ac817a&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706%2Ff90089ca-32f4-4728-8fd0-f7e5e877c157&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1582,11 +1635,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192920Z + - 20191124T150708Z X-Amz-Content-Sha256: - - 82102b537c888f589c4dbe28b9e5823e8713c2f9aac7146c25a82cf365022093 + - 553894f90b55a43654a9da7b3ae0712c99221fe2b47b35fa2f4f9deae7241659 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '228' @@ -1598,26 +1651,26 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 597874de-e11d-455d-87e8-ca18c267826c + - 4715f9e0-2570-4d22-91b7-a2ced32caebb Content-Type: - text/xml Content-Length: - - '1529' + - '1533' Date: - - Fri, 08 Nov 2019 19:29:20 GMT + - Sun, 24 Nov 2019 15:07:08 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:29:20.251Z + 2019-11-24T15:07:08.320Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 UNAVAILABLE openstax-aws-ruby-secrets-secrets-dsl-spec-main - openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919 + openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706 @@ -1626,28 +1679,28 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a - CREATE_PENDING + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 + CREATE_IN_PROGRESS - 597874de-e11d-455d-87e8-ca18c267826c + 4715f9e0-2570-4d22-91b7-a2ced32caebb http_version: - recorded_at: Fri, 08 Nov 2019 19:29:20 GMT + recorded_at: Sun, 24 Nov 2019 15:07:08 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919%2Fa3a35c01-e9f8-4108-8d72-1564d4ac817a&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706%2Ff90089ca-32f4-4728-8fd0-f7e5e877c157&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1658,11 +1711,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192925Z + - 20191124T150713Z X-Amz-Content-Sha256: - - 82102b537c888f589c4dbe28b9e5823e8713c2f9aac7146c25a82cf365022093 + - 553894f90b55a43654a9da7b3ae0712c99221fe2b47b35fa2f4f9deae7241659 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '228' @@ -1674,7 +1727,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8f128cd8-5250-47cd-99bc-091cff7fb570 + - c856df21-301f-405f-bb6e-e07e6142fec9 Content-Type: - text/xml Content-Length: @@ -1682,16 +1735,16 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:25 GMT + - Sun, 24 Nov 2019 15:07:13 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:29:20.251Z + 2019-11-24T15:07:08.320Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 AVAILABLE openstax-aws-ruby-secrets-secrets-dsl-spec-main @@ -1716,11 +1769,11 @@ http_interactions: Static ParameterReference + CycleIfDifferent Never Tags - CycleIfDifferent False @@ -1728,7 +1781,7 @@ http_interactions: - openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919 + openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706 @@ -1737,28 +1790,28 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 CREATE_COMPLETE - 8f128cd8-5250-47cd-99bc-091cff7fb570 + c856df21-301f-405f-bb6e-e07e6142fec9 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:26 GMT + recorded_at: Sun, 24 Nov 2019 15:07:14 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919%2Fa3a35c01-e9f8-4108-8d72-1564d4ac817a&Version=2010-05-15 + string: Action=DescribeChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706%2Ff90089ca-32f4-4728-8fd0-f7e5e877c157&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1769,11 +1822,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192926Z + - 20191124T150714Z X-Amz-Content-Sha256: - - 82102b537c888f589c4dbe28b9e5823e8713c2f9aac7146c25a82cf365022093 + - 553894f90b55a43654a9da7b3ae0712c99221fe2b47b35fa2f4f9deae7241659 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '228' @@ -1785,7 +1838,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1ba0d1f2-42f5-4137-ae44-9ea908d366e2 + - 23b9e1a9-92b7-4e06-9550-96c64d81d38a Content-Type: - text/xml Content-Length: @@ -1793,16 +1846,16 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:25 GMT + - Sun, 24 Nov 2019 15:07:13 GMT body: encoding: UTF-8 string: | - 2019-11-08T19:29:20.251Z + 2019-11-24T15:07:08.320Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 AVAILABLE openstax-aws-ruby-secrets-secrets-dsl-spec-main @@ -1839,7 +1892,7 @@ http_interactions: - openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919 + openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706 @@ -1848,28 +1901,28 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 CREATE_COMPLETE - 1ba0d1f2-42f5-4137-ae44-9ea908d366e2 + 23b9e1a9-92b7-4e06-9550-96c64d81d38a http_version: - recorded_at: Fri, 08 Nov 2019 19:29:26 GMT + recorded_at: Sun, 24 Nov 2019 15:07:14 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ body: encoding: UTF-8 - string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919%2Fa3a35c01-e9f8-4108-8d72-1564d4ac817a&Version=2010-05-15 + string: Action=ExecuteChangeSet&ChangeSetName=arn%3Aaws%3Acloudformation%3Aus-east-2%3A373045849756%3AchangeSet%2Fopenstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706%2Ff90089ca-32f4-4728-8fd0-f7e5e877c157&Version=2010-05-15 headers: Content-Type: - application/x-www-form-urlencoded; charset=utf-8 @@ -1880,11 +1933,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192926Z + - 20191124T150714Z X-Amz-Content-Sha256: - - 334eac8f9a7dced190d95eb19fcf2036ff963295014a1c65012dd489ac08ec8d + - bb40287ff0ac911d188ebd3d8a84ce1965c4ebc0ae0c59fe283f764d4606e509 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '227' @@ -1896,24 +1949,24 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 1ae3df23-939b-43b2-9bf0-2453acb7e33c + - ba130970-8efc-41e8-ab9f-8e34bc570412 Content-Type: - text/xml Content-Length: - '250' Date: - - Fri, 08 Nov 2019 19:29:26 GMT + - Sun, 24 Nov 2019 15:07:14 GMT body: encoding: UTF-8 string: | - 1ae3df23-939b-43b2-9bf0-2453acb7e33c + ba130970-8efc-41e8-ab9f-8e34bc570412 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:26 GMT + recorded_at: Sun, 24 Nov 2019 15:07:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -1930,11 +1983,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192926Z + - 20191124T150715Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -1946,7 +1999,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 9c456f32-5637-4f67-8591-5632d0917ead + - 7bf7c4f7-1d4b-49a5-9425-e78643f6ece5 Content-Type: - text/xml Content-Length: @@ -1954,7 +2007,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:26 GMT + - Sun, 24 Nov 2019 15:07:15 GMT body: encoding: UTF-8 string: | @@ -1969,9 +2022,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -1983,7 +2036,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -1991,7 +2044,7 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha @@ -1999,16 +2052,16 @@ http_interactions: User Initiated - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 9c456f32-5637-4f67-8591-5632d0917ead + 7bf7c4f7-1d4b-49a5-9425-e78643f6ece5 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:27 GMT + recorded_at: Sun, 24 Nov 2019 15:07:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2025,11 +2078,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192927Z + - 20191124T150715Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2041,7 +2094,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - a7e1fa0e-6a75-4ae9-99c5-9177a7600856 + - 3d3677f7-c5ec-44ca-9922-069a362e6e82 Content-Type: - text/xml Content-Length: @@ -2049,7 +2102,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:26 GMT + - Sun, 24 Nov 2019 15:07:15 GMT body: encoding: UTF-8 string: | @@ -2064,9 +2117,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2078,7 +2131,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2086,23 +2139,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - a7e1fa0e-6a75-4ae9-99c5-9177a7600856 + 3d3677f7-c5ec-44ca-9922-069a362e6e82 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:27 GMT + recorded_at: Sun, 24 Nov 2019 15:07:15 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2119,11 +2172,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192932Z + - 20191124T150720Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2135,7 +2188,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 72d7a34f-13fc-4397-91c8-a62c2337047c + - e9ab3e6b-8d40-4ed5-9896-84946836cda1 Content-Type: - text/xml Content-Length: @@ -2143,7 +2196,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:32 GMT + - Sun, 24 Nov 2019 15:07:20 GMT body: encoding: UTF-8 string: | @@ -2158,9 +2211,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2172,7 +2225,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2180,23 +2233,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 72d7a34f-13fc-4397-91c8-a62c2337047c + e9ab3e6b-8d40-4ed5-9896-84946836cda1 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:33 GMT + recorded_at: Sun, 24 Nov 2019 15:07:21 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2213,11 +2266,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192938Z + - 20191124T150726Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2229,7 +2282,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - c3a53be1-8e22-47c7-a1df-b36b7b100439 + - b8d1b1f9-d97a-4d07-baf7-d886f8f1afce Content-Type: - text/xml Content-Length: @@ -2237,7 +2290,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:37 GMT + - Sun, 24 Nov 2019 15:07:25 GMT body: encoding: UTF-8 string: | @@ -2252,9 +2305,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2266,7 +2319,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2274,23 +2327,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - c3a53be1-8e22-47c7-a1df-b36b7b100439 + b8d1b1f9-d97a-4d07-baf7-d886f8f1afce http_version: - recorded_at: Fri, 08 Nov 2019 19:29:38 GMT + recorded_at: Sun, 24 Nov 2019 15:07:26 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2307,11 +2360,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192943Z + - 20191124T150731Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2323,7 +2376,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - fe3c1f49-866b-453f-ba36-ec816a63a1f4 + - 5f67d11c-efaa-41bc-88a8-84879686d085 Content-Type: - text/xml Content-Length: @@ -2331,7 +2384,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:43 GMT + - Sun, 24 Nov 2019 15:07:31 GMT body: encoding: UTF-8 string: | @@ -2346,9 +2399,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2360,7 +2413,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2368,23 +2421,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - fe3c1f49-866b-453f-ba36-ec816a63a1f4 + 5f67d11c-efaa-41bc-88a8-84879686d085 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:43 GMT + recorded_at: Sun, 24 Nov 2019 15:07:32 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2401,11 +2454,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192948Z + - 20191124T150737Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2417,7 +2470,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 98727dce-11b9-4b13-b1ae-09f8d598341d + - 60027d2b-19ff-4152-abcd-6770e077b9ed Content-Type: - text/xml Content-Length: @@ -2425,7 +2478,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:48 GMT + - Sun, 24 Nov 2019 15:07:36 GMT body: encoding: UTF-8 string: | @@ -2440,9 +2493,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2454,7 +2507,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2462,23 +2515,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 98727dce-11b9-4b13-b1ae-09f8d598341d + 60027d2b-19ff-4152-abcd-6770e077b9ed http_version: - recorded_at: Fri, 08 Nov 2019 19:29:49 GMT + recorded_at: Sun, 24 Nov 2019 15:07:37 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2495,11 +2548,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192954Z + - 20191124T150742Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2511,7 +2564,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8e188255-b361-4a32-8fe3-cb8a10e56246 + - 0f1e3dab-eb2e-4e5d-87fb-ccf64819712d Content-Type: - text/xml Content-Length: @@ -2519,7 +2572,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:54 GMT + - Sun, 24 Nov 2019 15:07:41 GMT body: encoding: UTF-8 string: | @@ -2534,9 +2587,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2548,7 +2601,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2556,23 +2609,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 8e188255-b361-4a32-8fe3-cb8a10e56246 + 0f1e3dab-eb2e-4e5d-87fb-ccf64819712d http_version: - recorded_at: Fri, 08 Nov 2019 19:29:54 GMT + recorded_at: Sun, 24 Nov 2019 15:07:42 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -2591,11 +2644,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192954Z + - 20191124T150742Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -2608,19 +2661,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 837c7d3c-db1a-4ed2-809e-83294b750755 + - 79552f98-c43a-4b11-9236-4ed883db0466 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1508' + - '1509' Date: - - Fri, 08 Nov 2019 19:29:54 GMT + - Sun, 24 Nov 2019 15:07:42 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241358855E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574608026495E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:54 GMT + recorded_at: Sun, 24 Nov 2019 15:07:43 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2637,11 +2690,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192954Z + - 20191124T150743Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2653,7 +2706,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 2b6b6bab-50e3-4094-bbcc-878e43c12bc0 + - 88ace7fc-be74-44ec-bcd4-14c54a248dea Content-Type: - text/xml Content-Length: @@ -2661,7 +2714,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:54 GMT + - Sun, 24 Nov 2019 15:07:42 GMT body: encoding: UTF-8 string: | @@ -2676,9 +2729,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2690,7 +2743,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2698,23 +2751,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 2b6b6bab-50e3-4094-bbcc-878e43c12bc0 + 88ace7fc-be74-44ec-bcd4-14c54a248dea http_version: - recorded_at: Fri, 08 Nov 2019 19:29:55 GMT + recorded_at: Sun, 24 Nov 2019 15:07:43 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -2733,11 +2786,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192955Z + - 20191124T150743Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -2750,19 +2803,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 42c86582-6865-4f2c-8603-25bedb329baf + - 29c4af25-2596-4d51-9a0e-aaf357b0359a Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1508' + - '1509' Date: - - Fri, 08 Nov 2019 19:29:55 GMT + - Sun, 24 Nov 2019 15:07:43 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241358855E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574608026495E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:55 GMT + recorded_at: Sun, 24 Nov 2019 15:07:43 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -2781,11 +2834,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192955Z + - 20191124T150743Z X-Amz-Content-Sha256: - 9eae29c9a9c93edd7d56bcefe36da0f52736679f0b9c2a53c303ff22e0e49d30 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -2798,18 +2851,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 202f95a6-f88b-47f6-a185-31500a6140f2 + - 655d298b-c681-40d3-ab98-fd4045439c8e Content-Type: - application/x-amz-json-1.1 Content-Length: - '370' Date: - - Fri, 08 Nov 2019 19:29:55 GMT + - Sun, 24 Nov 2019 15:07:43 GMT body: encoding: UTF-8 string: '{"DeletedParameters":["/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random"],"InvalidParameters":[]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:56 GMT + recorded_at: Sun, 24 Nov 2019 15:07:44 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -2828,11 +2881,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192956Z + - 20191124T150744Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -2845,19 +2898,19 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 329197da-c842-45e3-b910-65b0e1380a22 + - 4bd0abb2-2831-42f4-9e0a-5634ce56ace0 Content-Type: - application/x-amz-json-1.1 Content-Length: - - '1508' + - '1509' Date: - - Fri, 08 Nov 2019 19:29:56 GMT + - Sun, 24 Nov 2019 15:07:43 GMT body: encoding: UTF-8 - string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.573241325989E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.573241358855E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy - you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.573241326764E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.57324132749E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.57324132636E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"f869","Version":1}]}' + string: '{"Parameters":[{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","DataType":"text","LastModifiedDate":1.574607992535E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","Type":"String","Value":"something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","DataType":"text","LastModifiedDate":1.574608026495E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","Type":"String","Value":"howdy + you''all","Version":2},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","DataType":"text","LastModifiedDate":1.57460799329E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","Type":"String","Value":"https://something-deployment-specific","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","DataType":"text","LastModifiedDate":1.574607994063E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","Type":"String","Value":"foo","Version":1},{"ARN":"arn:aws:ssm:us-east-2:373045849756:parameter/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","DataType":"text","LastModifiedDate":1.574607992915E9,"Name":"/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random","Type":"String","Value":"9070","Version":1}]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:56 GMT + recorded_at: Sun, 24 Nov 2019 15:07:44 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -2876,11 +2929,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192956Z + - 20191124T150744Z X-Amz-Content-Sha256: - 9eae29c9a9c93edd7d56bcefe36da0f52736679f0b9c2a53c303ff22e0e49d30 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -2893,18 +2946,18 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 4b9a8963-082f-4e67-ba46-9538665cc241 + - 59c94a69-dada-46be-b4a0-8ea3d60b7843 Content-Type: - application/x-amz-json-1.1 Content-Length: - '370' Date: - - Fri, 08 Nov 2019 19:29:55 GMT + - Sun, 24 Nov 2019 15:07:44 GMT body: encoding: UTF-8 string: '{"DeletedParameters":[],"InvalidParameters":["/openstax-aws-ruby-secrets/secrets-dsl-spec/main/content_key","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/for_shared_substitution","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/interpolated","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/more_secrets","/openstax-aws-ruby-secrets/secrets-dsl-spec/main/random"]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:29:56 GMT + recorded_at: Sun, 24 Nov 2019 15:07:45 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -2921,11 +2974,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192956Z + - 20191124T150745Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -2937,7 +2990,7 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 787762b5-8c10-4b28-a8d3-063784365c12 + - 9fde62f5-a000-4ae9-926c-b5ab0ca28b63 Content-Type: - text/xml Content-Length: @@ -2945,7 +2998,7 @@ http_interactions: Vary: - accept-encoding Date: - - Fri, 08 Nov 2019 19:29:56 GMT + - Sun, 24 Nov 2019 15:07:44 GMT body: encoding: UTF-8 string: | @@ -2960,9 +3013,9 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec @@ -2974,7 +3027,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -2982,23 +3035,23 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha 1b2ebfd91dd9fb34d58c834cbb70a21c6479ba8e - arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191108-192919/a3a35c01-e9f8-4108-8d72-1564d4ac817a + arn:aws:cloudformation:us-east-2:373045849756:changeSet/openstax-aws-ruby-secrets-secrets-dsl-spec-main-20191124-150706/f90089ca-32f4-4728-8fd0-f7e5e877c157 - 787762b5-8c10-4b28-a8d3-063784365c12 + 9fde62f5-a000-4ae9-926c-b5ab0ca28b63 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:57 GMT + recorded_at: Sun, 24 Nov 2019 15:07:45 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -3015,11 +3068,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192957Z + - 20191124T150745Z X-Amz-Content-Sha256: - a5000bf791a40989964ea0e8de9c3104f1c1bb65e6267d7cc59c4bcec8b9f3d4 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '95' @@ -3031,23 +3084,23 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 8958682b-058a-40da-bb06-1a65cd369aa2 + - fa05f750-fca8-4c51-852f-6a6563d5873d Content-Type: - text/xml Content-Length: - '212' Date: - - Fri, 08 Nov 2019 19:29:57 GMT + - Sun, 24 Nov 2019 15:07:45 GMT body: encoding: UTF-8 string: | - 8958682b-058a-40da-bb06-1a65cd369aa2 + fa05f750-fca8-4c51-852f-6a6563d5873d http_version: - recorded_at: Fri, 08 Nov 2019 19:29:57 GMT + recorded_at: Sun, 24 Nov 2019 15:07:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -3064,11 +3117,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192957Z + - 20191124T150746Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -3080,13 +3133,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 35714096-469f-481c-bfe8-a6d46d7b2dc4 + - ec0a2903-53cf-46a7-b014-f7e326af4a77 Content-Type: - text/xml Content-Length: - '2032' Date: - - Fri, 08 Nov 2019 19:29:57 GMT + - Sun, 24 Nov 2019 15:07:46 GMT body: encoding: UTF-8 string: | @@ -3101,14 +3154,14 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec DELETE_IN_PROGRESS - 2019-11-08T19:29:57.559Z + 2019-11-24T15:07:46.004Z false @@ -3116,7 +3169,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -3124,7 +3177,7 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha @@ -3135,11 +3188,11 @@ http_interactions: - 35714096-469f-481c-bfe8-a6d46d7b2dc4 + ec0a2903-53cf-46a7-b014-f7e326af4a77 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:58 GMT + recorded_at: Sun, 24 Nov 2019 15:07:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -3156,11 +3209,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T192958Z + - 20191124T150746Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -3172,13 +3225,13 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - 375af1c8-a524-43c8-8840-25f5dbeccd83 + - 2eb216bc-1a4c-4c66-bda9-43566a99d771 Content-Type: - text/xml Content-Length: - '2032' Date: - - Fri, 08 Nov 2019 19:29:58 GMT + - Sun, 24 Nov 2019 15:07:46 GMT body: encoding: UTF-8 string: | @@ -3193,14 +3246,14 @@ http_interactions: arn:aws:s3:::aws-ruby-spec-secrets-dsl-create - 2019-11-08T19:28:49.230Z + 2019-11-24T15:06:35.887Z - arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/fce324a0-025d-11ea-abd5-0a0a04c5437c + arn:aws:cloudformation:us-east-2:373045849756:stack/openstax-aws-ruby-secrets-secrets-dsl-spec-main/01ab9240-0ecc-11ea-9b3a-02ae28e83a86 openstax-aws-ruby-secrets-secrets-dsl-spec-main Secrets DSL spec DELETE_IN_PROGRESS - 2019-11-08T19:29:57.559Z + 2019-11-24T15:07:46.004Z false @@ -3208,7 +3261,7 @@ http_interactions: NOT_CHECKED false - 2019-11-08T19:29:26.848Z + 2019-11-24T15:07:14.979Z BucketName @@ -3216,7 +3269,7 @@ http_interactions: CycleIfDifferent - 2125bb055cfa6b6a4381 + 865c4820db0d4e6c773c SomeSha @@ -3227,11 +3280,11 @@ http_interactions: - 375af1c8-a524-43c8-8840-25f5dbeccd83 + 2eb216bc-1a4c-4c66-bda9-43566a99d771 http_version: - recorded_at: Fri, 08 Nov 2019 19:29:58 GMT + recorded_at: Sun, 24 Nov 2019 15:07:46 GMT - request: method: post uri: https://cloudformation.us-east-2.amazonaws.com/ @@ -3248,11 +3301,11 @@ http_interactions: Host: - cloudformation.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193003Z + - 20191124T150751Z X-Amz-Content-Sha256: - bba9ab149be09911f60e83e18c4e577ef4401099a40abc92d767daf01234db21 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/cloudformation/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/cloudformation/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature= Content-Length: - '98' @@ -3264,13 +3317,13 @@ http_interactions: message: Bad Request headers: X-Amzn-Requestid: - - a444ee9d-5059-4eae-9be3-2241292f76b4 + - 86324662-b80d-4228-8c5a-8697dab8027e Content-Type: - text/xml Content-Length: - '333' Date: - - Fri, 08 Nov 2019 19:30:03 GMT + - Sun, 24 Nov 2019 15:07:51 GMT Connection: - close body: @@ -3282,10 +3335,10 @@ http_interactions: ValidationError Stack with id openstax-aws-ruby-secrets-secrets-dsl-spec-main does not exist - a444ee9d-5059-4eae-9be3-2241292f76b4 + 86324662-b80d-4228-8c5a-8697dab8027e http_version: - recorded_at: Fri, 08 Nov 2019 19:30:03 GMT + recorded_at: Sun, 24 Nov 2019 15:07:52 GMT - request: method: post uri: https://ssm.us-east-2.amazonaws.com/ @@ -3304,11 +3357,11 @@ http_interactions: Host: - ssm.us-east-2.amazonaws.com X-Amz-Date: - - 20191108T193003Z + - 20191124T150752Z X-Amz-Content-Sha256: - ee4cace661067379e2c2bb2ed8207728408333532e4ed94d0165acb17ff0e2c9 Authorization: - - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191108/us-east-2/ssm/aws4_request, + - AWS4-HMAC-SHA256 Credential=AWS_ACCESS_KEY_ID/20191124/us-east-2/ssm/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date;x-amz-target, Signature= Content-Length: @@ -3321,16 +3374,16 @@ http_interactions: message: OK headers: X-Amzn-Requestid: - - c2a2b588-5b03-4c2f-bf39-a1395944fa07 + - 7039ac4b-fe43-4c36-aa14-9057c1b3e6a0 Content-Type: - application/x-amz-json-1.1 Content-Length: - '17' Date: - - Fri, 08 Nov 2019 19:30:03 GMT + - Sun, 24 Nov 2019 15:07:52 GMT body: encoding: UTF-8 string: '{"Parameters":[]}' http_version: - recorded_at: Fri, 08 Nov 2019 19:30:04 GMT + recorded_at: Sun, 24 Nov 2019 15:07:52 GMT recorded_with: VCR 4.0.0 diff --git a/spec/stack_spec.rb b/spec/stack_spec.rb index 4b1fd19..82c067a 100644 --- a/spec/stack_spec.rb +++ b/spec/stack_spec.rb @@ -205,6 +205,14 @@ stack.delete end + it "skips create for existing stacks" do + stack = new_template_one_stack(name: "spec-aws-ruby-stack-skips-create") + stack.create(params: {bucket_name: bucket_name, tag_value: "howdy"}, wait: true) + expect(OpenStax::Aws.configuration.logger).to receive(:info).with(/skipping create/) + expect{stack.create(wait: true)}.not_to raise_error + stack.delete(wait: true) + end + context "#deployed_parameters" do it "returns empty for non-existent stack" do stack = new_template_one_stack(name: "doesnotmatter")