You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* tested with ARM, changed default shape to E4.Flex, added ability to control state of operator host
* added deprecation notice in changelog
* Update variables.tf
Changed default shape in variables to E4
Copy file name to clipboardExpand all lines: docs/terraformoptions.adoc
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,17 +141,23 @@ Ensure you review the {uri-terraform-dependencies}[dependencies].
141
141
|`operator_shape`
142
142
|The shape of operator instance. This is now specified as a map and supports E3.Flex. If a non-Flex shape is specified, then the other parameters are ignored.
143
143
|e.g. `operator_shape = {
144
-
shape="VM.Standard.E3.Flex",
144
+
shape="VM.Standard.E4.Flex",
145
145
ocpus=1,
146
146
memory=4,
147
147
boot_volume_size=50
148
148
}`
149
149
|`operator_shape = {
150
-
shape="VM.Standard.E3.Flex",
150
+
shape="VM.Standard.E4.Flex",
151
151
ocpus=1,
152
152
memory=4,
153
153
boot_volume_size=50
154
154
}`
155
+
156
+
|`operator_state`
157
+
|The target state for the instance. Could be set to RUNNING or STOPPED. (Updatable)
158
+
|RUNNING|STOPPED
159
+
|RUNNING
160
+
155
161
|`operator_upgrade`
156
162
|Whether to upgrade the operator host packages after provisioning. It's useful to set this to false during development/testing so the operator is provisioned faster.
description="The version of the Oracle Linux to use."
114
-
default="8"
119
+
variable"operator_state" {
120
+
description="The target state for the instance. Could be set to RUNNING or STOPPED. (Updatable)"
121
+
default="RUNNING"
115
122
type=string
116
123
}
124
+
117
125
variable"operator_upgrade" {
118
126
description="Whether to upgrade the operator host packages after provisioning. It's useful to set this to false during development/testing so the operator is provisioned faster."
0 commit comments