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

This commit is contained in:
Hubert Cornet 2025-01-21 20:48:43 +01:00
commit ec27ecb643
2 changed files with 7 additions and 8 deletions

View File

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

View File

@ -5,7 +5,7 @@ terraform {
version = "~> 0.45.0"
}
}
required_version = ">= 1.7.5"
required_version = ">= 1.8"
}
provider "vault" {
@ -24,7 +24,7 @@ provider "vault" {
provider "ovh" {
endpoint = "ovh-eu"
application_key = ${{ secrets.APPLICATION_KEY }}
application_secret = ${{ secrets.APPLICATION_SECRET }}
consumer_key = ${{ secrets.CONSUMER_KEY }}
application_key = "d886751f57e35e31"
application_secret = "6f1eb05eff952f60fb8300cdbc588c42"
consumer_key = "1a9e36103fd9ebb262449dfd573ce20d"
}