Skip to content

Commit 391fd48

Browse files
Removed any mention of two ways to specify private_key.
1 parent 0043fba commit 391fd48

File tree

16 files changed

+0
-17
lines changed

16 files changed

+0
-17
lines changed

docs/Writing Terraform configurations for OBMCS.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ Every configuration file define the provider that will be used, the OBMCS provid
3232
variable "tenancy_ocid" {}
3333
variable "user_ocid" {}
3434
variable "fingerprint" {}
35-
variable "private_key" {}
3635
variable "private_key_path" {}
3736
3837
provider "baremetal" {
3938
tenancy_ocid = "${var.tenancy_ocid}"
4039
user_ocid = "${var.user_ocid}"
4140
fingerprint = "${var.fingerprint}"
42-
private_key = "${var.private_key}"
4341
private_key_path = "${var.private_key_path}"
4442
}
4543
```

docs/examples/DBsystems/DBsystems.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/Gluster/gluster.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/IAM/compartment/compartment.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/IAM/group/group.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/IAM/policy/policy.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/IAM/user/user.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/Secure_MongoDB/secure_mongodb.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
variable "tenancy_ocid" {}
44
variable "user_ocid" {}
55
variable "fingerprint" {}
6-
variable "private_key" {}
76
variable "private_key_path" {}
87
variable "compartment_ocid" {}
98
variable "ssh_key_4_metadata" {}

docs/examples/compute/BMinstance/instance.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

docs/examples/compute/VMinstance/instance.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
variable "tenancy_ocid" {}
22
variable "user_ocid" {}
33
variable "fingerprint" {}
4-
variable "private_key" {}
54
variable "private_key_path" {}
65
variable "compartment_ocid" {}
76

0 commit comments

Comments
 (0)