Skip to content

Commit 9d38d9a

Browse files
committed
fmt
Signed-off-by: junior <junior@users.noreply.github.com>
1 parent 12dc944 commit 9d38d9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/oke-cluster-autoscaler/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ resource "kubernetes_cluster_role" "cluster_autoscaler_cr" {
105105
}
106106
rule {
107107
api_groups = ["storage.k8s.io"]
108-
resources = ["storageclasses", "csinodes", "csidrivers"]
108+
resources = ["storageclasses", "csinodes", "csidrivers", "csistoragecapacities"]
109109
verbs = ["watch", "list", "get"]
110110
}
111111
rule {

modules/oke/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ locals {
144144
app_name = var.freeform_deployment_tags.AppName
145145
deploy_id = var.freeform_deployment_tags.DeploymentID
146146
app_name_normalized = substr(replace(lower(var.freeform_deployment_tags.AppName), " ", "-"), 0, 6)
147-
app_name_for_dns = substr(lower(replace(var.freeform_deployment_tags.AppName,"/\\W|_|\\s/","")), 0, 6)
147+
app_name_for_dns = substr(lower(replace(var.freeform_deployment_tags.AppName, "/\\W|_|\\s/", "")), 0, 6)
148148
}
149149

150150
# OKE Compartment

0 commit comments

Comments
 (0)