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

feat: add aws_verifiedpermissions_policy #35413

Merged
merged 16 commits into from Apr 19, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/35413.txt
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_verifiedpermissions_policy
```
1 change: 1 addition & 0 deletions go.mod
Expand Up @@ -169,6 +169,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/xray v1.25.4
github.com/aws/smithy-go v1.20.2
github.com/beevik/etree v1.3.0
github.com/cedar-policy/cedar-go v0.0.0-20240318205125-470d1fe984bb
github.com/davecgh/go-spew v1.1.1
github.com/gertd/go-pluralize v0.2.1
github.com/google/go-cmp v0.6.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Expand Up @@ -377,6 +377,8 @@ github.com/boombuler/barcode v1.0.1 h1:NDBbPmhS+EqABEs5Kg3n/5ZNjy73Pz7SIV+KCeqyX
github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8=
github.com/bufbuild/protocompile v0.6.0 h1:Uu7WiSQ6Yj9DbkdnOe7U4mNKp58y9WDMKDn28/ZlunY=
github.com/bufbuild/protocompile v0.6.0/go.mod h1:YNP35qEYoYGme7QMtz5SBCoN4kL4g12jTtjuzRNdjpE=
github.com/cedar-policy/cedar-go v0.0.0-20240318205125-470d1fe984bb h1:WaOlZeLno47GR/TvgUNCqB6itqhT7kMLsUwlIjxWW4Y=
github.com/cedar-policy/cedar-go v0.0.0-20240318205125-470d1fe984bb/go.mod h1:qZuNWmkhx7pxkYvgmNPcBE4NtfGBF6nmI+bjecaQp14=
github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU=
github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
Expand Down
2 changes: 2 additions & 0 deletions internal/service/verifiedpermissions/exports_test.go
Expand Up @@ -5,10 +5,12 @@ package verifiedpermissions

// Exports for use in tests only.
var (
ResourcePolicy = newResourcePolicy
ResourcePolicyStore = newResourcePolicyStore
ResourcePolicyTemplate = newResourcePolicyTemplate
ResourceSchema = newResourceSchema

FindPolicyByID = findPolicyByID
FindPolicyStoreByID = findPolicyStoreByID
FindPolicyTemplateByID = findPolicyTemplateByID
FindSchemaByPolicyStoreID = findSchemaByPolicyStoreID
Expand Down