hcornet 2e5fefc42b
Some checks failed
terraform validation / Terraform (push) Failing after 7s
test : secret
2025-01-03 10:31:39 +01:00

16 lines
348 B
HCL

terraform {
required_providers {
ovh = {
source = "ovh/ovh"
version = "~> 0.45.0"
}
}
required_version = ">= 1.7.5"
}
provider "ovh" {
endpoint = "ovh-eu"
application_key = ${{ secrets.APPLICATION_KEY }}
application_secret = ${{ secrets.APPLICATION_SECRET }}
consumer_key = ${{ secrets.CONSUMER_KEY }}
}