Skip to content

Commit b7c61fe

Browse files
Improvements to examples.
1 parent d28a705 commit b7c61fe

File tree

15 files changed

+6
-14
lines changed

15 files changed

+6
-14
lines changed

docs/examples/DBsystems/DBsystems.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ provider "baremetal" {
1010
user_ocid = "${var.user_ocid}"
1111
fingerprint = "${var.fingerprint}"
1212
private_key_path = "${var.private_key_path}"
13-
private_key = "${var.private_key}"
1413
}
1514

1615
resource "baremetal_database_db_system" "dev_db_1" {

docs/examples/Gluster/gluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provider "baremetal" {
88
tenancy_ocid = "${var.tenancy_ocid}"
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
11-
private_key = "${var.private_key}"
11+
private_key = "${var.private_key_path}"
1212
}
1313

1414
variable "VPC-CIDR" {

docs/examples/IAM/compartment/compartment.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ provider "baremetal" {
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
1111
private_key_path = "${var.private_key_path}"
12-
private_key = "${var.private_key}"
1312
}
1413

1514
resource "baremetal_identity_compartment" "a_TF_managed_compartment" {

docs/examples/IAM/group/group.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ provider "baremetal" {
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
1111
private_key_path = "${var.private_key_path}"
12-
private_key = "${var.private_key}"
1312
}
1413

1514
resource "baremetal_identity_group" "my_first_TF_group" {

docs/examples/IAM/policy/policy.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ provider "baremetal" {
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
1111
private_key_path = "${var.private_key_path}"
12-
private_key = "${var.private_key}"
1312
}
1413

1514
resource "baremetal_identity_policy" "IAM_policy" {

docs/examples/IAM/user/user.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ provider "baremetal" {
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
1111
private_key_path = "${var.private_key_path}"
12-
private_key = "${var.private_key}"
1312
}
1413

1514
resource "baremetal_identity_user" "tf_user" {

docs/examples/Secure_MongoDB/secure_mongodb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ provider "baremetal" {
1111
tenancy_ocid = "${var.tenancy_ocid}"
1212
user_ocid = "${var.user_ocid}"
1313
fingerprint = "${var.fingerprint}"
14-
private_key = "${var.private_key}"
14+
private_key = "${var.private_key_path}"
1515
}
1616

1717
variable "VPC-CIDR" {

docs/examples/compute/BMinstance/instance.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ provider "baremetal" {
1010
user_ocid = "${var.user_ocid}"
1111
fingerprint = "${var.fingerprint}"
1212
private_key_path = "${var.private_key_path}"
13-
private_key = "${var.private_key}"
1413
}
1514

1615
# Note that the difference between launching a VM and BM instance is just a different shape name.

docs/examples/compute/VMinstance/instance.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ provider "baremetal" {
1010
user_ocid = "${var.user_ocid}"
1111
fingerprint = "${var.fingerprint}"
1212
private_key_path = "${var.private_key_path}"
13-
private_key = "${var.private_key}"
1413
}
1514

1615
# Note that the difference between launching a VM and BM instance is just a different shape name.

docs/examples/network/complete_vcn/complete_vcn.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ provider "baremetal" {
88
tenancy_ocid = "${var.tenancy_ocid}"
99
user_ocid = "${var.user_ocid}"
1010
fingerprint = "${var.fingerprint}"
11-
private_key = "${var.private_key}"
11+
private_key = "${var.private_key_path}"
1212
}
1313

1414
variable "VPC-CIDR" {

0 commit comments

Comments
 (0)