Skip to content

Commit d87a0fe

Browse files
Add comments for UDR migration (#445)
1 parent 7e59fd9 commit d87a0fe

38 files changed

+114
-0
lines changed

website/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Terraform Documentation
22

3+
> [!IMPORTANT]
4+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
5+
36
This directory contains the portions of [the Terraform website][terraform.io] that pertain to the Terraform Plugin Testing.
47

58
The files in this directory are intended to be used in conjunction with

website/docs/plugin/testing/acceptance-tests/configuration.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ description: >-
55
in conjunction with Terraform configuration.
66
---
77

8+
> [!IMPORTANT]
9+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
10+
811
# Terraform Configuration
912

1013
The configuration used during the execution of an acceptance test can be specified at the [TestStep](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-testing/helper/resource#TestStep) level by populating one of the following mutually exclusive fields:

website/docs/plugin/testing/acceptance-tests/ephemeral-resources.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Guidance on how to test ephemeral resources and data.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
<Highlight>
811

912
Ephemeral resource support is in technical preview and offered without compatibility promises until Terraform 1.10 is generally available.

website/docs/plugin/testing/acceptance-tests/index.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ description: |-
55
imitate applying one or more configuration files.
66
---
77

8+
> [!IMPORTANT]
9+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
10+
811
# Acceptance Tests
912

1013
In order to deliver on our promise to be safe and predictable, we need to be

website/docs/plugin/testing/acceptance-tests/known-value-checks/bool.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Bool Value Checks for use with Plan Checks.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
# Bool Known Value Checks
811

912
The known value checks that are available for bool values are:

website/docs/plugin/testing/acceptance-tests/known-value-checks/custom.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Custom Value Checks for use with Plan Checks.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
# Custom Known Value Checks
811

912
Custom known value checks can be created by implementing the [knownvalue.Check](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-testing/knownvalue#Check) interface.

website/docs/plugin/testing/acceptance-tests/known-value-checks/float32.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Float32 Value Checks for use with Plan Checks.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
# Float32 Known Value Checks
811

912
The known value checks that are available for float32 values are:

website/docs/plugin/testing/acceptance-tests/known-value-checks/float64.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Float64 Value Checks for use with Plan Checks.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
# Float64 Known Value Checks
811

912
The known value checks that are available for float64 values are:

website/docs/plugin/testing/acceptance-tests/known-value-checks/index.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ description: >-
55
Known values define an expected type, and value for a resource attribute, or output value in a Terraform plan or state for use in Plan Checks or State Checks.
66
---
77

8+
> [!IMPORTANT]
9+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
10+
811
# Known Value Checks
912

1013
Known Value Checks are for use in conjunction with [Plan Checks](/terraform/plugin/testing/acceptance-tests/plan-checks), and [State Checks](/terraform/plugin/testing/acceptance-tests/state-checks) which leverage the [terraform-json](https://pkg.go.dev/github.com/hashicorp/terraform-json) representation of a Terraform plan.

website/docs/plugin/testing/acceptance-tests/known-value-checks/int32.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: >-
44
Int32 Value Checks for use with Plan Checks.
55
---
66

7+
> [!IMPORTANT]
8+
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
9+
710
# Int32 Known Value Checks
811

912
The known value checks that are available for int32 values are:

0 commit comments

Comments
 (0)