2024-09-01 13:19:36 +02:00
|
|
|
terraform {
|
2024-10-15 15:21:06 +02:00
|
|
|
required_version = "~>1.9"
|
2024-09-01 13:19:36 +02:00
|
|
|
|
|
|
|
required_providers {
|
|
|
|
# https://github.com/hashicorp/terraform-provider-google
|
|
|
|
google = {
|
|
|
|
source = "hashicorp/google"
|
|
|
|
version = "~>5.41.0"
|
|
|
|
}
|
|
|
|
google-beta = {
|
|
|
|
source = "hashicorp/google-beta"
|
|
|
|
version = "~> 5.41"
|
|
|
|
}
|
|
|
|
|
|
|
|
# https://github.com/hashicorp/terraform-provider-kubernetes
|
|
|
|
kubernetes = {
|
|
|
|
source = "hashicorp/kubernetes"
|
|
|
|
version = "~>2.32.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|