From: Angus Salkeld Date: Tue, 5 Mar 2013 00:49:12 +0000 (+1100) Subject: vpc_test: move DependsOn to the correct template section X-Git-Tag: 2014.1~816^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e9cba1bb0a423fe117e4c636a04c9134512c8fc5;p=openstack-build%2Fheat-build.git vpc_test: move DependsOn to the correct template section found when fixing bug #1101098 Signed-off-by: Angus Salkeld Change-Id: I7591111bcdf768119d265d0a9c901a0e189604d3 --- diff --git a/heat/tests/test_vpc.py b/heat/tests/test_vpc.py index 9bc2abe5..a23a0e3d 100644 --- a/heat/tests/test_vpc.py +++ b/heat/tests/test_vpc.py @@ -303,8 +303,8 @@ Resources: Type: AWS::EC2::InternetGateway the_vpc: Type: AWS::EC2::VPC + DependsOn : the_gateway Properties: - DependsOn : the_gateway CidrBlock: '10.0.0.0/16' the_subnet: Type: AWS::EC2::Subnet @@ -314,9 +314,9 @@ Resources: AvailabilityZone: moon the_attachment: Type: AWS::EC2::VPCGatewayAttachment + DependsOn : the_subnet Properties: VpcId: {Ref: the_vpc} - DependsOn : the_subnet InternetGatewayId: {Ref: the_gateway} '''