-
Notifications
You must be signed in to change notification settings - Fork 170
/
main.tf
executable file
·86 lines (78 loc) · 2.71 KB
/
main.tf
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
// ACE-IAC Core Aviatrix Infrastructure
# Private Key creation
resource "tls_private_key" "avtx_key" {
algorithm = "RSA"
rsa_bits = 2048
}
resource "aws_key_pair" "ace_key" {
provider = aws.ohio
key_name = var.ace_ec2_key_name
public_key = tls_private_key.avtx_key.public_key_openssh
}
# Create an Aviatrix Azure Account
resource "aviatrix_account" "azure_account" {
account_name = var.azure_account_name
cloud_type = 8
arm_subscription_id = var.azure_subscription_id
arm_directory_id = var.azure_tenant_id
arm_application_id = var.azure_client_id
arm_application_key = var.azure_client_secret
}
# AWS Transit Modules
module "aws_transit_1" {
source = "terraform-aviatrix-modules/mc-transit/aviatrix"
version = "2.1.4"
cloud = "AWS"
account = var.aws_account_name
region = var.aws_transit1_region
name = var.aws_transit1_name
cidr = var.aws_transit1_cidr
ha_gw = var.ha_enabled
instance_size = var.aws_transit_instance_size
enable_segmentation = true
}
# AWS Spoke Modules
module "aws_spoke_1" {
source = "terraform-aviatrix-modules/mc-spoke/aviatrix"
version = "1.2.3"
cloud = "AWS"
account = var.aws_account_name
region = var.aws_spoke1_region
name = var.aws_spoke1_name
cidr = var.aws_spoke1_cidr
instance_size = var.aws_spoke_instance_size
ha_gw = var.ha_enabled
network_domain = aviatrix_segmentation_network_domain.BU1.domain_name
transit_gw = module.aws_transit_1.transit_gateway.gw_name
}
module "azure_spoke_2" {
source = "terraform-aviatrix-modules/mc-spoke/aviatrix"
version = "1.2.3"
cloud = "Azure"
account = aviatrix_account.azure_account.account_name
region = var.azure_spoke2_region
name = var.azure_spoke2_name
cidr = var.azure_spoke2_cidr
instance_size = var.azure_spoke_instance_size
ha_gw = var.ha_enabled
network_domain = aviatrix_segmentation_network_domain.BU2.domain_name
transit_gw = module.aws_transit_1.transit_gateway.gw_name
}
# Multi-Cloud Segmentation
resource "aviatrix_segmentation_network_domain" "BU1" {
domain_name = "BU1"
depends_on = [
module.aws_transit_1
]
}
resource "aviatrix_segmentation_network_domain" "BU2" {
domain_name = "BU2"
depends_on = [
module.aws_transit_1
]
}
/* resource "aviatrix_segmentation_network_domain_connection_policy" "BU1_BU2" {
domain_name_1 = "BU1"
domain_name_2 = "BU2"
depends_on = [aviatrix_segmentation_network_domain.BU1, aviatrix_segmentation_network_domain.BU2]
} */