Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit ba4ef38

Browse files
committed
Moved TF to top level for ORM support with Schema.
1 parent 9041533 commit ba4ef38

22 files changed

+212
-6
lines changed

terraform/compute.tf renamed to compute.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "bastion" {
1111
bastion_instance_shape = "${var.bastion_instance_shape}"
1212
log_volume_size_in_gbs = "${var.log_volume_size_in_gbs}"
1313
cloudera_volume_size_in_gbs = "${var.cloudera_volume_size_in_gbs}"
14-
user_data = "${base64encode(file("../scripts/boot.sh"))}"
14+
user_data = "${base64encode(file("scripts/boot.sh"))}"
1515
cloudera_manager = "cdh-utility-1.public${var.availability_domain}.${module.network.vcn-dn}"
1616
cm_version = "${var.cm_version}"
1717
cdh_version = "${var.cdh_version}"
@@ -31,9 +31,9 @@ module "utility" {
3131
utility_instance_shape = "${var.utility_instance_shape}"
3232
log_volume_size_in_gbs = "${var.log_volume_size_in_gbs}"
3333
cloudera_volume_size_in_gbs = "${var.cloudera_volume_size_in_gbs}"
34-
user_data = "${base64encode(file("../scripts/cloudera_manager_boot.sh"))}"
35-
cm_install = "${base64gzip(file("../scripts/cms_mysql.sh"))}"
36-
deploy_on_oci = "${base64gzip(file("../scripts/deploy_on_oci.py"))}"
34+
user_data = "${base64encode(file("scripts/cloudera_manager_boot.sh"))}"
35+
cm_install = "${base64gzip(file("scripts/cms_mysql.sh"))}"
36+
deploy_on_oci = "${base64gzip(file("scripts/deploy_on_oci.py"))}"
3737
cloudera_manager = "cdh-utility-1.public${var.availability_domain}.${module.network.vcn-dn}"
3838
cm_version = "${var.cm_version}"
3939
cdh_version = "${var.cdh_version}"
@@ -56,7 +56,7 @@ module "master" {
5656
master_instance_shape = "${var.master_instance_shape}"
5757
log_volume_size_in_gbs = "${var.log_volume_size_in_gbs}"
5858
cloudera_volume_size_in_gbs = "${var.cloudera_volume_size_in_gbs}"
59-
user_data = "${base64encode(file("../scripts/boot.sh"))}"
59+
user_data = "${base64encode(file("scripts/boot.sh"))}"
6060
cloudera_manager = "cdh-utility-1.public${var.availability_domain}.${module.network.vcn-dn}"
6161
cm_version = "${var.cm_version}"
6262
cdh_version = "${var.cdh_version}"
@@ -78,7 +78,7 @@ module "worker" {
7878
cloudera_volume_size_in_gbs = "${var.cloudera_volume_size_in_gbs}"
7979
block_volumes_per_worker = "${var.block_volumes_per_worker}"
8080
data_blocksize_in_gbs = "${var.data_blocksize_in_gbs}"
81-
user_data = "${base64encode(file("../scripts/boot.sh"))}"
81+
user_data = "${base64encode(file("scripts/boot.sh"))}"
8282
cloudera_manager = "cdh-utility-1.public${var.availability_domain}.${module.network.vcn-dn}"
8383
cm_version = "${var.cm_version}"
8484
cdh_version = "${var.cdh_version}"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)