First working version

This commit is contained in:
2020-07-18 14:02:23 -05:00
parent 2dc844f040
commit a680939b87
15 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
resource "digitalocean_record" "A" {
domain = data.digitalocean_domain.this.name
name = var.host_name
type = "A"
value = digitalocean_droplet.this.ipv4_address
}