Terraform で ACI に vzAny を設定する
Terraform を使い、ACI で vzAny を設定する .tf ファイル例をメモしておきます。 以下の環境で動作確認しました。
- ACI 6.0(1g)
- Terraform 1.2.9
- ACI Provider 2.5.2
構成図
.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
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 | terraform {
required_providers {
aci = {
source = "CiscoDevNet/aci"
version = "2.5.2"
}
}
}
provider "aci" {
url = "https://10.0.0.1"
username = "admin"
password = "PASSWORD"
insecure = true
}
# Tenant
resource "aci_tenant" "tenant1" {
name = "Tenant1"
}
# Contract / Subject / Filter
resource "aci_filter" "filter1" {
tenant_dn = aci_tenant.tenant1.id
name = "Filter1"
}
resource "aci_filter_entry" "entry1" {
name = "0010"
filter_dn = aci_filter.filter1.id
ether_t = "unspecified"
}
resource "aci_contract" "contract1" {
tenant_dn = aci_tenant.tenant1.id
name = "Contract1"
}
resource "aci_contract_subject" "subject1" {
contract_dn = aci_contract.contract1.id
name = "Subject1"
relation_vz_rs_subj_filt_att = [aci_filter.filter1.id]
}
# VRF
resource "aci_vrf" "vrf1" {
tenant_dn = aci_tenant.tenant1.id
name = "Vrf1"
}
resource "aci_any" "vzany1" {
vrf_dn = aci_vrf.vrf1.id
relation_vz_rs_any_to_cons = [aci_contract.contract1.id]
relation_vz_rs_any_to_prov = [aci_contract.contract1.id]
}
# Application Profile
resource "aci_application_profile" "ap1" {
tenant_dn = aci_tenant.tenant1.id
name = "Ap1"
}
# Domain
data "aci_physical_domain" "physdom" {
name = "PhysDom"
}
# BD&EPG #1
resource "aci_bridge_domain" "bd1" {
tenant_dn = aci_tenant.tenant1.id
name = "Bd1"
relation_fv_rs_ctx = aci_vrf.vrf1.id
}
resource "aci_subnet" "bd1_subnet" {
parent_dn = aci_bridge_domain.bd1.id
ip = "10.0.101.254/24"
}
resource "aci_application_epg" "epg1" {
application_profile_dn = aci_application_profile.ap1.id
name = "Epg1"
relation_fv_rs_bd = aci_bridge_domain.bd1.id
}
resource "aci_epg_to_domain" "epg1_physdom" {
application_epg_dn = aci_application_epg.epg1.id
tdn = data.aci_physical_domain.physdom.id
}
resource "aci_epg_to_static_path" "egp1_port1" {
application_epg_dn = aci_application_epg.epg1.id
tdn = "topology/pod-1/paths-201/pathep-[eth1/1]"
encap = "vlan-101"
}
# BD&EPG #2
resource "aci_bridge_domain" "bd2" {
tenant_dn = aci_tenant.tenant1.id
name = "Bd2"
relation_fv_rs_ctx = aci_vrf.vrf1.id
}
resource "aci_subnet" "bd2_subnet" {
parent_dn = aci_bridge_domain.bd2.id
ip = "10.0.102.254/24"
}
resource "aci_application_epg" "epg2" {
application_profile_dn = aci_application_profile.ap1.id
name = "Epg2"
relation_fv_rs_bd = aci_bridge_domain.bd2.id
}
resource "aci_epg_to_domain" "epg2_physdom" {
application_epg_dn = aci_application_epg.epg2.id
tdn = data.aci_physical_domain.physdom.id
}
resource "aci_epg_to_static_path" "egp2_port1" {
application_epg_dn = aci_application_epg.epg2.id
tdn = "topology/pod-1/paths-202/pathep-[eth1/1]"
encap = "vlan-102"
}
|