Compare commits

..

2 Commits

Author SHA1 Message Date
ec27ecb643 Merge branch 'main' of https://gitea.tips-of-mine.com/Tips-Of-Mine/terraform-ovh-dns-zone
Some checks failed
terraform validation / Terraform (push) Failing after 6s
2025-01-21 20:48:43 +01:00
4eacd2b266 Update : file Readme 2025-01-21 20:48:42 +01:00
2 changed files with 15 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ ${REPO_DESCRIPTION}
# Prérequis # Prérequis
Vous avez besoin d'une installation docker fonctionnelle. Vous avez besoin d'une installation terraform fonctionnelle.
https://developer.hashicorp.com/terraform/install?product_intent=terraform https://developer.hashicorp.com/terraform/install?product_intent=terraform

View File

@@ -8,6 +8,20 @@ terraform {
required_version = ">= 1.8" required_version = ">= 1.8"
} }
provider "vault" {
address = "https://vault.tips-of-mine.com"
skip_child_token = true
auth_login {
path = "auth/approle/login"
parameters = {
role_id = "<your-role_id>"
secret_id = "<your-secret_id>"
}
}
}
provider "ovh" { provider "ovh" {
endpoint = "ovh-eu" endpoint = "ovh-eu"
application_key = "d886751f57e35e31" application_key = "d886751f57e35e31"