Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

Commit f3a9aad

Browse files
MadalinaPatrichiowainlewis
authored andcommitted
Updated creds (#123)
* Updated fingerprint for system test
1 parent c004108 commit f3a9aad

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

test/integration/terraform/common.tf

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,39 @@
22
variable "tenancy_ocid" {
33
default = "ocid1.tenancy.oc1..aaaaaaaatyn7scrtwtqedvgrxgr2xunzeo6uanvyhzxqblctwkrpisvke4kq"
44
}
5+
56
variable "user_ocid" {
67
default = "ocid1.user.oc1..aaaaaaaao235lbcxvdrrqlrpwv4qvil2xzs4544h3lof4go3wz2ett6arpeq"
78
}
9+
810
variable "fingerprint" {
9-
default = "2c:29:18:b4:86:a5:d4:02:07:f4:41:6f:7d:64:02:11"
11+
default = "f1:d8:e7:75:8d:3a:81:a0:18:2f:fa:8a:8f:64:44:66"
1012
}
13+
1114
variable "private_key_path" {
1215
default = "_tmp/oci_api_key.pem"
1316
}
17+
1418
variable "compartment_ocid" {
1519
default = "ocid1.compartment.oc1..aaaaaaaa6yrzvtwcumheirxtmbrbrya5lqkr7k7lxi34q3egeseqwlq2l5aq"
1620
}
21+
1722
variable "availability_domain" {
1823
default = "NWuj:PHX-AD-2"
1924
}
25+
2026
variable "region" {
2127
default = "us-phoenix-1"
2228
}
2329

2430
variable "test_id" {}
2531

2632
provider "oci" {
27-
tenancy_ocid = "${var.tenancy_ocid}"
28-
user_ocid = "${var.user_ocid}"
29-
fingerprint = "${var.fingerprint}"
33+
tenancy_ocid = "${var.tenancy_ocid}"
34+
user_ocid = "${var.user_ocid}"
35+
fingerprint = "${var.fingerprint}"
3036
private_key_path = "${var.private_key_path}"
31-
region = "${var.region}"
37+
region = "${var.region}"
3238
}
3339

3440
provider "null" {

test/integration/terraform/config.yaml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ auth:
44
user: ocid1.user.oc1..aaaaaaaao235lbcxvdrrqlrpwv4qvil2xzs4544h3lof4go3wz2ett6arpeq
55
key: |
66
${key}
7-
fingerprint: 2c:29:18:b4:86:a5:d4:02:07:f4:41:6f:7d:64:02:11
7+
fingerprint: f1:d8:e7:75:8d:3a:81:a0:18:2f:fa:8a:8f:64:44:66
88
vcn: ${vcn}

test/system/terraform/volume.tf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variable "user_ocid" {
77
}
88

99
variable "fingerprint" {
10-
default = "2c:29:18:b4:86:a5:d4:02:07:f4:41:6f:7d:64:02:11"
10+
default = "f1:d8:e7:75:8d:3a:81:a0:18:2f:fa:8a:8f:64:44:66"
1111
}
1212

1313
variable "private_key_path" {
@@ -29,18 +29,18 @@ variable "region" {
2929
variable "test_id" {}
3030

3131
provider "oci" {
32-
tenancy_ocid = "${var.tenancy_ocid}"
33-
user_ocid = "${var.user_ocid}"
34-
fingerprint = "${var.fingerprint}"
32+
tenancy_ocid = "${var.tenancy_ocid}"
33+
user_ocid = "${var.user_ocid}"
34+
fingerprint = "${var.fingerprint}"
3535
private_key_path = "${var.private_key_path}"
36-
region = "${var.region}"
36+
region = "${var.region}"
3737
}
3838

3939
resource "oci_core_volume" "test_volume" {
4040
availability_domain = "${var.availability_domain}"
41-
compartment_id = "${var.compartment_ocid}"
42-
display_name = "flexvolumesystemtest${var.test_id}"
43-
size_in_gbs = "50"
41+
compartment_id = "${var.compartment_ocid}"
42+
display_name = "flexvolumesystemtest${var.test_id}"
43+
size_in_gbs = "50"
4444
}
4545

4646
output "volume_ocid" {

0 commit comments

Comments
 (0)