From 5a87dbbb0ea4faa44d743a21a2f7d7aca46242f9 Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Mon, 23 Sep 2013 11:53:53 -0400 Subject: [PATCH] Document internet gateway properties: AWS::EC2::VPCGatewayAttachment Fixes bug #1224143 Change-Id: Ia896369f4cfcd5d13d66a2defb120b1c05d71fb6 --- heat/engine/resources/internet_gateway.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/heat/engine/resources/internet_gateway.py b/heat/engine/resources/internet_gateway.py index 622708ed16..db87065da3 100644 --- a/heat/engine/resources/internet_gateway.py +++ b/heat/engine/resources/internet_gateway.py @@ -59,11 +59,15 @@ class VPCGatewayAttachment(resource.Resource): properties_schema = { 'VpcId': { 'Type': 'String', - 'Required': True}, - 'InternetGatewayId': {'Type': 'String'}, + 'Required': True, + 'Description': _('VPC ID for this gateway association.')}, + 'InternetGatewayId': { + 'Type': 'String', + 'Description': _('ID of the InternetGateway.')}, 'VpnGatewayId': { 'Type': 'String', - 'Implemented': False} + 'Implemented': False, + 'Description': _('ID of the VPNGateway to attach to the VPC.')} } def _vpc_route_tables(self):