Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark resource and group description as computed #14

Merged
merged 3 commits into from
Feb 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v1.0.1

BUG FIXES:
- prevents resource / groups created without description to have an immediate diff from default description generation

## v1.0.0

BREAKING CHANGES:
Expand Down
1 change: 1 addition & 0 deletions opal/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ func resourceGroup() *schema.Resource {
Description: "The description of the group.",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"group_type": {
Description: "The type of the group, i.e. GIT_HUB_TEAM.",
Expand Down
1 change: 1 addition & 0 deletions opal/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func resourceResource() *schema.Resource {
Description: "The description of the resource.",
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"resource_type": {
Description: "The type of the resource, i.e. AWS_EC2_INSTANCE.",
Expand Down