Skip to content

Commit

Permalink
multicloud_tworegion_cloudha: add creds to azure provider
Browse files Browse the repository at this point in the history
Change-Id: I51e98000cdf7641947f9f2adaac525f00c7583dd
  • Loading branch information
ayushmittal-arista committed Mar 29, 2023
1 parent 7406115 commit a7d97e8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
provider "azurerm" {
skip_provider_registration = true
client_id = var.creds["client_id"]
subscription_id = var.creds["subscription_id"]
tenant_id = var.creds["tenant_id"]
client_secret = var.creds["client_secret"]
features {}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ variable "cloudeos_image_offer" {}
variable "eos_payg_amis" {}
variable "eos_byol_amis" {}
variable "ingress_allowlist" {}
variable "creds" {}
locals {
eos_amis = var.cloudeos_image_offer == "cloudeos-router-payg" ? var.eos_payg_amis : var.eos_byol_amis
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
provider "azurerm" {
skip_provider_registration = true
client_id = var.creds["client_id"]
subscription_id = var.creds["subscription_id"]
tenant_id = var.creds["tenant_id"]
client_secret = var.creds["client_secret"]
features {}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ variable "cloudeos_image_offer" {}
variable "eos_payg_amis" {}
variable "eos_byol_amis" {}
variable "ingress_allowlist" {}
variable "creds" {}
locals {
eos_amis = var.cloudeos_image_offer == "cloudeos-router-payg" ? var.eos_payg_amis : var.eos_byol_amis
}

0 comments on commit a7d97e8

Please sign in to comment.