Skip to content

Commit

Permalink
fixing examples
Browse files Browse the repository at this point in the history
  • Loading branch information
skudriavtsev committed Apr 12, 2023
1 parent 61ec917 commit ea8fc24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/resources/infoblox_ptr_record.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ resource "infoblox_ptr_record" "ptr3" {
// dynamically allocated PTR-record, minimal set of parameters
resource "infoblox_ptr_record" "ptr4" {
ptrdname = "rec4.example2.org"
cidr = infoblox_ipv4_network.net1.cidr
cidr = "10.0.0.0/16"
}
// statically allocated PTR-record, full set of parameters, non-default network view
// dynamically allocated PTR-record, full set of parameters, non-default network view
resource "infoblox_ptr_record" "ptr5" {
ptrdname = "rec5.example2.org"
dns_view = "nondefault_dnsview2"
network_view = "nondefault_netview"
ip_addr = "2002:1f93::5"
cidr = "10.1.0.0/24"
comment = "workstation #5"
ttl = 300 # 5 minutes
ext_attrs = jsonencode({
Expand Down
4 changes: 2 additions & 2 deletions examples/resources/infoblox_ptr_record.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ resource "infoblox_ptr_record" "rec4" {
cidr = infoblox_ipv4_network.net1.cidr
}

// statically allocated PTR-record, full set of parameters, non-default network view
// dynamically allocated PTR-record, full set of parameters, non-default network view
resource "infoblox_ptr_record" "rec5" {
ptrdname = "rec5.example2.org"
dns_view = "nondefault_dnsview2"
network_view = "nondefault_netview"
ip_addr = "2002:1f93::5"
cidr = infoblox_ipv4_network.net2.cidr
comment = "workstation #5"
ttl = 300 # 5 minutes
ext_attrs = jsonencode({
Expand Down

0 comments on commit ea8fc24

Please sign in to comment.