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

Bump github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0 #162

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 6, 2024

Bumps github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0.

Release notes

Sourced from github.com/hashicorp/terraform-plugin-testing's releases.

v1.7.0

NOTES:

  • helper/resource: Error messages generated by the testing logic, which were updated for clarity in this release, are not protected by compatibility promises. While testing logic errors are usable in certain scenarios with ErrorCheck and ExpectError functionality, error messaging checks should be based on provider-controlled messaging or when appropriate to use other testing features such as ExpectNonEmptyPlan instead. (#238)
  • Numerical values in the plan are now represented as json.Number, not float64. Custom plan checks relying upon float64 representation may need altering (#248)
  • plancheck: Deprecated ExpectNullOutputValue and ExpectNullOutputValueAtPath. Use ExpectKnownOutputValue and ExpectKnownOutputValueAtPath with knownvalue.Null instead (#275)
  • plancheck: ExpectKnownValue, ExpectKnownOutputValue and ExpectKnownOutputValueAtPath plan checks are considered experimental and may be altered or removed in a subsequent release (#276)
  • statecheck: ExpectKnownValue, ExpectKnownOutputValue and ExpectKnownOutputValueAtPath state checks are considered experimental and may be altered or removed in a subsequent release (#276)
  • knownvalue: The knownvalue package is considered experimental and may be altered or removed in a subsequent release (#276)
  • all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#300)

FEATURES:

  • plancheck: Added ExpectKnownValue plan check, which asserts that a given resource attribute has a defined type, and value (#248)
  • plancheck: Added ExpectKnownOutputValue plan check, which asserts that a given output value has a defined type, and value (#248)
  • plancheck: Added ExpectKnownOutputValueAtPath plan check, which asserts that a given output value at a specified path has a defined type, and value (#248)
  • knownvalue: Introduced new knownvalue package which contains types for working with plan checks and state checks (#248)
  • statecheck: Introduced new statecheck package with interface and built-in state check functionality (#275)
  • statecheck: Added ExpectKnownValue state check, which asserts that a given resource attribute has a defined type, and value (#275)
  • statecheck: Added ExpectKnownOutputValue state check, which asserts that a given output value has a defined type, and value (#275)
  • statecheck: Added ExpectKnownOutputValueAtPath plan check, which asserts that a given output value at a specified path has a defined type, and value (#275)
  • statecheck: Added ExpectSensitiveValue built-in state check, which asserts that a given attribute has a sensitive value (#275)

BUG FIXES:

  • helper/resource: Clarified error messaging from testing failures, especially when using TestStep.PlanOnly: true (#238)
  • helper/resource: Fix detection of provider block declaration in Config, ConfigDirectory, and ConfigFile (#265)
  • helper/resource: Fix detection of terraform block declaration in Config, ConfigDirectory, and ConfigFile (#265)
  • helper/resource: Fixed internal deferred test helpers to properly report file and line information in test failures. (#292)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-testing's changelog.

1.7.0 (March 05, 2024)

NOTES:

  • helper/resource: Error messages generated by the testing logic, which were updated for clarity in this release, are not protected by compatibility promises. While testing logic errors are usable in certain scenarios with ErrorCheck and ExpectError functionality, error messaging checks should be based on provider-controlled messaging or when appropriate to use other testing features such as ExpectNonEmptyPlan instead. (#238)
  • Numerical values in the plan are now represented as json.Number, not float64. Custom plan checks relying upon float64 representation may need altering (#248)
  • plancheck: Deprecated ExpectNullOutputValue and ExpectNullOutputValueAtPath. Use ExpectKnownOutputValue and ExpectKnownOutputValueAtPath with knownvalue.Null instead (#275)
  • plancheck: ExpectKnownValue, ExpectKnownOutputValue and ExpectKnownOutputValueAtPath plan checks are considered experimental and may be altered or removed in a subsequent release (#276)
  • statecheck: ExpectKnownValue, ExpectKnownOutputValue and ExpectKnownOutputValueAtPath state checks are considered experimental and may be altered or removed in a subsequent release (#276)
  • knownvalue: The knownvalue package is considered experimental and may be altered or removed in a subsequent release (#276)
  • all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#300)

FEATURES:

  • plancheck: Added ExpectKnownValue plan check, which asserts that a given resource attribute has a defined type, and value (#248)
  • plancheck: Added ExpectKnownOutputValue plan check, which asserts that a given output value has a defined type, and value (#248)
  • plancheck: Added ExpectKnownOutputValueAtPath plan check, which asserts that a given output value at a specified path has a defined type, and value (#248)
  • knownvalue: Introduced new knownvalue package which contains types for working with plan checks and state checks (#248)
  • statecheck: Introduced new statecheck package with interface and built-in state check functionality (#275)
  • statecheck: Added ExpectKnownValue state check, which asserts that a given resource attribute has a defined type, and value (#275)
  • statecheck: Added ExpectKnownOutputValue state check, which asserts that a given output value has a defined type, and value (#275)
  • statecheck: Added ExpectKnownOutputValueAtPath plan check, which asserts that a given output value at a specified path has a defined type, and value (#275)
  • statecheck: Added ExpectSensitiveValue built-in state check, which asserts that a given attribute has a sensitive value (#275)

BUG FIXES:

  • helper/resource: Clarified error messaging from testing failures, especially when using TestStep.PlanOnly: true (#238)
  • helper/resource: Fix detection of provider block declaration in Config, ConfigDirectory, and ConfigFile (#265)
  • helper/resource: Fix detection of terraform block declaration in Config, ConfigDirectory, and ConfigFile (#265)
  • helper/resource: Fixed internal deferred test helpers to properly report file and line information in test failures. (#292)
Commits
  • beb5594 Update changelog
  • 77f39ff build(deps): Bump golang.org/x/crypto from 0.20.0 to 0.21.0 (#301)
  • 246ec98 Bump Go version to 1.21 (#300)
  • 8d96004 Adding experimental status and example usage for ExpectKnownValue, `ExpectK...
  • cfd6640 build(deps): Bump github.com/hashicorp/hcl/v2 from 2.19.1 to 2.20.0 (#298)
  • d9286db build(deps): Bump github.com/zclconf/go-cty from 1.14.2 to 1.14.3 (#299)
  • e3316c0 build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 (#296)
  • ff585cf Add calls to t.Helper() in defered functions (#293)
  • a8803ed build(deps): Bump golang.org/x/crypto from 0.19.0 to 0.20.0 (#297)
  • 058bbd4 Result of tsccr-helper -log-level=info gha update -latest . (#291)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from a team as a code owner March 6, 2024 19:09
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 6, 2024
Bumps [github.com/hashicorp/terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing) from 1.6.0 to 1.7.0.
- [Release notes](https://github.com/hashicorp/terraform-plugin-testing/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-testing/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-testing@v1.6.0...v1.7.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/terraform-plugin-testing
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/hashicorp/terraform-plugin-testing-1.7.0 branch from 7d3581d to dcebd8d Compare March 12, 2024 20:37
Bumps [github.com/hashicorp/terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing) from 1.6.0 to 1.7.0.
- [Release notes](https://github.com/hashicorp/terraform-plugin-testing/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-testing/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-testing@v1.6.0...v1.7.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/terraform-plugin-testing
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/hashicorp/terraform-plugin-testing-1.7.0 branch from dcebd8d to 0d1e273 Compare March 14, 2024 21:51
@dependabot dependabot bot requested a review from a team as a code owner March 14, 2024 21:51
…ouchbase-capella into dependabot/go_modules/github.com/hashicorp/terraform-plugin-testing-1.7.0
…ugin-testing-1.7.0' of github.com:couchbasecloud/terraform-provider-couchbase-capella into dependabot/go_modules/github.com/hashicorp/terraform-plugin-testing-1.7.0
@Talina06 Talina06 merged commit 80a980e into main Mar 14, 2024
3 of 4 checks passed
@Talina06 Talina06 deleted the dependabot/go_modules/github.com/hashicorp/terraform-plugin-testing-1.7.0 branch March 14, 2024 22:04
Talina06 added a commit that referenced this pull request Mar 19, 2024
Signed-off-by: Talina Shrotriya <[email protected]>

Private Preview Release (#43)

This merge commit adds support for the following resources to the Terraform Provider 🎉

Organizations - Read/Import
Projects - CRUD/Import
Users - CRUD/Import
API Keys - CRUD/Import
Provisioned Clusters - CRUD/Import
Database Credentials - CRUD/Import
Buckets - CRUD/Import

Scope of Work Completed 📅 - Oct 4 2023
Co-Authors ❤️ - @aniket-Kumar-c @matty271828 @nidhi07kumar @Talina06

---------

Co-authored-by: aniket-Kumar-c <[email protected]>
Co-authored-by: matty271828 <[email protected]>
Co-authored-by: nidhi07kumar <[email protected]>
Co-authored-by: Talina06 <[email protected]>

Change miv terraform version in readme to 1.5.2 (#53)

[AV-65208] Update examples folder (#55)

* Update examples folder

* Update examples/certificate/README.md

Co-authored-by: nidhi07kumar <[email protected]>

* Update examples/database_credential/terraform.template.tfvars

Co-authored-by: nidhi07kumar <[email protected]>

* [AV-65208] Add godocs for better understanding of access and usage (#56)

* Add godocs for better understanding of access and usage

* Generate docs

* [AV-65208] Datasources for some resources (#57)

* Add datasources, rename datasources

* Generate docs

* Move some values in examples folder to variables

* update wording in readme

---------

Co-authored-by: nidhi07kumar <[email protected]>

fix added for various resources creation in main branch

removed if match in allowlist and some more fix

updated deleted user

fixed examples

[AV-64572] Code Health - Extract Schema State Validation (#50)

This PR extracts state validation which was duplicated between resource states into functions. Additionally, the validation changes will mean that terraform import strings will now be able to provide resourceIds in any order.

* Extract resource state validation

* Add null strings to validate test cases

* Use validation functions for bucket resource

* Map IDs to specific resource IDs

* Use id attribute for top level resource IDs

* Add unit tests for all schema validates

* Fix ID key/values in cluster validate state

* Remove unused ifmatch from allowlist

* Remove use of depracated cluster data

* Chnage clusterId key to organizationId

* Split import strings on first equals sign

This is needed as bucket IDs are suffixed with ==

* Add comment to explain splitting on first equals

* Change error to ErrInvalidImport

* Use defined errors in validations

Better access example for creating db user (#61)

Also adds a changelog

[AV-65899] PP Bugs - Move project roles into same array (#64)

AV-65056: acceptance test poc for project (#54)

Co-authored-by: Talina Shrotriya <[email protected]>

[AV-65773] Allowlists Datasource - Pagination (#65)

[AV-65452] CREATE bucket with optional fields (#68)

[AV-65771] List APIs - Projects pagination (#72)

[AV-65679] List APIs -  Users, ApiKeys & Clusters Pagination (#73)

AV-66047 Add PR template (#67)

Merging so we can reap benefits from it soon, thanks riju!

[AV-65775] List APIs - Database Credentials & Buckets Pagination (#74)

[AV-66360] PP Bugs - Make resource object optional (#76)

[AV-63471] User Resource - Update user using patch request (#62)

Bump golang.org/x/net from 0.13.0 to 0.17.0 (#51)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump google.golang.org/grpc from 1.57.0 to 1.57.1 (#66)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

[AV-67060] PP Bugs - Pass in sort by parameter  (#83)

[AV-64820] App Services Terraform Provider Feature Branch (#84)

Co-authored-by: Matty Maclean <[email protected]>
Co-authored-by: Talina Shrotriya <[email protected]>
Co-authored-by: matty271828 <[email protected]>
Co-authored-by: Aniket Kumar <[email protected]>
Co-authored-by: aniket-Kumar-c <[email protected]>
Co-authored-by: Priya Rajagopal <[email protected]>

[AV-62009] Code Health - Pass in Success Codes to Client (#80)

[AV-67237] Code Health - Create Acceptance Test Directory (#87)

[AV-65776] App Services List Pagination (#91)

[AV-64825] Feature branch for on-demand backups, scheduled backups and restore (#92)

Co-authored-by: aniket-Kumar-c <[email protected]>
Co-authored-by: Aniket Kumar <[email protected]>

Backup schedule enhancement and readme updates (#94)

Co-authored-by: nidhi07kumar <[email protected]>
Co-authored-by: Nidhi Kumar <[email protected]>

[AV-66756] Code Health - Extract API error handling (#78)

[AV-67129] Code Health - Upgrade go to version 1.21 (#97)

cluster resources acceptance test added and bugs resolved (#77)

Signed-off-by: Aniket Kumar <[email protected]>
Co-authored-by: Talina Shrotriya <[email protected]>

[AV-67085] Bug Fixes - User creation fails on role creation (#102)

[AV-65757] adding organization data source acceptance tests (#96)

Co-authored-by: matty271828 <[email protected]>

AV-68277 Create LICENSE (#103)

[AV-65764] allowlist_acceptance_tests (#95)

[AV-68063] Create Backup & DB Creds should not required optional fields (#101)

[AV-67976] CREATE USER should not require optional fields (#99)

[AV-65762]Fix allowlist acceptance tests (#107)

[AV-65452] Bucket Update: Handle optional fields (#75)

[AV-67686] README for backup schedule  (#100)

[AV-65766] Acceptance Tests AppServices  (#98)

[AV 65760] additional project acceptance tests (#110)

[AV-68397] API Key & Allowlist creation does not need optional fields (#104)

[AV-66942] DB Creds | App Services | Backup Schedule Update Optional Fields (#106)

Added return where it is missing (#109)

Generate changelog, add a Makefile and Dependabot support (#105)

[AV-66663] Bug Fixes - Reject organizationOwner with populated resources (#114)

Co-authored-by: Talina Shrotriya <[email protected]>

require replace added for non editable fields (#116)

[AV-65601] DB Creds changes on UI not picked up in terraform db  (#112)

Co-authored-by: Talina Shrotriya <[email protected]>

hanging resource issue is fixed for cluster and added retry logic (#108)

[AV-67459] Save expiry time from plan always for allowlist (#117)

cluster-acceptance-test-fix (#118)

[AV-68914] Bug - Move type outside of generic function (#120)

[AV 65759] fix acceptance tests apikeys (#121)

[AV-65758] Acceptance Tests - User Resource (#93)

Added check for all resource whether the passed attribute is trimmed or not (#122)

[AV-65763] Acceptance Tests - Database Credentials (#89)

Co-authored-by: nishant-tripathy <[email protected]>

[AV-64396] Security tests for the capella terraform (#115)

[AV-68064] examples for list backups (#123)

[AV-69062] Update Examples (#124)

[AV-69062] Update examples (#125)

[Av 65766] accpetance test appservices (#119)

Co-authored-by: aniket-Kumar-c <[email protected]>
Co-authored-by: matty271828 <[email protected]>

[AV 65761] fix cluster accpetance tests (#126)

Co-authored-by: aniket-Kumar-c <[email protected]>
Co-authored-by: matty271828 <[email protected]>

AV-69070: configuration type is made optional (#127)

Docs draft - complete, with all feedback added, and ready to merge. (#111)

Co-authored-by: Priya Rajagopal <[email protected]>

[AV-69070] Update examples and default pagination limit (#128)

Co-authored-by: Talina Shrotriya <[email protected]>

Update Docs (#130)

Update Docs (#130)

Update index.md (#131)

Add github actions to release binaries

Bump github.com/google/uuid from 1.4.0 to 1.5.0 (#132)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

[AV-69447] Updated Readme for IMPORT (#134)

Documentation format tweaks (#135)

Bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#136)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

[AV-69583] Added CONTRIBUTING.md (#137)

Bump github.com/cloudflare/circl from 1.3.3 to 1.3.7 (#139)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump github.com/hashicorp/terraform-plugin-go from 0.19.1 to 0.20.0 (#138)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump github.com/couchbase/tools-common/functional from 1.1.1 to 1.2.0 (#140)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

[AV-70854] Fixed optional fields during cluster creation | Azure & GCP (#141)

Fix the cluster version as 7.1 is not supported (#144)

Fix jenkins failures cluster version (#146)

Bump github.com/hashicorp/terraform-plugin-framework from 1.4.2 to 1.5.0 (#142)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

fix format issue for regex check (#147)

Bump github.com/google/uuid from 1.5.0 to 1.6.0 (#145)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

[AV-71279] Support autoexpansion for Azure cluster resource (#143)

Bump github.com/hashicorp/terraform-plugin-go from 0.20.0 to 0.21.0 (#148)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

AV-72750 Reformat contributing.md (#150)

Adding Azure storage auto expansion accpetance tests (#149)

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#160)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

AV-70846 Import sample buckets (#156)

Update CODEOWNERS (#168)

Revert "AV-70846 Import sample buckets" (#169)

AV-74846 Updare codeowners to require both teams reviews (#170)

Bump github.com/hashicorp/terraform-plugin-framework from 1.5.0 to 1.6.1 (#161)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump google.golang.org/protobuf from 1.32.0 to 1.33.0

Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0.

---
updated-dependencies:
- dependency-name: google.golang.org/protobuf
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

add request and response structs

add schema

add datasource

add resources

set new datasource and resource in provider

fix schema format issue

refactor datasources

remove require replace from schema

refactor

fix slice updates

use schema object in set function

update doc string

add api response

add schema file

add datasource

add datasource to provider

add example

add example

add api request and response structs

add schema

add datasource

add datasource to provider

fix schema

add resource

fix validation

update struct tags and schema

add godocs

change variable name

update typename

add validation logic to create function

update Create docstring

fix error handling

change list to set

remove optional attribute

add warning

change to set in resources schema

formatting

fix lint errors

update example

formatting

fix import formatting

update typename

update godoc

change list to set

update example

fix import format

update typename

update godocs

change list to set

update error messages

refactor getAuditLogExport

refactor refreshAuditLogExport

remove requiresReplace

add example

format example

fix lint errors

update example

update example with setting disabled user

update example dir

example

Bump github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0 (#162)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Talina Shrotriya <[email protected]>

Bump github.com/hashicorp/terraform-plugin-go from 0.21.0 to 0.22.1 (#165)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

change schema

update example

change http status code due to AV-74746
Talina06 pushed a commit that referenced this pull request Mar 19, 2024
add schema

add datasource

add resources

set new datasource and resource in provider

fix schema format issue

refactor datasources

remove require replace from schema

refactor

fix slice updates

use schema object in set function

update doc string

add api response

add schema file

add datasource

add datasource to provider

add example

add example

add api request and response structs

add schema

add datasource

add datasource to provider

fix schema

add resource

fix validation

update struct tags and schema

add godocs

change variable name

update typename

add validation logic to create function

update Create docstring

fix error handling

change list to set

remove optional attribute

add warning

change to set in resources schema

formatting

fix lint errors

update example

formatting

fix import formatting

update typename

update godoc

change list to set

update example

fix import format

update typename

update godocs

change list to set

update error messages

refactor getAuditLogExport

refactor refreshAuditLogExport

remove requiresReplace

add example

format example

fix lint errors

update example

update example with setting disabled user

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#160)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

AV-70846 Import sample buckets (#156)

Update CODEOWNERS (#168)

update example dir

example

Revert "AV-70846 Import sample buckets" (#169)

AV-74846 Updare codeowners to require both teams reviews (#170)

Bump github.com/hashicorp/terraform-plugin-framework from 1.5.0 to 1.6.1 (#161)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Bump github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0 (#162)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Talina Shrotriya <[email protected]>

Bump github.com/hashicorp/terraform-plugin-go from 0.21.0 to 0.22.1 (#165)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

change schema

update example

change http status code due to AV-74746

AV-74878 Updating docstring (#173)

AV-74786 Updating the custom binary override pathing (#172)
Lagher0 added a commit that referenced this pull request Mar 22, 2024
…mple_data_set_apis

* main:
  AV-74366 Add collection resource (#163)
  AV-73296 Add scope resource (#153)
  AV-74786 Updating the custom binary override pathing (#172)
  AV-74878 Updating docstring (#173)
  Bump github.com/hashicorp/terraform-plugin-go from 0.21.0 to 0.22.1 (#165)
  Bump github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0 (#162)
  Bump github.com/hashicorp/terraform-plugin-framework from 1.5.0 to 1.6.1 (#161)
  AV-74846 Updare codeowners to require both teams reviews (#170)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant