Skip to content

Commit

Permalink
- version bump
Browse files Browse the repository at this point in the history
- typo
  • Loading branch information
jamesatwill-okta committed Nov 19, 2024
1 parent f9d36df commit 6c84db7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NAMESPACE=pam
NAME=oktapam
BINARY=terraform-provider-${NAME}
# On version changes, update tag-checks.yml
VERSION=0.4.1
VERSION=0.5.0
OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH)
PLUGIN_DIR=~/.terraform.d/plugins
DOCGEN_RESOURCES_DIR=docgen-resources
Expand Down
2 changes: 1 addition & 1 deletion oktapam/convert/resource_checkout_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func ResourceCheckoutSettingsFromModelToSDK(ctx context.Context, in *ResourceChe
}
}

if !in.ExcludeList.IsNull() && in.ExcludeList.IsUnknown() {
if !in.ExcludeList.IsNull() && !in.ExcludeList.IsUnknown() {
if diags := in.ExcludeList.ElementsAs(ctx, &out.ExcludeList, false); diags.HasError() {
return nil, diags
}
Expand Down

0 comments on commit 6c84db7

Please sign in to comment.