Skip to content

Commit

Permalink
Updating documentation and release notes CHANGELOG.md (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
hemanthKa677 authored Jun 20, 2023
1 parent 6ccb4f2 commit 0e36596
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [v2.4.1](https://github.com/infobloxopen/terraform-provider-infoblox/tree/v2.4.1) (2023-06-20)
- A/AAAA Record resources reworked:
- removed limitation on updating 'cidr' field
- Bugfixes

## [v2.4.0](https://github.com/infobloxopen/terraform-provider-infoblox/tree/v2.4.0) (2023-05-29)
- IPV4/IPV6 Network Container resources reworked:
- 'parent_cidr' and 'allocate_prefix_len' are added for dynamic allocation
Expand Down
2 changes: 1 addition & 1 deletion DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Working at code level requires you to set up the environment, clone the code, b
## Building the Binary from Source Code and Using it
Golang and Terraform installed in the system are basic requirements to build and test the plugin.

* Install and set up Golang version 1.16 or later from:
* Install and set up Golang version 1.17 or later from:
`https://golang.org/doc/install`
* Install Terraform CLI v0.14.x from:
`https://www.terraform.io/downloads.html`
Expand Down
4 changes: 2 additions & 2 deletions GETTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Specify the plugin version in the .tf file as follows:
required_providers {
infoblox = {
source = "infobloxopen/infoblox"
version = ">= 2.2.0"
version = ">= 2.4.0"
}
}
}
Expand All @@ -35,7 +35,7 @@ Refer to the official documentation for more information https://registry.terraf

## Building a Binary from the GitHub Source Code and Using it
Complete the follwing steps to build the binary:
* Install and set up Golang version 1.16 or later from:
* Install and set up Golang version 1.17 or later from:
`https://golang.org/doc/install`
* Install Terraform CLI v0.14.x from:
`https://www.terraform.io/downloads.html`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
This is a provider plugin for Terraform to manage Infoblox NIOS (Network Identity Operating System) resources using Terraform infrastructure as code solutions.
The plugin enables lifecycle management of Infoblox NIOS DDI resources.

The latest version of Infoblox provider is [v2.4.0](https://github.com/infobloxopen/terraform-provider-infoblox/releases/tag/v2.4.0)
The latest version of Infoblox provider is [v2.4.1](https://github.com/infobloxopen/terraform-provider-infoblox/releases/tag/v2.4.1)

## Provider Features

Expand Down
2 changes: 2 additions & 0 deletions docs/resources/infoblox_a_record.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ The following list describes the parameters you can define in the resource block
* For allocating a dynamic IP address, configure the `cidr` field instead of `ip_addr` . Optionally, specify a `network_view` if you do not want to allocate it in the network view `default`.
* `cidr`: required only for dynamic allocation, specifies the network from which to allocate an IP address when the `ip_addr` field is empty. The address is in CIDR format. For static allocation, use `ip_addr` instead of `cidr`. Example: `192.168.10.4/30`.

!> To use upper case letters in `fqdn`, infoblox recommends that you use lower() function. Example: `lower("testEXAMPLE.zone1.com")`

### Examples of an A-record Block

```hcl
Expand Down
2 changes: 2 additions & 0 deletions docs/resources/infoblox_aaaa_record.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ The following list describes the parameters you can define in the resource block
* For allocating a dynamic IP address, configure the `cidr` field instead of `ipv6_addr` . Optionally, specify a `network_view` if you do not want to allocate it in the network view `default`.
* `cidr`: required only for dynamic allocation, specifies the network from which to allocate an IP address when the `ipv6_addr` field is empty. The address is in CIDR format. For static allocation, use `ipv6_addr` instead of `cidr`. Example: `2001::/64`.

!> To use upper case letters in `fqdn`, infoblox recommends that you use lower() function. Example: `lower("testEXAMPLE.zone1.com")`

### Examples of an AAAA-record Block

```hcl
Expand Down

0 comments on commit 0e36596

Please sign in to comment.