Archived
Fix live-safe example default test IP for Dynu validation
This commit is contained in:
@@ -10,7 +10,7 @@ then you remove it with `terraform destroy`.
|
||||
- Hostname format is:
|
||||
- `<test_prefix>-<test_suffix>.<dynu_root_domain>`
|
||||
- Creates exactly one record:
|
||||
- `A` record, default content `198.51.100.10`, default TTL `300`.
|
||||
- `A` record, default content `1.1.1.1`, default TTL `300`.
|
||||
- Does **not** import, update, replace, or delete existing production hostnames/records.
|
||||
- `terraform destroy` removes only the disposable record in this state.
|
||||
|
||||
|
||||
@@ -23,9 +23,9 @@ variable "test_suffix" {
|
||||
}
|
||||
|
||||
variable "test_ip" {
|
||||
description = "Safe documentation/test IPv4 value for the disposable A record."
|
||||
description = "IPv4 value for the disposable A record. Dynu rejects reserved documentation ranges (for example 198.51.100.0/24), so this default uses a public resolver address."
|
||||
type = string
|
||||
default = "198.51.100.10"
|
||||
default = "1.1.1.1"
|
||||
}
|
||||
|
||||
variable "test_ttl" {
|
||||
|
||||
Reference in New Issue
Block a user