File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,15 +53,15 @@ resource "infoblox_ptr_record" "ptr3" {
53
53
// dynamically allocated PTR-record, minimal set of parameters
54
54
resource "infoblox_ptr_record" "ptr4" {
55
55
ptrdname = "rec4.example2.org"
56
- cidr = infoblox_ipv4_network.net1.cidr
56
+ cidr = "10.0.0.0/16"
57
57
}
58
58
59
- // statically allocated PTR-record, full set of parameters, non-default network view
59
+ // dynamically allocated PTR-record, full set of parameters, non-default network view
60
60
resource "infoblox_ptr_record" "ptr5" {
61
61
ptrdname = "rec5.example2.org"
62
62
dns_view = "nondefault_dnsview2"
63
63
network_view = "nondefault_netview"
64
- ip_addr = "2002:1f93::5 "
64
+ cidr = "10.1.0.0/24 "
65
65
comment = "workstation #5"
66
66
ttl = 300 # 5 minutes
67
67
ext_attrs = jsonencode({
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ resource "infoblox_ptr_record" "rec4" {
31
31
cidr = infoblox_ipv4_network. net1 . cidr
32
32
}
33
33
34
- // statically allocated PTR-record, full set of parameters, non-default network view
34
+ // dynamically allocated PTR-record, full set of parameters, non-default network view
35
35
resource "infoblox_ptr_record" "rec5" {
36
36
ptrdname = " rec5.example2.org"
37
37
dns_view = " nondefault_dnsview2"
38
38
network_view = " nondefault_netview"
39
- ip_addr = " 2002:1f93::5 "
39
+ cidr = infoblox_ipv4_network . net2 . cidr
40
40
comment = " workstation #5"
41
41
ttl = 300 # 5 minutes
42
42
ext_attrs = jsonencode ({
You can’t perform that action at this time.
0 commit comments