13 lines
200 B
Terraform
13 lines
200 B
Terraform
|
|
terraform {
|
||
|
|
required_providers {
|
||
|
|
google = {
|
||
|
|
source = "hashicorp/google"
|
||
|
|
version = "~> 6.0"
|
||
|
|
}
|
||
|
|
time = {
|
||
|
|
source = "hashicorp/time"
|
||
|
|
version = "~> 0.12"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|