We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018c75d commit e6cb7fbCopy full SHA for e6cb7fb
oci_lens_terraform/main.tf
@@ -124,7 +124,7 @@ module "app" {
124
125
namespace = var.namespace
126
compartment_ocid = var.compartment_ocid
127
- region = var.region
+ region = local.cluster_region
128
cluster_ocid = local.cluster_id
129
tenancy_ocid = var.tenancy_ocid
130
create_iam_policy = var.create_iam_policy
oci_lens_terraform/modules/app/main.tf
@@ -29,6 +29,16 @@ resource "helm_release" "app" {
29
atomic = false
30
cleanup_on_fail = false
31
32
+ set {
33
+ name = "backend.regionName"
34
+ value = var.region
35
+ }
36
+
37
38
+ name = "backend.tenancyId"
39
+ value = var.tenancy_ocid
40
41
42
set {
43
name = "backend.superuser.username"
44
value = var.superuser_username
0 commit comments