File tree 5 files changed +13
-1
lines changed
5 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ All notable changes to this project are documented in this file.
7
7
8
8
The format is based on {uri-changelog} [Keep a Changelog].
9
9
10
+ == 2.2.0 (July 21, 2021)
11
+ * Upgraded module to use VCN module 2.3.0 so we can use reserved public IP address for the NAT Gateway
12
+
10
13
== 2.1.0 (March 22, 2021)
11
14
* Upgraded module to use operator 2.1 so we can use OL8 for operator
12
15
Original file line number Diff line number Diff line change @@ -114,6 +114,11 @@ Configuration Terraform Options:
114
114
|true/false
115
115
|true
116
116
117
+ |`nat_gateway_public_ip_id`
118
+ |OCID of reserved IP address for NAT gateway. The reserved public IP address needs to be manually created. The default value of "none" will select a public IP address from the Oracle pool.
119
+ |
120
+ |none
121
+
117
122
|`service_gateway_enabled`
118
123
|Whether to create a Service Gateway to use Oracle Services.
119
124
|true/false
Original file line number Diff line number Diff line change 3
3
4
4
module "vcn" {
5
5
source = " oracle-terraform-modules/vcn/oci"
6
- version = " 2.2 .0"
6
+ version = " 2.3 .0"
7
7
8
8
# provider parameters
9
9
region = var. oci_base_provider . region
@@ -19,6 +19,7 @@ module "vcn" {
19
19
internet_gateway_enabled = var. oci_base_vcn . internet_gateway_enabled
20
20
lockdown_default_seclist = var. oci_base_vcn . lockdown_default_seclist
21
21
nat_gateway_enabled = var. oci_base_vcn . nat_gateway_enabled
22
+ nat_gateway_public_ip_id = var. oci_base_vcn . nat_gateway_public_ip_id
22
23
service_gateway_enabled = var. oci_base_vcn . service_gateway_enabled
23
24
vcn_cidr = var. oci_base_vcn . vcn_cidr
24
25
vcn_dns_label = var. oci_base_vcn . vcn_dns_label
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ oci_base_vcn = {
23
23
internet_gateway_enabled = true
24
24
lockdown_default_seclist = true
25
25
nat_gateway_enabled = true
26
+ nat_gateway_public_ip_id = "none"
26
27
service_gateway_enabled = true
27
28
tags = {
28
29
department = "finance"
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ variable "oci_base_vcn" {
33
33
internet_gateway_enabled = bool
34
34
lockdown_default_seclist = bool
35
35
nat_gateway_enabled = bool
36
+ nat_gateway_public_ip_id = string
36
37
service_gateway_enabled = bool
37
38
tags = map (any )
38
39
vcn_cidr = string
@@ -48,6 +49,7 @@ variable "oci_base_vcn" {
48
49
internet_gateway_enabled = true
49
50
lockdown_default_seclist = true
50
51
nat_gateway_enabled = true
52
+ nat_gateway_public_ip_id = " none"
51
53
service_gateway_enabled = true
52
54
tags = null
53
55
vcn_cidr = " 10.0.0.0/16"
You can’t perform that action at this time.
0 commit comments