本文為您介紹如何實現選擇多個可用區的子網。
如果您想在VPC下創建多個可用區的vSwitch,您可以在Parameters中定義多個可用區參數,例如ZoneId1、ZoneId2、ZoneId3,然后在Resources中分別定義vSwitch1、vSwitch2、vSwitch3并關聯對應的可用區ZoneId。
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
ZoneId1:
AssociationProperty: ALIYUN::ECS::Instance:ZoneId
Type: String
Label: 交換機可用區1
ZoneId2:
AssociationProperty: ALIYUN::ECS::Instance:ZoneId
Type: String
Label: 交換機可用區2
ZoneId3:
AssociationProperty: ALIYUN::ECS::Instance:ZoneId
Type: String
Label: 交換機可用區3
Resources:
Vpc:
Type: ALIYUN::ECS::VPC
Properties:
CidrBlock: 10.0.0.0/8
VpcName: test-resource-count
VSwitch1:
Type: ALIYUN::ECS::VSwitch
Properties:
CidrBlock: 10.0.10.0/24
ZoneId:
Ref: ZoneId1
VpcId:
Ref: Vpc
VSwitch2:
Type: ALIYUN::ECS::VSwitch
Properties:
CidrBlock: 10.0.20.0/24
ZoneId:
Ref: ZoneId2
VpcId:
Ref: Vpc
VSwitch3:
Type: ALIYUN::ECS::VSwitch
Properties:
CidrBlock: 10.0.30.0/24
ZoneId:
Ref: ZoneId3
VpcId:
Ref: Vpc
控制臺示例
文檔內容是否對您有幫助?