Skip to content

Commit

Permalink
Added Namespace variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmontufar committed Jan 4, 2024
1 parent f933f99 commit 9bdbfec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/AWS/twistlock-updater.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "helm_release" "twistlock-updater" {

repository = "https://paloaltonetworks.github.io/pcs-cwp-defender-updater"
chart = "twistlock-updater"
namespace = "twistlock"
namespace = var.namespace
create_namespace = true
version = "1.0.0"
wait = false
Expand Down
6 changes: 6 additions & 0 deletions terraform/AWS/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ variable "cluster_name" {
type = string
}

variable "namespace" {
description = "Prisma Cloud Defender namespace"
type = string
default = "twistlock"
}

variable "compute_api_endpoint" {
description = "Prisma Cloud Compute API Endpoint"
type = string
Expand Down

0 comments on commit 9bdbfec

Please sign in to comment.