Update : file Readme

This commit is contained in:
Hubert Cornet 2025-01-21 20:48:42 +01:00
parent 2e5fefc42b
commit 4eacd2b266
2 changed files with 15 additions and 1 deletions

View File

@ -7,7 +7,7 @@ ${REPO_DESCRIPTION}
# 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

View File

@ -8,6 +8,20 @@ terraform {
required_version = ">= 1.7.5"
}
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" {
endpoint = "ovh-eu"
application_key = ${{ secrets.APPLICATION_KEY }}