-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.tf
275 lines (261 loc) · 9.63 KB
/
core.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
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
## This configuration was generated by terraform-provider-oci
resource oci_core_internet_gateway export_Internet-Gateway-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Internet Gateway-vcn_nosql_demos"
enabled = "true"
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_service_gateway export_Service-Gateway-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Service Gateway-vcn_nosql_demos"
#route_table_id = <<Optional value not found in discovery>>
services {
service_id = data.oci_core_services.oci_services.services[0]["id"]
}
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_subnet export_Public-Subnet-vcn_nosql_demos {
#availability_domain = <<Optional value not found in discovery>>
cidr_block = "10.0.0.0/24"
compartment_id = var.compartment_ocid
dhcp_options_id = oci_core_vcn.export_vcn_nosql_demos.default_dhcp_options_id
display_name = "Public Subnet-vcn_nosql_demos"
dns_label = "sub04301224030"
#ipv6cidr_block = <<Optional value not found in discovery>>
prohibit_internet_ingress = "false"
prohibit_public_ip_on_vnic = "false"
route_table_id = oci_core_vcn.export_vcn_nosql_demos.default_route_table_id
security_list_ids = [
oci_core_vcn.export_vcn_nosql_demos.default_security_list_id,
]
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_subnet export_Private-Subnet-vcn_nosql_demos {
#availability_domain = <<Optional value not found in discovery>>
cidr_block = "10.0.1.0/24"
compartment_id = var.compartment_ocid
dhcp_options_id = oci_core_vcn.export_vcn_nosql_demos.default_dhcp_options_id
display_name = "Private Subnet-vcn_nosql_demos"
dns_label = "sub04301224031"
#ipv6cidr_block = <<Optional value not found in discovery>>
prohibit_internet_ingress = "true"
prohibit_public_ip_on_vnic = "true"
route_table_id = oci_core_route_table.export_Route-Table-for-Private-Subnet-vcn_nosql_demos.id
security_list_ids = [
oci_core_security_list.export_Security-List-for-Private-Subnet-vcn_nosql_demos.id,
]
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_vcn export_vcn_nosql_demos {
#cidr_block = <<Optional value not found in discovery>>
cidr_blocks = [
"10.0.0.0/16",
]
compartment_id = var.compartment_ocid
display_name = "vcn_nosql_demos"
dns_label = "vcnnosqldemos"
#is_ipv6enabled = <<Optional value not found in discovery>>
}
resource oci_core_default_dhcp_options export_Default-DHCP-Options-for-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Default DHCP Options for vcn_nosql_demos"
domain_name_type = "CUSTOM_DOMAIN"
manage_default_resource_id = oci_core_vcn.export_vcn_nosql_demos.default_dhcp_options_id
options {
custom_dns_servers = [
]
#search_domain_names = <<Optional value not found in discovery>>
server_type = "VcnLocalPlusInternet"
type = "DomainNameServer"
}
options {
#custom_dns_servers = <<Optional value not found in discovery>>
search_domain_names = [
"vcnnosqldemos.oraclevcn.com",
]
#server_type = <<Optional value not found in discovery>>
type = "SearchDomain"
}
}
resource oci_core_nat_gateway export_NAT-Gateway-vcn_nosql_demos {
block_traffic = "false"
compartment_id = var.compartment_ocid
display_name = "NAT Gateway-vcn_nosql_demos"
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_route_table export_Route-Table-for-Private-Subnet-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Route Table for Private Subnet-vcn_nosql_demos"
route_rules {
#description = <<Optional value not found in discovery>>
destination = "0.0.0.0/0"
destination_type = "CIDR_BLOCK"
network_entity_id = oci_core_nat_gateway.export_NAT-Gateway-vcn_nosql_demos.id
}
route_rules {
#description = <<Optional value not found in discovery>>
destination = data.oci_core_services.oci_services.services[0]["cidr_block"]
destination_type = "SERVICE_CIDR_BLOCK"
network_entity_id = oci_core_service_gateway.export_Service-Gateway-vcn_nosql_demos.id
}
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_default_route_table export_Default-Route-Table-for-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Default Route Table for vcn_nosql_demos"
manage_default_resource_id = oci_core_vcn.export_vcn_nosql_demos.default_route_table_id
route_rules {
#description = <<Optional value not found in discovery>>
destination = "0.0.0.0/0"
destination_type = "CIDR_BLOCK"
network_entity_id = oci_core_internet_gateway.export_Internet-Gateway-vcn_nosql_demos.id
}
}
resource oci_core_security_list export_Security-List-for-Private-Subnet-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Security List for Private Subnet-vcn_nosql_demos"
egress_security_rules {
#description = <<Optional value not found in discovery>>
destination = "0.0.0.0/0"
destination_type = "CIDR_BLOCK"
#icmp_options = <<Optional value not found in discovery>>
protocol = "all"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
#icmp_options = <<Optional value not found in discovery>>
protocol = "6"
source = "10.0.0.0/16"
source_type = "CIDR_BLOCK"
stateless = "false"
tcp_options {
max = "22"
min = "22"
#source_port_range = <<Optional value not found in discovery>>
}
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
icmp_options {
code = "4"
type = "3"
}
protocol = "1"
source = "0.0.0.0/0"
source_type = "CIDR_BLOCK"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
icmp_options {
code = "-1"
type = "3"
}
protocol = "1"
source = "10.0.0.0/16"
source_type = "CIDR_BLOCK"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
vcn_id = oci_core_vcn.export_vcn_nosql_demos.id
}
resource oci_core_default_security_list export_Default-Security-List-for-vcn_nosql_demos {
compartment_id = var.compartment_ocid
display_name = "Default Security List for vcn_nosql_demos"
egress_security_rules {
#description = <<Optional value not found in discovery>>
destination = "0.0.0.0/0"
destination_type = "CIDR_BLOCK"
#icmp_options = <<Optional value not found in discovery>>
protocol = "all"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
#icmp_options = <<Optional value not found in discovery>>
protocol = "6"
source = "0.0.0.0/0"
source_type = "CIDR_BLOCK"
stateless = "false"
tcp_options {
max = "22"
min = "22"
#source_port_range = <<Optional value not found in discovery>>
}
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
icmp_options {
code = "4"
type = "3"
}
protocol = "1"
source = "0.0.0.0/0"
source_type = "CIDR_BLOCK"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
#description = <<Optional value not found in discovery>>
icmp_options {
code = "-1"
type = "3"
}
protocol = "1"
source = "10.0.0.0/16"
source_type = "CIDR_BLOCK"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
description = "Temporary for test only"
#icmp_options = <<Optional value not found in discovery>>
protocol = "all"
source = "10.0.0.0/24"
source_type = "CIDR_BLOCK"
stateless = "false"
#tcp_options = <<Optional value not found in discovery>>
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
description = "Allow HTTPS traffic"
#icmp_options = <<Optional value not found in discovery>>
protocol = "6"
source = "0.0.0.0/0"
source_type = "CIDR_BLOCK"
stateless = "false"
tcp_options {
max = "443"
min = "443"
#source_port_range = <<Optional value not found in discovery>>
}
#udp_options = <<Optional value not found in discovery>>
}
ingress_security_rules {
description = "Allow nodejs demo traffic"
#icmp_options = <<Optional value not found in discovery>>
protocol = "6"
source = "0.0.0.0/0"
source_type = "CIDR_BLOCK"
stateless = "false"
tcp_options {
max = "3000"
min = "3000"
#source_port_range = <<Optional value not found in discovery>>
}
#udp_options = <<Optional value not found in discovery>>
}
manage_default_resource_id = oci_core_vcn.export_vcn_nosql_demos.default_security_list_id
}