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
|[[output_vnic_attachment_all_attributes]] <<output_vnic_attachment_all_attributes,vnic_attachment_all_attributes>> |all attributes of created vnic attachments
247
249
|[[output_volume_all_attributes]] <<output_volume_all_attributes,volume_all_attributes>> |all attributes of created volumes
248
250
|[[output_volume_attachment_all_attributes]] <<output_volume_attachment_all_attributes,volume_attachment_all_attributes>> |all attributes of created volumes attachments
Copy file name to clipboardExpand all lines: examples/instances_reserved_public_ip/variables.tf
+9-2
Original file line number
Diff line number
Diff line change
@@ -104,9 +104,10 @@ variable "source_type" {
104
104
105
105
# operating system parameters
106
106
107
-
variable"ssh_authorized_keys" {
108
-
description="Public SSH keys path to be included in the ~/.ssh/authorized_keys file for the default user on the instance."
107
+
variable"ssh_public_keys" {
108
+
description="Public SSH keys to be included in the ~/.ssh/authorized_keys file for the default user on the instance. To provide multiple keys, see docs/instance_ssh_keys.adoc."
109
109
type=string
110
+
default=null
110
111
}
111
112
112
113
# networking parameters
@@ -124,6 +125,12 @@ variable "subnet_ocids" {
124
125
125
126
# storage parameters
126
127
128
+
variable"boot_volume_backup_policy" {
129
+
description="Choose between default backup policies : gold, silver, bronze. Use disabled to affect no backup policy on the Boot Volume."
130
+
type=string
131
+
default="disabled"
132
+
}
133
+
127
134
variable"block_storage_sizes_in_gbs" {
128
135
description="Sizes of volumes to create and attach to each instance."
0 commit comments