blob: a5980ea2358d2b62b4dfc1150e36ce7f11a5477e (
plain) (
tree)
|
|
resource "digitalocean_domain" "this" {
name = var.name
}
resource "digitalocean_project_resources" "domain" {
project = var.project_id
resources = [digitalocean_domain.this.urn]
}
resource "digitalocean_record" "a" {
type = "A"
domain = digitalocean_domain.this.id
value = var.ip_address
name = "@"
ttl = 3600
}
|