Skip to content
This repository was archived by the owner on Oct 31, 2019. It is now read-only.

Commit ac81347

Browse files
srirgjlamillan
authored andcommitted
adding display for etcd/worker mount volumes (#158)
1 parent 93b7d30 commit ac81347

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

instances/etcd/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ resource "oci_core_volume" "TFVolumeInstanceEtcd" {
4141
count = "${var.etcd_iscsi_volume_create ? var.count : 0}"
4242
availability_domain = "${var.availability_domain}"
4343
compartment_id = "${var.compartment_ocid}"
44+
display_name = "block-volume-${var.hostname_label_prefix}-${count.index}"
4445
size_in_gbs = "${var.etcd_iscsi_volume_size}"
4546
}
4647

instances/k8sworker/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ resource "oci_core_volume" "TFVolumeK8sWorker" {
5252
count = "${var.worker_iscsi_volume_create ? var.count : 0}"
5353
availability_domain = "${var.availability_domain}"
5454
compartment_id = "${var.compartment_ocid}"
55+
display_name = "block-volume-${var.hostname_label_prefix}-${count.index}"
5556
size_in_gbs = "${var.worker_iscsi_volume_size}"
5657
}
5758

0 commit comments

Comments
 (0)