Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
Add auxiliary_tenant_ids provider parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Mykhailo Danyliuk committed Sep 19, 2023
1 parent 9100bad commit 5b8ab8a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions caf_solution/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ provider "azurerm" {
scale_to_zero_before_deletion = try(var.provider_azurerm_features_virtual_machine_scale_set.scale_to_zero_before_deletion, null)
}
}
auxiliary_tenant_ids = try(var.provider_azurerm_auxiliary_tenant_ids, null)
}

provider "azurerm" {
Expand Down
5 changes: 5 additions & 0 deletions caf_solution/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ variable "rover_version" {
default = "caf_standalone"
}

variable "provider_azurerm_auxiliary_tenant_ids" {
description = "List of auxiliary Tenant IDs required for multi-tenancy and cross-tenant scenarios."
default = null
}

variable "client_config" {
default = {}
}
Expand Down

0 comments on commit 5b8ab8a

Please sign in to comment.