Skip to content

Commit

Permalink
Add terraform.tf [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Feb 9, 2024
1 parent c3ad37e commit 9a9a52d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions terraform.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
terraform {
required_version = "~> 1.6"
required_providers {
azurerm = "~> 3.88"
}
backend "azurerm" {}
}

provider "azurerm" {
skip_provider_registration = true
features {}
}

provider "azurerm" {
alias = "management"
subscription_id = var.subscription_id_management
skip_provider_registration = true
features {}
}

provider "azurerm" {
alias = "connectivity"
subscription_id = var.subscription_id_connectivity
skip_provider_registration = true
features {}
}

0 comments on commit 9a9a52d

Please sign in to comment.