From 2a96444f7554f04f3dd5bf766ef6ffc3a7e1efd4 Mon Sep 17 00:00:00 2001 From: Guillaume Delacour Date: Fri, 26 Jun 2020 22:06:35 +0200 Subject: [PATCH] Add final yaml test cases --- .automation/test/cfn/cfn_bad_4.yaml | 10 ++++++++++ .automation/test/cfn/cfn_good_4.yaml | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .automation/test/cfn/cfn_bad_4.yaml create mode 100644 .automation/test/cfn/cfn_good_4.yaml diff --git a/.automation/test/cfn/cfn_bad_4.yaml b/.automation/test/cfn/cfn_bad_4.yaml new file mode 100644 index 00000000..79a8e193 --- /dev/null +++ b/.automation/test/cfn/cfn_bad_4.yaml @@ -0,0 +1,10 @@ +Resources: + myDNSRecord: + Type: AWS::Route53::RecordSet + Properties: + HostedZoneId : Z8VLZEXAMPLE + Name: test.example.com + ResourceRecords: + - 192.0.2.99 + Ttl: 900 + Type: A diff --git a/.automation/test/cfn/cfn_good_4.yaml b/.automation/test/cfn/cfn_good_4.yaml new file mode 100644 index 00000000..52d3a8c8 --- /dev/null +++ b/.automation/test/cfn/cfn_good_4.yaml @@ -0,0 +1,10 @@ +Resources: + myDNSRecord: + Type: AWS::Route53::RecordSet + Properties: + HostedZoneId : Z8VLZEXAMPLE + Name: test.example.com + ResourceRecords: + - 192.0.2.99 + TTL: 900 + Type: A