22 lines
466 B
Terraform
22 lines
466 B
Terraform
|
terraform {
|
||
|
required_version = "~>1.8.0"
|
||
|
|
||
|
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"
|
||
|
}
|
||
|
}
|
||
|
}
|