mirror of https://github.com/jenkins-infra/azure
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
425 B
25 lines
425 B
|
|
terraform {
|
|
required_version = ">= 1.1, <1.2"
|
|
required_providers {
|
|
azurerm = {
|
|
source = "hashicorp/azurerm"
|
|
}
|
|
azuread = {
|
|
source = "hashicorp/azuread"
|
|
}
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
}
|
|
local = {
|
|
source = "hashicorp/local"
|
|
}
|
|
postgresql = {
|
|
source = "cyrilgdn/postgresql"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
}
|
|
}
|
|
}
|