From 9ba686f8e6018e036e3693b7729ab6b54e9fd332 Mon Sep 17 00:00:00 2001 From: Vladimir Dimov Date: Mon, 7 Dec 2015 18:55:45 +0200 Subject: [PATCH 1/2] Doc fix on route53_health_check.py. Fixed first example. Should be register instead of record. --- cloud/amazon/route53_health_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/amazon/route53_health_check.py b/cloud/amazon/route53_health_check.py index a4dcfea6b30..9ad7f63d450 100644 --- a/cloud/amazon/route53_health_check.py +++ b/cloud/amazon/route53_health_check.py @@ -104,7 +104,7 @@ EXAMPLES = ''' string_match: "Hello" request_interval: 10 failure_threshold: 2 - record: my_health_check + register: my_health_check - route53: action: create From de672f1ab22392af350bdf98f04f075b7e387648 Mon Sep 17 00:00:00 2001 From: Vladimir Dimov Date: Mon, 7 Dec 2015 19:15:24 +0200 Subject: [PATCH 2/2] Doc fix ec2_vpc_route_table.py --- cloud/amazon/ec2_vpc_route_table.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/amazon/ec2_vpc_route_table.py b/cloud/amazon/ec2_vpc_route_table.py index eef58c23ced..f4d27f9580f 100644 --- a/cloud/amazon/ec2_vpc_route_table.py +++ b/cloud/amazon/ec2_vpc_route_table.py @@ -77,8 +77,8 @@ EXAMPLES = ''' tags: Name: Public subnets: - - "{{ jumpbox_subnet.subnet_id }}" - - "{{ frontend_subnet.subnet_id }}" + - "{{ jumpbox_subnet.subnet.id }}" + - "{{ frontend_subnet.subnet.id }}" - "{{ vpn_subnet.subnet_id }}" routes: - dest: 0.0.0.0/0 @@ -92,7 +92,7 @@ EXAMPLES = ''' tags: Name: Internal subnets: - - "{{ application_subnet.subnet_id }}" + - "{{ application_subnet.subnet.id }}" - 'Database Subnet' - '10.0.0.0/8' routes: