-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Set the `DNSIMPLE_ACCOUNT` and `DNSIMPLE_TOKEN` envvars to be able to run this. - The address here fake because the address in the actual account is the address of the cardholder that pays the bill (one of the PLC) and we don't want that on the public internet.
- Loading branch information
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
resource "dnsimple_contact" "ocf" { | ||
label = "Open Collective Foundation" | ||
first_name = "Homebrew" | ||
last_name = "Maintainers" | ||
email = "[email protected]" | ||
|
||
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] | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
provider "dnsimple" {} |