summaryrefslogtreecommitdiff
path: root/go.sum
AgeCommit message (Collapse)Author
2023-02-23Bump golang.org/x/text from 0.3.7 to 0.3.8dependabot[bot]
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.3.8. - [Release notes](https://github.com/golang/text/releases) - [Commits](https://github.com/golang/text/compare/v0.3.7...v0.3.8) --- updated-dependencies: - dependency-name: golang.org/x/text dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
2022-09-21bump terraform-sdk to v2.23.0xuzhang3
2022-05-26merge upstreamZooopx
2022-05-26update yaml from v2 to v3Zooopx
2022-05-05bump terraform-sdk to v2.11.0Zooopx
2022-03-08fix create new variable group not authorized error: downgrade variable group ↵xuzhang3
API from v6 to v5
2022-02-18update to terraform SDK v2xuzhang3
2022-01-24upgrade to Terraform SDK v2xuzhang3
2021-12-03Initial check in of v6 API changesThomas Meckel
2021-08-13bump terraform-plugin-sdk from v1.7.12 to v2.7.0xuzhang3
2021-05-10terraform-sdk 1.17.2xuzhang3
2021-05-08remove github.com/hashicorp/terraformxuzhang3
2021-03-22* bump go from v1.14 to v1.16xuzhang3
* support apply m1
2020-11-25bump terraform-plugin-sdk to v1.13.1xuzhang3
2020-07-14fix accidential commitsCizer Pereira
2020-07-14add acceptence test, fix accidential commitsCizer Pereira
2020-07-10feat: add branch policy for autoreviewersCizer Pereira
Signed-off-by: Cizer Pereira <mail@cizer.dev>
2020-07-01Integrated into new masterThomas Meckel
2020-07-01Upgraded terraform-plugin-sdk to v1.10.0 in go.mod to import missing ↵Thomas Meckel
RequiredWith contrained
2020-07-01First working version of azuredevops_project_permissionsThomas Meckel
2020-06-18update provider url pathChris Griggs
2020-06-01Add KeyVault reference feature for VariableGroups Resource (#282)Eliise
* Add required env vars and flags for vscode testing * Add key vault var group test * Add key vault variable groups * Add conflicts with * Update go-sdk version to v1.0.0-b3 * Fix build errors * Fix unit test * Split acceptance and unit tests * Fix linter issues * Remove comment * Fixing issue with HCL used in acceptance tests * Add make install * Remove incorrect variable tests * Fix tests * Fix integration test * Stop using decode * Remove redudant conflicts * inline declaration * Refactor * Refactor into method * Refactor error messages * Update docs * Refactor variable groups * Refactor tests Co-authored-by: Nick Iodice <niiodice@microsoft.com>
2020-05-25Implement min reviewer branch policy + build validation + fix docs links (#326)Nicholas M. Iodice
* Implement Min Reviewer Branch Policy This change also does the following: - Implement core components that can be shared across other policies - Fix some documentation issues * Adding support for build validation policy * making acc tests more consistent' * Update azuredevops/crud/branchpolicy/crud_branch_policy.go Co-authored-by: xuzhang3 <57888764+xuzhang3@users.noreply.github.com> * Update azuredevops/resource_branchpolicy_acceptance_test.go Co-authored-by: xuzhang3 <57888764+xuzhang3@users.noreply.github.com> * formatting fix * docs fix Co-authored-by: xuzhang3 <57888764+xuzhang3@users.noreply.github.com>
2020-05-19Updated azure-devops-go-api to v1.0.0-b2 (#327)Thomas Meckel
Co-authored-by: Thomas Meckel <tmeckel@users.noreply.github.com>
2020-05-08WIP: Kubernetes service endpoint (#236)mgateva
* Added serviceendpoint of type 'kubernetes'. * added further input validation to kubernetes serviceendpoint. * Made argument ca_cert mandatory * Updated documentation and examples. Reformatting of code. * add error to return-parameters of expand-function in resource_serviceendpoint_bitbucket.go to comply with signature defined by expandFunc-interface. * Resolved code smells detected by static code analysis. * Various fixes to acc-tests of kubernetes-sc. * Fixing source code with gofmt * Extracted common strings into const * Removed nested structure attr from acc tests, as there is no way to get the attrkey in a flat structure * Formatting provider.go * Updated go mod * Reworked schema and flatten for secret values * Added test data for unit tests * Adapted to new method signature Co-authored-by: saidst <stephen.said@henkel.com> Co-authored-by: Nicholas M. Iodice <niiodice@microsoft.com>
2020-05-06Implement Automatic AzureRM Service Connection (#277)Kirill Logachev
* Add automatic option * Save * Fix tests * Add acc tests * Change case * Update docs * Add tests * Remove secret hash * Format * Fix acceptance test * Fix tests * Lint * Return hash * Lint * Add missing tests * Feedback Co-authored-by: Nicholas M. Iodice <niiodice@microsoft.com>
2020-05-06WIP: Authorization of resources on project-level (#235)saidst
* added resource authorization for service endpoints. upgraded to terraform-plugin-sdk-1.6.0. * Updated documentation and example. * Removed excessive reference to github.com/Azure/go-autorest/autorest/to from azuredevops/resource_resource_authorization.go * Removed excessive reference to github.com/Azure/go-autorest/autorest/to from azuredevops/resource_resource_authorization_test.go * tidy up go.mod after cherry-picking and rebasing. * externalize error strings to reduce redundancy. * fix linting issues. Co-authored-by: Thomas Meckel <tmeckel@users.noreply.github.com>
2020-04-29Added data source for project (#284)Nicholas M. Iodice
* Added data source for project * Simplified
2020-04-16Removing all occurences of string equality checks using == and replacing ↵Nicholas M. Iodice
with strings.EqualFold() (#269)
2020-04-06New Data Source/Resource azuredevops_user (#129)Andre Bindewald
* new ds 'azuredevops_user' * Added azuredevops\data_user_test.go * Fixed compile errors caused by rebasing to master * Revamped azuredevops/data_user.go * Corrected function call in azuredevops\provider.go after rebase * Added azuredevops_users to list of expected DataSources in azuredevops\provider_test.go * First working version * Added AllowNil to AttributeComparison in azuredevops\data_user.go * Streamlined reflection code in azuredevops\data_user.go and ensure consistent function names * Now using go-linq in azuredevops/data_user.go * Using plural form now for data source users because it might return more than one object * Implemented unit tests for data source users * Added documentation for azuredevops_users data source * Updated references to terraform-plugin-sdk, terraform and azure-devops-go-api in go.mod (go.sum) * Updated vendor folder with ahmetb/go-linq * Made scripts/gofmtcheck.sh executable Co-authored-by: Thomas Meckel <tmeckel@users.noreply.github.com>
2020-03-31F/onboard (#252)xuzhang3
Changes requested in the following issues: Issue Number: #241 #243 #244 #245 #246 #247 #248
2020-02-03Implementation of AzureRM End point (service connection) (#225)Mikael
* Add AzureRM service endpoint implementation Co-authored-by: Nicholas M. Iodice <niiodice@microsoft.com>
2020-01-21Import serviceendpoint GitHub (#211)Kalarrs Topham
Add functionality to import GitHub serviceendpoint
2019-12-12Fix bug remove user and some improvements on membership (#212)Mikael
* Fix bug to remove user in group #188 * group_membership: add sleep 10 sec at the end of creation/update fix : return read method at the end of the create/update method improve: update sample terraform code for user and membership with for_each
2019-11-18Implementing Import for variable group (#204)Mikael
* Implementing Import for variable group * Fix aggregatedClient to config.AggregatedClient * Fix Variable Group Acc tests for get the ID to import * add .idea to gitignore
2019-11-07Miperel/lint (#199)michaelperel
Added golint
2019-10-30Implement group membership CRUD and unit/acceptance testing (#163)Nicholas M. Iodice
Implement group membership CRUD and unit/acceptance testing, along with documentation for client facing docs
2019-10-28Add user entitlement resource (#154)Tsuyoshi Ushio
merge!
2019-10-22Implemented data source for azdo groups (#131)Nicholas M. Iodice
* Implemented data source for azdo groups * Uncommented group in aspirational TF
2019-10-21Introduce read, create, delete support for Azure Git Repos (#123)Keith Rome
* Adding update feature * Adding ForceNew for non-update parameters * remove unnecessary debug line * Implement read functionality for repos * Adding delete feature * Implemented Create op * Add AzDO repo type to build def resource * Corrected aspirational template * Adding unit tests for delete; wiring up delete flow * Commented vars that aren't actually used yet * Remove default_branch for now * Build Def resource only supports github right now * Implement acceptance tests for azuredevops_azure_git_repository resource Co-authored-by: Keith Rome <keith.rome@gmail.com> Co-authored-by: Tsuyoshi Ushio <ushio@simplearchitect.com> * Finish acceptance tests. Validated a working create/read/delete flow Co-authored-by: Keith Rome <keith.rome@gmail.com> Co-authored-by: Tsuyoshi Ushio <ushio@simplearchitect.com> * Adding tests for flatten & expand; Removing unnecessary argument params * updated comment for expand function * Re-migrate to SDK * Removed extraneous comment from code file * Implement missing unit test * ENV Var for delaying execution after creating a new project * Adding documentation of config. values * Update azuredevops/resource_project.go Co-Authored-By: Nicholas M. Iodice <niiodice@microsoft.com>
2019-10-16This change migrates to the newly released terraform plugin SDK (#115)Nicholas M. Iodice
As per the HashiCorp recommendation https://www.terraform.io/docs/extend/plugin-sdk.html
2019-10-16Define new resource for AzureDO Git repositories (#118)Keith Rome
* Implemented resource schema and stubs * Define element type of list property in schema * Added git repo stanza to example tf deployment * Assign id so that APPLY will succeed even though no CRUD ops have been implemented yet * stubs for unit and acceptance tests * Clean roundtrip serialize/deserialize * removed stubs for irrelevant tests * examples were restructured
2019-10-16This change migrates to a new version of the AzDO SDK that uses interfaces. ↵Nicholas M. Iodice
(#117) * This change migrates to a new version of the SDK that uses interfaces. This change avoids the need to create new interfaces by hand whenver we need to test additional APIs in the provider. This includes the following: - Update documentation for generating mocks - Remove `mock_config.go` file that has all the generated mocks - Remove the hand-created interfaces from `config.go` - Update `./scripts/generate-mocks.sh` so that it discovers the azdo GO SDKs pulled into the project, and programatically generate mocks for those SDKs
2019-10-04Implemented integ tests for project create/delete; Implemented project ↵Nicholas M. Iodice
delete (#69) * Implemented integration tests for project, as well as project::delete * Adding documentation about how to extend acceptance tests
2019-10-03Restructured and repackaged to more closely match terraform-provider-azuread ↵Megan Meyer
(#63) * Restructured and repackaged to more closely match terraform-provider-azuread * Fixed azdo_config references