Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Enhancements
* Adds BETA support for listing `TFPolicyEvaluationOutcome`, which is EXPERIMENTAL, SUBJECT TO CHANGE, and may not be available to all users by @subhro-acharjee-1 [#1313](https://github.com/hashicorp/go-tfe/pull/1313)
* Add Infragraph entitlements (the `infragraph` and `infragraph-with-nrtu` attributes) to `Entitlements` by @jadhavpoonam [#1351](https://github.com/hashicorp/go-tfe/pull/1351)

# v1.107.0

Expand Down
2 changes: 2 additions & 0 deletions organization.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ type Entitlements struct {
VCSIntegrations bool `jsonapi:"attr,vcs-integrations"`
WaypointActions bool `jsonapi:"attr,waypoint-actions"`
WaypointTemplatesAndAddons bool `jsonapi:"attr,waypoint-templates-and-addons"`
Infragraph bool `jsonapi:"attr,infragraph"`
InfragraphWithNRTU bool `jsonapi:"attr,infragraph-with-nrtu"`
Comment thread
JadhavPoonam marked this conversation as resolved.
Outdated
}

// RunQueue represents the current run queue of an organization.
Expand Down
2 changes: 2 additions & 0 deletions organization_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,8 @@ func TestOrganizationsReadEntitlements(t *testing.T) {
assert.True(t, entitlements.VCSIntegrations)
assert.False(t, entitlements.WaypointActions)
assert.True(t, entitlements.WaypointTemplatesAndAddons)
assert.True(t, entitlements.Infragraph)
assert.False(t, entitlements.InfragraphWithNRTU)
})

t.Run("with invalid name", func(t *testing.T) {
Expand Down
Loading