File tree 5 files changed +14
-2
lines changed
5 files changed +14
-2
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.3.1 (July 22, 2021)
11
+ * Upgraded module to use operator module 2.2.0 so we can control the state of the operator instance without having to destroy it.
12
+
10
13
== 2.3.0 (July 21, 2021)
11
14
* Upgraded module to use VCN module 2.3.0 so we can use reserved public IP address for the NAT Gateway
12
15
Original file line number Diff line number Diff line change @@ -422,6 +422,11 @@ tags = {
422
422
boot_volume_size=50
423
423
}`
424
424
425
+ |`operator_state`
426
+ |The state of the operator instance whether `RUNNING` or `STOPPED`.
427
+ | `RUNNING`/`STOPPED`
428
+ |`RUNNING`
429
+
425
430
|`operating_system_version`
426
431
|The Oracle Linux version.
427
432
|"8"
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ module "bastion" {
77
77
78
78
module "operator" {
79
79
source = " oracle-terraform-modules/operator/oci"
80
- version = " 2.1.1 "
80
+ version = " 2.2.0 "
81
81
82
82
# provider identity parameters
83
83
api_fingerprint = var. oci_base_provider . api_fingerprint
@@ -102,6 +102,7 @@ module "operator" {
102
102
operator_image_id = var. oci_base_operator . operator_image_id
103
103
operator_instance_principal = var. oci_base_operator . enable_instance_principal
104
104
operator_shape = var. oci_base_operator . operator_shape
105
+ operator_state = var. oci_base_operator . operator_state
105
106
operating_system_version = var. oci_base_operator . operating_system_version
106
107
operator_upgrade = var. oci_base_operator . operator_upgrade
107
108
ssh_public_key = var. oci_base_operator . ssh_public_key
Original file line number Diff line number Diff line change @@ -119,11 +119,12 @@ oci_base_operator = {
119
119
operator_image_id = "Oracle"
120
120
operator_shape = {
121
121
# shape = "VM.Standard.E2.2"
122
- shape="VM.Standard.E3 .Flex",
122
+ shape="VM.Standard.E4 .Flex",
123
123
ocpus=1,
124
124
memory=4,
125
125
boot_volume_size=50
126
126
}
127
+ operator_state = "RUNNING"
127
128
operating_system_version = "8"
128
129
operator_upgrade = false
129
130
enable_instance_principal = true
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ variable "oci_base_operator" {
124
124
operator_enabled = bool
125
125
operator_image_id = string
126
126
operator_shape = map (any )
127
+ operator_state = string
127
128
operating_system_version = string
128
129
operator_upgrade = bool
129
130
enable_instance_principal = bool
@@ -151,6 +152,7 @@ variable "oci_base_operator" {
151
152
memory = 4 ,
152
153
boot_volume_size = 50
153
154
}
155
+ operator_state = " RUNNING"
154
156
operating_system_version = " 8"
155
157
operator_upgrade = true
156
158
enable_instance_principal = false
You can’t perform that action at this time.
0 commit comments