Skip to content

Commit 72995c2

Browse files
authored
Merge pull request #137 from umich-vci/dynamicUpdate
IP4Network dynamicUpdate support
2 parents a1b22b7 + 816033e commit 72995c2

File tree

8 files changed

+129
-84
lines changed

8 files changed

+129
-84
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.6.0 (July 14, 2025)
2+
IMPROVEMENTS:
3+
* Updated [terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) to 0.22.0
4+
* Updated [terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) to 1.15.0
5+
* Updated [terraform-plugin-framework-validators](https://github.com/hashicorp/terraform-plugin-framework-validators) to 0.18.0
6+
* Updated [terraform-plugin-go](https://github.com/hashicorp/terraform-plugin-go) to 0.28.0
7+
* Updated [terraform-plugin-log](https://github.com/hashicorp/terraform-plugin-log) to 0.9.0
8+
* Updated [terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing) to 1.13.2
9+
* resource/bluecat_ip4_network, datasource/bluecat_ip4_network - add support for dynamicUpdate property introduced in BlueCat 9.6.0
10+
11+
112
## 0.5.0 (November 21, 2024)
213
FEATURES:
314
* **New Resource:** `bluecat_ip4_block` ([#113](https://github.com/umich-vci/terraform-provider-bluecat/pull/113))

docs/data-sources/ip4_network.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Data source to access the attributes of an IPv4 network from a hint based search
2727
- `default_domains` (Set of Number) The object ids of the default DNS domains for the network.
2828
- `default_view` (Number) The object id of the default DNS View for the network.
2929
- `dns_restrictions` (Set of Number) The object ids of the DNS restrictions for the network.
30+
- `dynamic_update` (Boolean) Whether the network is dynamic update enabled.
3031
- `gateway` (String) The gateway of the IP4Network.
3132
- `id` (String) The ID assigned to the IP4Network.
3233
- `inherit_allow_duplicate_host` (Boolean) Duplicate host names check is inherited.

docs/resources/ip4_network.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ output "bluecat_ip4_network_cidr" {
3838
- `default_domains` (Set of Number) The object ids of the default DNS domains for the network.
3939
- `default_view` (Number) The object id of the default DNS View for the network.
4040
- `dns_restrictions` (Set of Number) The object ids of the DNS restrictions for the network.
41+
- `dynamic_update` (Boolean) Whether the network supports dynamic updates.
4142
- `gateway` (String) The gateway of the IPv4 network.
4243
- `inherit_allow_duplicate_host` (Boolean) Duplicate host names check is inherited.
4344
- `inherit_default_domains` (Boolean) Default domains are inherited.

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module github.com/umich-vci/terraform-provider-bluecat
33
go 1.24
44

55
require (
6-
github.com/hashicorp/terraform-plugin-docs v0.21.0
6+
github.com/hashicorp/terraform-plugin-docs v0.22.0
77
github.com/hashicorp/terraform-plugin-framework v1.15.0
88
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
99
github.com/hashicorp/terraform-plugin-go v0.28.0
1010
github.com/hashicorp/terraform-plugin-log v0.9.0
11-
github.com/hashicorp/terraform-plugin-testing v1.13.1
12-
github.com/umich-vci/gobam v0.0.0-20230705194030-32758b9f0f3c
13-
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
11+
github.com/hashicorp/terraform-plugin-testing v1.13.2
12+
github.com/umich-vci/gobam v0.0.0-20250714164438-4ce9089bce04
13+
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc
1414
)
1515

1616
require (
@@ -19,14 +19,14 @@ require (
1919
github.com/Masterminds/goutils v1.1.1 // indirect
2020
github.com/Masterminds/semver/v3 v3.2.0 // indirect
2121
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
22-
github.com/ProtonMail/go-crypto v1.1.6 // indirect
23-
github.com/agext/levenshtein v1.2.2 // indirect
22+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
23+
github.com/agext/levenshtein v1.2.3 // indirect
2424
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2525
github.com/armon/go-radix v1.0.0 // indirect
2626
github.com/bgentry/speakeasy v0.1.0 // indirect
2727
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
28-
github.com/cloudflare/circl v1.6.0 // indirect
29-
github.com/fatih/color v1.16.0 // indirect
28+
github.com/cloudflare/circl v1.6.1 // indirect
29+
github.com/fatih/color v1.18.0 // indirect
3030
github.com/fiorix/wsdl2go v1.4.7 // indirect
3131
github.com/golang/protobuf v1.5.4 // indirect
3232
github.com/google/go-cmp v0.7.0 // indirect
@@ -39,29 +39,29 @@ require (
3939
github.com/hashicorp/go-hclog v1.6.3 // indirect
4040
github.com/hashicorp/go-multierror v1.1.1 // indirect
4141
github.com/hashicorp/go-plugin v1.6.3 // indirect
42-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
42+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
4343
github.com/hashicorp/go-uuid v1.0.3 // indirect
4444
github.com/hashicorp/go-version v1.7.0 // indirect
4545
github.com/hashicorp/hc-install v0.9.2 // indirect
46-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
46+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
4747
github.com/hashicorp/logutils v1.0.0 // indirect
4848
github.com/hashicorp/terraform-exec v0.23.0 // indirect
4949
github.com/hashicorp/terraform-json v0.25.0 // indirect
5050
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 // indirect
51-
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
51+
github.com/hashicorp/terraform-registry-address v0.3.0 // indirect
5252
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
53-
github.com/hashicorp/yamux v0.1.1 // indirect
53+
github.com/hashicorp/yamux v0.1.2 // indirect
5454
github.com/huandu/xstrings v1.3.3 // indirect
5555
github.com/imdario/mergo v0.3.15 // indirect
5656
github.com/mattn/go-colorable v0.1.14 // indirect
5757
github.com/mattn/go-isatty v0.0.20 // indirect
5858
github.com/mattn/go-runewidth v0.0.9 // indirect
5959
github.com/mitchellh/copystructure v1.2.0 // indirect
6060
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
61-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
61+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
6262
github.com/mitchellh/mapstructure v1.5.0 // indirect
6363
github.com/mitchellh/reflectwalk v1.0.2 // indirect
64-
github.com/oklog/run v1.0.0 // indirect
64+
github.com/oklog/run v1.2.0 // indirect
6565
github.com/posener/complete v1.2.3 // indirect
6666
github.com/shopspring/decimal v1.3.1 // indirect
6767
github.com/spf13/cast v1.5.0 // indirect
@@ -70,18 +70,18 @@ require (
7070
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
7171
github.com/yuin/goldmark v1.7.7 // indirect
7272
github.com/yuin/goldmark-meta v1.1.0 // indirect
73-
github.com/zclconf/go-cty v1.16.2 // indirect
73+
github.com/zclconf/go-cty v1.16.3 // indirect
7474
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
75-
golang.org/x/crypto v0.38.0 // indirect
76-
golang.org/x/mod v0.24.0 // indirect
77-
golang.org/x/net v0.39.0 // indirect
78-
golang.org/x/sync v0.14.0 // indirect
79-
golang.org/x/sys v0.33.0 // indirect
80-
golang.org/x/text v0.25.0 // indirect
81-
golang.org/x/tools v0.32.0 // indirect
75+
golang.org/x/crypto v0.40.0 // indirect
76+
golang.org/x/mod v0.26.0 // indirect
77+
golang.org/x/net v0.42.0 // indirect
78+
golang.org/x/sync v0.16.0 // indirect
79+
golang.org/x/sys v0.34.0 // indirect
80+
golang.org/x/text v0.27.0 // indirect
81+
golang.org/x/tools v0.35.0 // indirect
8282
google.golang.org/appengine v1.6.8 // indirect
83-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
84-
google.golang.org/grpc v1.72.1 // indirect
83+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
84+
google.golang.org/grpc v1.73.0 // indirect
8585
google.golang.org/protobuf v1.36.6 // indirect
8686
gopkg.in/yaml.v2 v2.3.0 // indirect
8787
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)