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

Commit cae8a67

Browse files
committed
Syntax fix
1 parent 4edec7c commit cae8a67

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

terraform/compute.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "utility" {
3535
log_volume_size_in_gbs = "${var.log_volume_size_in_gbs}"
3636
cloudera_volume_size_in_gbs = "${var.cloudera_volume_size_in_gbs}"
3737
user_data = "${base64encode(file("../scripts/cm_boot_mysql.sh"))}"
38-
deploy_on_oci = "${base64encode(gzip(file("../scripts/deploy_on_oci.py")))}"
38+
deploy_on_oci = "${base64gzip(file("../scripts/deploy_on_oci.py"))}"
3939
cloudera_manager = "cdh-utility-1.public${var.availability_domain}.${module.network.vcn-dn}"
4040
cm_version = "${var.cm_version}"
4141
cdh_version = "${var.cdh_version}"

terraform/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ variable "fingerprint" {}
1414
variable "region" {}
1515
variable "ssh_public_key" {}
1616
variable "ssh_private_key" {}
17-
variable "extended_metdata" {}
18-
variable "cloudera_manager" {}
19-
variable "AD" {}
20-
variable "block_volume_count" {}
17+
variable "deploy_on_oci" { default = "" }
18+
variable "cloudera_manager" { default = "10.0.0.2"}
19+
variable "AD" { default="2" }
20+
variable "block_volume_count" { default = "3"}
2121

2222
# ---------------------------------------------------------------------------------------------------------------------
2323
# Cloudera variables

0 commit comments

Comments
 (0)