test : secret
Some checks failed
terraform validation / Terraform (push) Failing after 7s

This commit is contained in:
Hubert Cornet 2025-01-03 10:31:39 +01:00
parent 6401677f8c
commit 2e5fefc42b
2 changed files with 7 additions and 6 deletions

View File

@ -2,7 +2,7 @@ data "ovh_domain_zone" "zone" {
name = var.zone_name
}
resource "ovh_domain_zone_record" "agobah" {
resource "ovh_domain_zone_record" "dagobah" {
zone = data.ovh_domain_zone.zone.id
subdomain = "agobah"
fieldtype = "A"
@ -10,10 +10,11 @@ resource "ovh_domain_zone_record" "agobah" {
target = "82.66.77.254"
}
resource "ovh_domain_zone_record" "atooine" {
resource "ovh_domain_zone_record" "tatooine" {
zone = data.ovh_domain_zone.zone.id
subdomain = "atooine"
fieldtype = "A"
ttl = 60
target = "82.66.77.254"
}
}

View File

@ -10,7 +10,7 @@ terraform {
provider "ovh" {
endpoint = "ovh-eu"
application_key = "d886751f57e35e31"
application_secret = "6f1eb05eff952f60fb8300cdbc588c42"
consumer_key = "1a9e36103fd9ebb262449dfd573ce20d"
application_key = ${{ secrets.APPLICATION_KEY }}
application_secret = ${{ secrets.APPLICATION_SECRET }}
consumer_key = ${{ secrets.CONSUMER_KEY }}
}