All checks were successful
terraform validation / Terraform (push) Successful in 18s
23 lines
431 B
HCL
23 lines
431 B
HCL
terraform {
|
|
required_providers {
|
|
google = {
|
|
version = "~> 6.16.0"
|
|
}
|
|
}
|
|
required_version = ">= 1.7.5"
|
|
}
|
|
|
|
provider "google" {
|
|
# project = var.project
|
|
region = var.region
|
|
# credentials = var.file
|
|
}
|
|
|
|
data "google_client_config" "default" {}
|
|
|
|
provider "vault" {
|
|
address = "https://vault.saint-maclou.com"
|
|
}
|
|
|
|
|
|
# manque la partie du vault pour récupérer l'authentification GCP afin d'obtenir les droits |