Skip to content

Commit

Permalink
update go client; fix acceptance tests (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewab authored Apr 26, 2024
1 parent ec7ab62 commit 798278a
Show file tree
Hide file tree
Showing 540 changed files with 17,559 additions and 1,993 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/hashicorp/terraform-plugin-log v0.9.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0
github.com/hashicorp/terraform-plugin-testing v1.5.1
github.com/infobloxopen/bloxone-go-client v0.0.0-20240423210930-d8559759c1a6
github.com/infobloxopen/bloxone-go-client v0.0.0-20240426160014-afd451b8d00d
golang.org/x/exp v0.0.0-20240314144324-c7f7c6466f7f
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ github.com/huandu/xstrings v1.3.2/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq
github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA=
github.com/imdario/mergo v0.3.15 h1:M8XP7IuFNsqUx6VPK2P9OSmsYsI/YFaGil0uD21V3dM=
github.com/imdario/mergo v0.3.15/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY=
github.com/infobloxopen/bloxone-go-client v0.0.0-20240423210930-d8559759c1a6 h1:H3i7Tfx5z6ZuSlr+HR6Gm0DuE1/M6Nmk7yH5ZImVA8k=
github.com/infobloxopen/bloxone-go-client v0.0.0-20240423210930-d8559759c1a6/go.mod h1:vLxTz6q3NB16FVjsDAyhx3kuQycdmUtbvD5dYUVPjkI=
github.com/infobloxopen/bloxone-go-client v0.0.0-20240426160014-afd451b8d00d h1:p/R6oZNWjNAM2Iy7dXJA0+2c8zkSrw1by4n5a8GsZzA=
github.com/infobloxopen/bloxone-go-client v0.0.0-20240426160014-afd451b8d00d/go.mod h1:vLxTz6q3NB16FVjsDAyhx3kuQycdmUtbvD5dYUVPjkI=
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A=
github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c=
github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=
Expand Down
2 changes: 1 addition & 1 deletion internal/acctest/acctest.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func PreCheck(t *testing.T) {
}

BloxOneClient = bloxoneclient.NewAPIClient(
option.WithClientName("teraform-acceptance-tests"),
option.WithClientName("terraform-acceptance-tests"),
option.WithCSPUrl(cspURL),
option.WithAPIKey(apiKey),
)
Expand Down
2 changes: 1 addition & 1 deletion internal/service/ipam/model_ipamsvc_ip_space.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ var IpamsvcIPSpaceResourceSchemaAttributes = map[string]schema.Attribute{
"abandoned_reclaim_time_v6": types.Int64Value(3600),
"allow_unknown": types.BoolValue(true),
"allow_unknown_v6": types.BoolValue(true),
"echo_client_id": types.BoolValue(false),
"echo_client_id": types.BoolValue(true),
"filters": types.ListNull(types.StringType),
"filters_v6": types.ListNull(types.StringType),
"ignore_client_uid": types.BoolValue(false),
Expand Down
2 changes: 1 addition & 1 deletion internal/service/ipam/model_ipamsvc_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ var IpamsvcServerResourceSchemaAttributes = map[string]schema.Attribute{
"abandoned_reclaim_time_v6": types.Int64Value(3600),
"allow_unknown": types.BoolValue(true),
"allow_unknown_v6": types.BoolValue(true),
"echo_client_id": types.BoolValue(false),
"echo_client_id": types.BoolValue(true),
"filters": types.ListNull(types.StringType),
"filters_v6": types.ListNull(types.StringType),
"ignore_client_uid": types.BoolValue(true),
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 798278a

Please sign in to comment.