File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed
instances_reserved_public_ip Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ No modules.
28
28
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/core_public_ip[oci_core_public_ip.public_ip] |resource
29
29
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/core_volume[oci_core_volume.volume] |resource
30
30
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/core_volume_attachment[oci_core_volume_attachment.volume_attachment] |resource
31
- |https://registry.terraform.io/providers/hashicorp/oci/latest/docs/data-sources/core_instance_credentials[oci_core_instance_credentials.crendential ] |data source
31
+ |https://registry.terraform.io/providers/hashicorp/oci/latest/docs/data-sources/core_instance_credentials[oci_core_instance_credentials.credential ] |data source
32
32
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/data-sources/core_private_ips[oci_core_private_ips.private_ips] |data source
33
33
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/data-sources/core_shapes[oci_core_shapes.ad1] |data source
34
34
|https://registry.terraform.io/providers/hashicorp/oci/latest/docs/data-sources/core_subnet[oci_core_subnet.instance_subnet] |data source
@@ -150,7 +150,7 @@ No modules.
150
150
|no
151
151
152
152
|[[input_public_ip]] <<input_public_ip,public_ip>>
153
- |Whether to create a Public IP to attach to primary vnic and wwhich lifetime. Valid values are NONE, RESERVED or EPHEMERAL.
153
+ |Whether to create a Public IP to attach to primary vnic and which lifetime. Valid values are NONE, RESERVED or EPHEMERAL.
154
154
|`string`
155
155
|`"NONE"`
156
156
|no
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ variable "assign_public_ip" {
119
119
}
120
120
121
121
variable "public_ip" {
122
- description = " Whether to create a Public IP to attach to primary vnic and wwhich lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
122
+ description = " Whether to create a Public IP to attach to primary vnic and which lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
123
123
type = string
124
124
default = " NONE"
125
125
}
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ variable "ssh_public_keys" {
120
120
# networking parameters
121
121
122
122
variable "public_ip" {
123
- description = " Whether to create a Public IP to attach to primary vnic and wwhich lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
123
+ description = " Whether to create a Public IP to attach to primary vnic and which lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
124
124
type = string
125
125
default = " NONE"
126
126
}
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ variable "ssh_authorized_keys" {
112
112
# networking parameters
113
113
114
114
variable "public_ip" {
115
- description = " Whether to create a Public IP to attach to primary vnic and wwhich lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
115
+ description = " Whether to create a Public IP to attach to primary vnic and which lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
116
116
type = string
117
117
default = " NONE"
118
118
}
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ resource "oci_core_instance" "instance" {
111
111
# #################################
112
112
# Instance Credentials Datasource
113
113
# #################################
114
- data "oci_core_instance_credentials" "crendential " {
114
+ data "oci_core_instance_credentials" "credential " {
115
115
count = var. resource_platform != " linux" ? var. instance_count : 0
116
116
instance_id = oci_core_instance. instance [count . index ]. id
117
117
}
Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ output "public_ip" {
33
33
34
34
output " instance_username" {
35
35
description = " Usernames to login to Windows instance. "
36
- value = data.oci_core_instance_credentials.crendential .* .username
36
+ value = data.oci_core_instance_credentials.credential .* .username
37
37
}
38
38
39
39
output " instance_password" {
40
40
description = " Passwords to login to Windows instance. "
41
41
sensitive = true
42
- value = data.oci_core_instance_credentials.crendential .* .password
42
+ value = data.oci_core_instance_credentials.credential .* .password
43
43
}
44
44
45
45
# New complete outputs for each resources with provider parity. Auto-updating.
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ variable "private_ips" {
151
151
}
152
152
153
153
variable "public_ip" {
154
- description = " Whether to create a Public IP to attach to primary vnic and wwhich lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
154
+ description = " Whether to create a Public IP to attach to primary vnic and which lifetime. Valid values are NONE, RESERVED or EPHEMERAL."
155
155
type = string
156
156
default = " NONE"
157
157
You can’t perform that action at this time.
0 commit comments