16 lines
286 B
HCL
16 lines
286 B
HCL
resource "ovh_domain_zone" "hashtagueule_fr" {
|
|
ovh_subsidiary = null
|
|
}
|
|
|
|
resource "ovh_domain_name_servers" "name_servers" {
|
|
domain = ovh_domain_zone.hashtagueule_fr.name
|
|
|
|
servers {
|
|
host = "james.ns.cloudflare.com"
|
|
}
|
|
|
|
servers {
|
|
host = "kristin.ns.cloudflare.com"
|
|
}
|
|
}
|