terraform-plugin-sdk
terraform-plugin-sdk copied to clipboard
Terraform Plugin SDK enables building plugins (providers) to manage any service providers or custom in-house solutions
### SDK version 2.5.0 (but looks to exist in head as of this issue creation) ### Relevant provider source code See https://github.com/hashicorp/terraform-provider-google/blob/master/google/resource_dns_resource_dns_record_set.go#L91. ### Terraform Configuration Files ```hcl resource "google_dns_record_set" "resource-recordset"...
### SDK version ``` v2.33.0 ``` ### Use-cases For over a year now, provider acceptance testing functionality has been forked into the separate [terraform-plugin-testing Go module](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-testing) with its own [website...
### SDK version ``` v2.3.0 ``` ### Use-cases The following schema for a root `id` attribute is currently "valid" but does not work in all cases, especially in more recent...
### SDK version ``` ... github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 ``` ### Use-cases In case when the retry func faces an unexpected resource status it returns `unexpected state 'ACTIVE', wanted target 'DELETED'. last...
Bumping GitHub Actions version to latest TSCCR release. * changes in `.github/workflows/ci-changie.yml` - bump `actions/checkout` from `v4.2.0` to `v4.2.1` ([release notes](https://github.com/actions/checkout/releases/tag/v4.2.1)) * changes in `.github/workflows/ci-github-actions.yml` - bump `actions/checkout` from `v4.2.0`...
# 内容 - Added test for StringLenBetween
testing_new_config.go It is possible for a testStep to be both empty and non-empty plan post apply
### SDK version Latest I'm implementing a switchover, where a primary becomes the replica, and the replica becomes the primary in one apply. This causes some issues in testing. After...
### SDK version ``` github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 ``` ### Use-cases To help improve the test coverage, I've been directly calling the CRUD operations on resources using `resource.TestResourceData()`. The issue with using...
### SDK version ``` ... ``` ### Use-cases When trying to find providers, modules, etc, it is often necessary to wade through a large quantity of junk, including: - Forks...