Files
Riccardo Schirone 3fd777063b Test and improve AKS deployment (#336)
* 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
2025-09-08 16:57:08 +02:00

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"
}