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
replaced deprecated template_file data source with templatefile function (#39)
* replaced deprecated template_file data source with templatefile function
* renamed variables
* Update README.adoc
* moved templating into locals
* change cloud init provider
@@ -46,6 +48,8 @@ This module is primarily meant to be reusable and the operator instance is used
46
48
1. performing post-provisioning tasks with Terraform or other automation tools
47
49
2. provide administrators access without the need to upload api authentication keys (instance_principal)
48
50
51
+
It can be accessed either through a Bastion host (e.g. {uri-bastion-repo}[terraform-oci-bastion]) or through the {uri-oci-bastion}[OCI Bastion service].
52
+
49
53
You can further use it as part of higher level Terraform modules.
Copy file name to clipboardExpand all lines: variables.tf
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -83,19 +83,18 @@ variable "vcn_id" {
83
83
84
84
# operator host parameters
85
85
86
-
variable"operating_system_version" {
87
-
description="The version of the Oracle Linux to use."
88
-
default="8"
89
-
type=string
90
-
}
91
-
92
86
variable"create_operator" {
93
-
#! Deprecation notice: will be renamed to create_operator at next major release
94
87
description="whether to create the operator"
95
88
default=false
96
89
type=bool
97
90
}
98
91
92
+
variable"operating_system_version" {
93
+
description="The version of the Oracle Linux to use."
94
+
default="8"
95
+
type=string
96
+
}
97
+
99
98
variable"operator_image_id" {
100
99
description="Provide a custom image id for the operator host or leave as Oracle."
101
100
default="Oracle"
@@ -122,12 +121,6 @@ variable "operator_state" {
122
121
type=string
123
122
}
124
123
125
-
variable"operator_upgrade" {
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."
127
-
default=false
128
-
type=bool
129
-
}
130
-
131
124
variable"ssh_public_key" {
132
125
description="the content of the ssh public key used to access the operator. set this or the ssh_public_key_path"
description="The preferred timezone for the operator host."
145
138
default="Australia/Sydney"
146
139
type=string
147
140
}
148
141
142
+
variable"upgrade_operator" {
143
+
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