diff --git a/dnsimple/contacts.tf b/dnsimple/contacts.tf new file mode 100644 index 0000000..98191aa --- /dev/null +++ b/dnsimple/contacts.tf @@ -0,0 +1,18 @@ +resource "dnsimple_contact" "ocf" { + label = "Open Collective Foundation" + first_name = "Homebrew" + last_name = "Maintainers" + email = "ops@brew.sh" + + phone = "+1 555 1234" + address1 = "123 Homebrew Street" + city = "Homebrew" + state_province = "HB" + postal_code = "00001" + country = "United States" + + lifecycle { + ignore_changes = [address1, city, state_province, postal_code, phone] + } + +} diff --git a/dnsimple/providers.tf b/dnsimple/providers.tf new file mode 100644 index 0000000..f42d445 --- /dev/null +++ b/dnsimple/providers.tf @@ -0,0 +1 @@ +provider "dnsimple" {}