Skip to content

Instantly share code, notes, and snippets.

@kunduso
Created November 3, 2020 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunduso/bae6d4688c646776afd901ae5785b197 to your computer and use it in GitHub Desktop.
Save kunduso/bae6d4688c646776afd901ae5785b197 to your computer and use it in GitHub Desktop.
Variables for Azure provider
variable "subscription_id" {
description = "The subscription ID to be used to connect to Azure"
type = string
}
variable "client_id" {
description = "The client ID to be used to connect to Azure"
type = string
}
variable "client_secret" {
description = "The client secret to be used to connect to Azure"
type = string
}
variable "tenant_id" {
description = "The tenant ID to be used to connect to Azure"
type = string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment