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