-
Notifications
You must be signed in to change notification settings - Fork 35
/
landing-zone-cen-privatelink.yml
1031 lines (951 loc) · 27.5 KB
/
landing-zone-cen-privatelink.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ROSTemplateFormatVersion: '2015-09-01'
Transform: Aliyun::Terraform-v1.2
Description:
zh-cn: 跨账号私网互联:创建终端节点服务与连接,配置VPC、安全组、ECS及CEN,实现账号间安全网络通信。
en: 'Cross-Account Private Network Interconnection: Establish terminal endpoint
services and connections, configure VPCs, security groups, ECS instances, and
CENs to facilitate secure network communication between accounts.'
Metadata:
ALIYUN::ROS::Interface:
ParameterGroups:
- Parameters:
- use_resource_directory
Label:
default:
zh-cn: 资源目录配置配置
en: Resource Directory Configuration
Type: bool
- Parameters:
- user1_id
- user2_id
Label:
default:
zh-cn: 资源目录账号配置(请确保账号具有AliyunServiceRolePolicyForCEN权限)
en: Account Configuration
- Parameters:
- user2_id_not_from_rd
- role_name
Label:
default:
zh-cn: 账号1为当前账号,请配置账号2相关信息。
en: Account Configuration
- Parameters:
- region1
- region2
Label:
default:
zh-cn: 地域和可用区配置
en: Region and Zone Configuration
- Parameters:
- vpc2_cidr
- zone2_id
- vsw2_cidr
- vpc3_cidr
- zone4_id
- vsw4_cidr
Label:
default:
zh-cn: 账号1网段与可用区配置(注意VPC间配置的网段不可重叠)
en: CIDR Configuration
- Parameters:
- vpc1_cidr
- vsw1_cidr
- zone1_id
Label:
default:
zh-cn: 账号2网段与可用区配置配置(注意VPC间配置的网段不可重叠)
en: CIDR Configuration
- Parameters:
- create_ecs
Label:
default:
zh-cn: ECS创建配置
en: ECS Creation Configuration
Type: bool
- Parameters:
- instance_type2
- system_disk_category2
- instance_type4
- system_disk_category4
- user1_ecs_password
Label:
default:
zh-cn: 账号1ECS实例类型(当选择不创建ECS实例时,无需配置)
en: Ecs InstanceType and Password Configuration
- Parameters:
- instance_type1
- system_disk_category1
- user2_ecs_password
Label:
default:
zh-cn: 账号2ECS实例类型(当选择不创建ECS实例时,无需配置)
en: Ecs InstanceType and Password Configuration
TemplateTags:
- acs:integrate:landing_zone:privatelink_private_network_interconnection
Workspace:
main.tf: |-
data "alicloud_account" "current" {
}
locals {
role_name = var.role_name
user1_id = var.use_resource_directory && var.user1_id != "" ? var.user1_id : data.alicloud_account.current.id
user2_id = var.use_resource_directory ? var.user2_id : var.user2_id_not_from_rd
user1_is_admin = local.user1_id == data.alicloud_account.current.id ? true : false
user2_is_admin = local.user2_id == data.alicloud_account.current.id ? true : false
}
# provider
provider "alicloud" {
alias = "user1_region1"
region = var.region1
assume_role {
role_arn = local.user1_is_admin ? null : format("acs:ram::%s:role/%s", local.user1_id, local.role_name)
session_name = "AccountLandingZoneSetup"
session_expiration = 999
}
}
provider "alicloud" {
alias = "user1_region2"
region = var.region2
assume_role {
role_arn = local.user1_is_admin ? null : format("acs:ram::%s:role/%s", local.user1_id, local.role_name)
session_name = "AccountLandingZoneSetup"
session_expiration = 999
}
}
provider "alicloud" {
alias = "user2_region1"
region = var.region1
assume_role {
role_arn = local.user2_is_admin ? null : format("acs:ram::%s:role/%s", local.user2_id, local.role_name)
session_name = "AccountLandingZoneSetup"
session_expiration = 999
}
}
module "user1_region1_vpc" {
count = 1
source = "./vpc"
providers = {alicloud: alicloud.user1_region1}
vpc_cidr = var.vpc2_cidr
}
module "user1_region2_vpc" {
count = 1
source = "./vpc"
providers = {alicloud: alicloud.user1_region2}
vpc_cidr = var.vpc3_cidr
}
module "user2_region1_vpc" {
count = 1
source = "./vpc"
providers = {alicloud: alicloud.user2_region1}
vpc_cidr = var.vpc1_cidr
}
resource "alicloud_vswitch" "vsw1" {
provider = alicloud.user2_region1
vswitch_name = "vsw1"
vpc_id = module.user2_region1_vpc[0].vpc_id
cidr_block = var.vsw1_cidr
zone_id = var.zone1_id
}
resource "alicloud_vswitch" "vsw2" {
provider = alicloud.user1_region1
vswitch_name = "vsw2"
vpc_id = module.user1_region1_vpc[0].vpc_id
cidr_block = var.vsw2_cidr
zone_id = var.zone2_id
}
resource "alicloud_vswitch" "vsw4" {
provider = alicloud.user1_region2
vswitch_name = "vsw4"
vpc_id = module.user1_region2_vpc[0].vpc_id
cidr_block = var.vsw4_cidr
zone_id = var.zone4_id
}
module "user2_region1_sg" {
source = "./sg"
providers = {alicloud: alicloud.user2_region1}
vpc_id = module.user2_region1_vpc[0].vpc_id
}
module "user1_region1_sg" {
source = "./sg"
providers = {alicloud: alicloud.user1_region1}
vpc_id = module.user1_region1_vpc[0].vpc_id
}
module "user1_region2_sg" {
source = "./sg"
providers = {alicloud: alicloud.user1_region2}
vpc_id = module.user1_region2_vpc[0].vpc_id
}
module "user1_region1_ecs" {
count = 1
source = "./ecs"
providers = {alicloud: alicloud.user1_region1}
create_ecs = var.create_ecs
vpc_id = module.user1_region1_vpc[0].vpc_id
vsw_id = alicloud_vswitch.vsw2.id
zone_id = var.zone2_id
sg_id = module.user1_region1_sg.sg_id
instance_type = var.instance_type2
system_disk_category = var.system_disk_category2
ecs_password = var.user1_ecs_password
instance_name = format("test_ecs%s",count.index+1)
}
module "user1_region2_ecs" {
count = 1
source = "./ecs"
providers = {alicloud: alicloud.user1_region2}
create_ecs = var.create_ecs
vpc_id = module.user1_region2_vpc[0].vpc_id
vsw_id = alicloud_vswitch.vsw4.id
zone_id = var.zone4_id
sg_id = module.user1_region2_sg.sg_id
instance_type = var.instance_type4
system_disk_category = var.system_disk_category4
ecs_password = var.user1_ecs_password
instance_name = format("test_ecs%s",count.index+1)
}
module "user2_region1_ecs" {
count = 1
source = "./ecs"
providers = {alicloud: alicloud.user2_region1}
create_ecs = var.create_ecs
vpc_id = module.user2_region1_vpc[0].vpc_id
vsw_id = alicloud_vswitch.vsw1.id
zone_id = var.zone1_id
sg_id = module.user2_region1_sg.sg_id
instance_type = var.instance_type1
system_disk_category = var.system_disk_category1
ecs_password = var.user2_ecs_password
instance_name = format("test_ecs%s",count.index+3)
}
locals {
vpc_ids = concat(module.user1_region1_vpc.*.vpc_id, module.user1_region2_vpc.*.vpc_id, module.user2_region1_vpc.*.vpc_id)
}
resource "alicloud_slb_load_balancer" "load_balancer" {
provider = alicloud.user2_region1
load_balancer_name = "privatelink-service"
load_balancer_spec = "slb.s1.small"
address_type = "intranet"
vswitch_id = alicloud_vswitch.vsw1.id
instance_charge_type = "PayBySpec"
}
resource "alicloud_slb_listener" "listener" {
provider = alicloud.user2_region1
load_balancer_id = alicloud_slb_load_balancer.load_balancer.id
backend_port = 8080
frontend_port = 80
protocol = "tcp"
health_check = "on"
health_check_connect_port = 80
bandwidth = -1
healthy_threshold = 3
unhealthy_threshold = 3
health_check_timeout = 5
health_check_interval = 2
health_check_http_code = "http_2xx,http_3xx,http_4xx,http_5xx"
}
resource "alicloud_slb_backend_server" "backend_server" {
count = var.create_ecs? 1:0
provider = alicloud.user2_region1
load_balancer_id = alicloud_slb_load_balancer.load_balancer.id
backend_servers {
server_id = module.user2_region1_ecs[0].ecs_instance_id[0]
weight = 100
}
}
resource "alicloud_privatelink_vpc_endpoint_service" "privatelink_vpc_endpoint_service" {
provider = alicloud.user2_region1
auto_accept_connection = false
}
resource "alicloud_privatelink_vpc_endpoint_service_resource" "privatelink_vpc_endpoint_service_resource" {
provider = alicloud.user2_region1
resource_id = alicloud_slb_load_balancer.load_balancer.id
resource_type = "slb"
service_id = alicloud_privatelink_vpc_endpoint_service.privatelink_vpc_endpoint_service.id
}
resource "alicloud_privatelink_vpc_endpoint_service_user" "privatelink_vpc_endpoint_service_user" {
provider = alicloud.user2_region1
service_id = alicloud_privatelink_vpc_endpoint_service.privatelink_vpc_endpoint_service.id
user_id = local.user1_id
}
resource "alicloud_privatelink_vpc_endpoint" "privatelink_vpc_endpoint" {
provider = alicloud.user1_region1
service_id = alicloud_privatelink_vpc_endpoint_service.privatelink_vpc_endpoint_service.id
security_group_ids = [module.user1_region1_sg.sg_id]
vpc_id = module.user1_region1_vpc[0].vpc_id
}
resource "alicloud_privatelink_vpc_endpoint_zone" "zone1" {
provider = alicloud.user1_region1
endpoint_id = alicloud_privatelink_vpc_endpoint.privatelink_vpc_endpoint.id
vswitch_id = alicloud_vswitch.vsw2.id
zone_id = var.zone2_id
}
resource "alicloud_privatelink_vpc_endpoint_connection" "privatelink_vpc_endpoint_connection" {
provider = alicloud.user2_region1
endpoint_id = alicloud_privatelink_vpc_endpoint.privatelink_vpc_endpoint.id
service_id = alicloud_privatelink_vpc_endpoint_service.privatelink_vpc_endpoint_service.id
bandwidth = "1024"
}
resource "alicloud_cen_instance" "cen" {
provider = alicloud.user1_region1
cen_instance_name = "云上企业网络"
}
resource "alicloud_cen_bandwidth_package" "cen_bandwidth_package" {
provider = alicloud.user1_region1
bandwidth = 5
charge_type = "PostPaid"
geographic_region_ids = [
"China",
"China"
]
}
resource "alicloud_cen_bandwidth_package_attachment" "cen_bandwidth_package_attachment" {
provider = alicloud.user1_region1
instance_id = alicloud_cen_instance.cen.id
bandwidth_package_id = alicloud_cen_bandwidth_package.cen_bandwidth_package.id
}
resource "alicloud_cen_instance_attachment" "cen_instance_attachment1" {
provider = alicloud.user1_region1
instance_id = alicloud_cen_instance.cen.id
child_instance_id = module.user1_region1_vpc[0].vpc_id
child_instance_type = "VPC"
child_instance_region_id = var.region1
depends_on = [alicloud_privatelink_vpc_endpoint_zone.zone1]
}
resource "alicloud_cen_instance_attachment" "cen_instance_attachment2" {
provider = alicloud.user1_region1
instance_id = alicloud_cen_instance.cen.id
child_instance_id = module.user1_region2_vpc[0].vpc_id
child_instance_type = "VPC"
child_instance_region_id = var.region2
depends_on = [alicloud_cen_instance_attachment.cen_instance_attachment1]
}
.metadata: |-
{
"ALIYUN::ROS::Interface": {
"ParameterGroups": [
{
"Parameters": [
"use_resource_directory"
],
"Type": "bool"
},
{
"Parameters": [
"user1_id",
"user2_id"
],
"Label": {
"default": {
"zh-cn": "资源目录账号配置(请确保账号具有AliyunServiceRolePolicyForCEN权限)",
"en": "Account Configuration"
}
}
},
{
"Parameters": [
"user2_id_not_from_rd",
"role_name"
],
"Label": {
"default": {
"zh-cn": "账号1为当前账号,请配置账号2相关信息。",
"en": "Account Configuration"
}
}
},
{
"Parameters": [
"region1",
"region2"
],
"Label": {
"default": {
"zh-cn": "地域和可用区配置",
"en": "Region and Zone Configuration"
}
}
},
{
"Parameters": [
"vpc2_cidr",
"zone2_id",
"vsw2_cidr",
"vpc3_cidr",
"zone4_id",
"vsw4_cidr"
],
"Label": {
"default": {
"zh-cn": "账号1网段与可用区配置(注意VPC间配置的网段不可重叠)",
"en": "CIDR Configuration"
}
}
},
{
"Parameters": [
"vpc1_cidr",
"vsw1_cidr",
"zone1_id"
],
"Label": {
"default": {
"zh-cn": "账号2网段与可用区配置配置(注意VPC间配置的网段不可重叠)",
"en": "CIDR Configuration"
}
}
},
{
"Parameters": [
"create_ecs"
],
"Type": "bool"
},
{
"Parameters": [
"instance_type2",
"system_disk_category2",
"instance_type4",
"system_disk_category4",
"user1_ecs_password"
],
"Label": {
"default": {
"zh-cn": "账号1ECS实例类型(当选择不创建ECS实例时,无需配置)",
"en": "Ecs InstanceType and Password Configuration"
}
}
},
{
"Parameters": [
"instance_type1",
"system_disk_category1",
"user2_ecs_password"
],
"Label": {
"default": {
"zh-cn": "账号2ECS实例类型(当选择不创建ECS实例时,无需配置)",
"en": "Ecs InstanceType and Password Configuration"
}
}
}
],
"TemplateTags": [
"acs:integrate:landing_zone:privatelink_private_network_interconnection"
]
}
}
ecs/main.tf: |+
variable "create_ecs" {}
variable "vpc_id" {}
variable "vsw_id" {}
variable "zone_id" {}
variable "sg_id" {}
variable "instance_type" {}
variable "system_disk_category" {}
variable "ecs_password" {}
variable "instance_name" {}
terraform {
required_providers {
alicloud = {
source = "hashicorp/alicloud"
version = "~> 1.1"
}
}
}
resource "alicloud_instance" "ecs" {
count = var.create_ecs? 1:0
availability_zone = var.zone_id
security_groups = [var.sg_id]
instance_type = var.instance_type
system_disk_category = var.system_disk_category
image_id = "centos_7_9_x64_20G_alibase_20220824.vhd"
instance_name = var.instance_name
vswitch_id = var.vsw_id
password = var.ecs_password
}
output "ecs_instance_id" {
value = alicloud_instance.ecs.*.id
}
sg/main.tf: |+
variable "vpc_id" {}
terraform {
required_providers {
alicloud = {
source = "hashicorp/alicloud"
version = "~> 1.1"
}
}
}
resource "alicloud_security_group" "group" {
vpc_id = var.vpc_id
}
resource "alicloud_security_group_rule" "rule" {
type = "ingress"
ip_protocol = "all"
nic_type = "intranet"
policy = "accept"
port_range = "1/65535"
priority = 1
security_group_id = alicloud_security_group.group.id
cidr_ip = "0.0.0.0/0"
}
output "sg_id" {
value = alicloud_security_group.group.id
}
variables.tf: |2+
variable "use_resource_directory" {
type = bool
description = <<EOT
{
"Label": {
"zh-cn": "是否使用资源目录的账号进行部署"
}
}
EOT
default = true
}
variable "role_name" {
description = <<EOT
{
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${use_resource_directory}",
false
]
}
}
},
"Label": {
"zh-cn": "扮演账号2的RAM角色名称"
}
}
EOT
default = "ResourceDirectoryAccountAccessRole"
}
variable "user2_id_not_from_rd" {
description = <<EOT
{
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${use_resource_directory}",
false
]
}
}
},
"Label": {
"zh-cn": "账号2的ID"
}
}
EOT
default = ""
}
variable "user1_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ResourceManager::Account",
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${use_resource_directory}",
true
]
}
}
},
"Label": {
"zh-cn": "账号1的ID"
}
}
EOT
default = ""
}
variable "user2_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ResourceManager::Account",
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${use_resource_directory}",
true
]
}
}
},
"Label": {
"zh-cn": "账号2的ID"
}
}
EOT
default = ""
}
variable "create_ecs" {
type = bool
description = <<EOT
{
"Label": {
"zh-cn": "是否创建Ecs进行网络连通测试"
}
}
EOT
default = false
}
variable "region1" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::RegionId",
"Description":"企业版转发路由器支持的地域和可用区: https://help.aliyun.com/document_detail/181681.html",
"Label": {
"zh-cn": "资源部署地域1"
}
}
EOT
default = "cn-beijing"
}
variable "region2" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::RegionId",
"Label": {
"zh-cn": "资源部署地域2"
}
}
EOT
default = "cn-hangzhou"
}
variable "zone1_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ZoneId",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}"
},
"Label": {
"zh-cn": "账号2部署的交换机1可用区ID"
}
}
EOT
default = "cn-beijing-g"
}
variable "zone2_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ZoneId",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}"
},
"Label": {
"zh-cn": "账号1部署的交换机2可用区ID"
}
}
EOT
default = "cn-beijing-g"
}
variable "zone4_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ZoneId",
"AssociationPropertyMetadata": {
"RegionId": "$${region2}"
},
"Label": {
"zh-cn": "账号1部署的交换机3可用区ID"
}
}
EOT
default = "cn-hangzhou-i"
}
variable "instance_type1" {
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceType",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}",
"ZoneId": "$${zone1_id}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号2部署的ECS实例规格"
}
}
EOT
default = "ecs.g6.large"
}
variable "instance_type2" {
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceType",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}",
"ZoneId": "$${zone2_id}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号1部署的ECS实例规格1"
}
}
EOT
default = "ecs.g6.large"
}
variable "instance_type4" {
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::InstanceType",
"AssociationPropertyMetadata": {
"RegionId": "$${region2}",
"ZoneId": "$${zone4_id}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号1部署的ECS实例规格2"
}
}
EOT
default = "ecs.g6.large"
}
variable "system_disk_category1" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Disk::SystemDiskCategory",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}",
"ZoneId": "$${zone1_id}",
"InstanceType": "$${instance_type1}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号2部署的ECS系统盘类型"
}
}
EOT
default = "cloud_essd"
}
variable "system_disk_category2" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Disk::SystemDiskCategory",
"AssociationPropertyMetadata": {
"RegionId": "$${region1}",
"ZoneId": "$${zone2_id}",
"InstanceType": "$${instance_type2}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号1部署的ECS系统盘类型1"
}
}
EOT
default = "cloud_essd"
}
variable "system_disk_category4" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Disk::SystemDiskCategory",
"AssociationPropertyMetadata": {
"RegionId": "$${region2}",
"ZoneId": "$${zone4_id}",
"InstanceType": "$${instance_type4}",
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
},
"Label": {
"zh-cn": "账号1部署的ECS系统盘类型2"
}
}
EOT
default = "cloud_essd"
}
variable "user1_ecs_password" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::Password",
"Label": {
"zh-cn": "账号1部署的ECS实例密码"
},
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
}
}
EOT
default = "Ros12345"
}
variable "user2_ecs_password" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::Password",
"Label": {
"zh-cn": "账号2部署的ECS实例密码"
},
"AssociationPropertyMetadata": {
"Visible": {
"Condition": {
"Fn::Equals": [
"$${create_ecs}",
true
]
}
}
}
}
EOT
default = "Ros12345"
}
variable "vpc1_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VPC::CidrBlock",
"Label": {
"zh-cn": "账号2部署VPC1的CIDR"
}
}
EOT
default = "10.0.0.0/19"
}
variable "vsw1_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VSwitch::CidrBlock",
"Label": {
"zh-cn": "账号2部署交换机1的CIDR(所属VPC1)"
}
}
EOT
default = "10.0.0.0/24"
}
variable "vpc2_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VPC::CidrBlock",
"Label": {
"zh-cn": "账号1部署VPC2的CIDR"
}
}
EOT
default = "10.0.0.0/8"
}
variable "vsw2_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VSwitch::CidrBlock",
"Label": {
"zh-cn": "账号1部署交换机2的CIDR(所属VPC2)"
}
}
EOT
default = "10.1.0.0/16"
}
variable "vpc3_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VPC::CidrBlock",
"Label": {
"zh-cn": "账号1部署VPC3的CIDR"
}
}
EOT
default = "172.16.64.0/19"
}
variable "vsw4_cidr" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::VPC::VSwitch::CidrBlock",