Skip to content

Commit

Permalink
Add enable_raz input variable to quickstarts (#41)
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Enright <[email protected]>
  • Loading branch information
jimright authored Sep 5, 2024
1 parent 27ebd6f commit e30024f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ module "cdp_deploy" {
keypair_name = local.aws_key_pair
deployment_template = var.deployment_template
datalake_scale = var.datalake_scale
enable_raz = var.enable_raz
datalake_recipes = var.datalake_recipes
freeipa_recipes = var.freeipa_recipes

Expand Down
7 changes: 7 additions & 0 deletions aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ variable "datalake_recipes" {
default = null
}

variable "enable_raz" {
type = bool

description = "Flag to enable Ranger Authorization Service (RAZ)"

default = true
}
# ------- Network Resources -------
variable "ingress_extra_cidrs_and_ports" {
type = object({
Expand Down
1 change: 1 addition & 0 deletions azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ module "cdp_deploy" {
public_key_text = local.public_key_text
deployment_template = var.deployment_template
datalake_scale = var.datalake_scale
enable_raz = var.enable_raz
datalake_recipes = var.datalake_recipes
freeipa_recipes = var.freeipa_recipes
multiaz = var.multiaz
Expand Down
8 changes: 8 additions & 0 deletions azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,14 @@ variable "datalake_recipes" {
default = null
}

variable "enable_raz" {
type = bool

description = "Flag to enable Ranger Authorization Service (RAZ)"

default = true
}

# ------- Network Resources -------
variable "ingress_extra_cidrs_and_ports" {
type = object({
Expand Down
1 change: 1 addition & 0 deletions gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ module "cdp_deploy" {
public_key_text = local.public_key_text
deployment_template = var.deployment_template
datalake_scale = var.datalake_scale
enable_raz = var.enable_raz
datalake_recipes = var.datalake_recipes
freeipa_recipes = var.freeipa_recipes

Expand Down
7 changes: 7 additions & 0 deletions gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ variable "datalake_recipes" {
default = null
}

variable "enable_raz" {
type = bool

description = "Flag to enable Ranger Authorization Service (RAZ)"

default = true
}
# ------- Network Resources -------
variable "ingress_extra_cidrs_and_ports" {
type = object({
Expand Down

0 comments on commit e30024f

Please sign in to comment.