From e9cba1bb0a423fe117e4c636a04c9134512c8fc5 Mon Sep 17 00:00:00 2001 From: Angus Salkeld Date: Tue, 5 Mar 2013 11:49:12 +1100 Subject: [PATCH] vpc_test: move DependsOn to the correct template section found when fixing bug #1101098 Signed-off-by: Angus Salkeld Change-Id: I7591111bcdf768119d265d0a9c901a0e189604d3 --- heat/tests/test_vpc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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} ''' -- 2.45.2