fix type of records for main site

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-05-29 09:34:20 -04:00
parent 9fb7fcffa5
commit e116aa3339
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 12 additions and 12 deletions

24
main.tf
View File

@ -112,18 +112,18 @@ resource "gandi_domainattachment" "dap_ps" {
/* MAIL SITE ------------------------------------*/
/* This is the main site hosted on GitHub */
//resource "gandi_zonerecord" "dap_ps_site" {
// zone = "${gandi_zone.dap_ps_zone.id}"
// name = "mail"
// type = "TXT"
// ttl = 3600
// values = [
// "185.199.108.153",
// "185.199.109.153",
// "185.199.110.153",
// "185.199.111.153",
// ]
//}
resource "gandi_zonerecord" "dap_ps_site" {
zone = "${gandi_zone.dap_ps_zone.id}"
name = "@"
type = "A"
ttl = 3600
values = [
"185.199.108.153",
"185.199.109.153",
"185.199.110.153",
"185.199.111.153",
]
}
/* RESOURCES ------------------------------------*/