mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
3fd777063b
* Test configuration for Azure deployment * ci: re-enable docker build/push * ci: docker push labeled PRs * Use `make deploy` for both local and azure deployments * doc: update AKS_DEPLOYMENT doc * add confirmation in Makefile * Make resource group location configurable
36 lines
708 B
Terraform
36 lines
708 B
Terraform
terraform {
|
|
required_version = ">=1.10.5"
|
|
|
|
required_providers {
|
|
azapi = {
|
|
source = "azure/azapi"
|
|
version = "2.2.0"
|
|
}
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = "2.17.0"
|
|
}
|
|
azurerm = {
|
|
source = "hashicorp/azurerm"
|
|
version = "4.17.0"
|
|
}
|
|
random = {
|
|
source = "hashicorp/random"
|
|
version = "3.6.3"
|
|
}
|
|
time = {
|
|
source = "hashicorp/time"
|
|
version = "0.12.1"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "azurerm" {
|
|
features {}
|
|
subscription_id = var.ARM_SUBSCRIPTION_ID
|
|
tenant_id = var.ARM_TENANT_ID
|
|
client_id = var.ARM_CLIENT_ID
|
|
client_secret = var.ARM_CLIENT_SECRET
|
|
resource_provider_registrations = "none"
|
|
}
|