Skip to content
13 changes: 7 additions & 6 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
#
provider "azurerm" {

subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
partner_id = var.partner_id
use_msi = var.use_msi
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
partner_id = var.partner_id
use_msi = var.use_msi
skip_provider_registration = var.skip_provider_registration

features {}
}
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ variable "use_msi" {
default = false
}

variable "skip_provider_registration" {
description = "Set Azure Provider to skip automatic registration all of the Resource Providers which it supports on launch"
type = bool
default = false
}

variable "iac_tooling" {
description = "Value used to identify the tooling used to generate this providers infrastructure."
type = string
Expand Down