Skip to content

Commit 8670d50

Browse files
committed
docs(provider): Split the examples for env_ensure into separate code blocks.
1 parent a5b1aab commit 8670d50

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

docs/data-sources/env_ensure.md

-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ Maps to the [`corefunc.EnvEnsure()`](https://pkg.go.dev/github.com/northwood-lab
3434
### `AWS_DEFAULT_REGION` is defined (no error)
3535

3636
```terraform
37-
#-------------------------------------------------------------------------
3837
# AWS_DEFAULT_REGION="us-east-1"
3938
4039
data "corefunc_env_ensure" "aws_default_region" {
@@ -53,7 +52,6 @@ output "aws_default_region_value" {
5352
### `AWS_PAGER` is set to an empty string (error)
5453

5554
```terraform
56-
#-------------------------------------------------------------------------
5755
# AWS_PAGER=""
5856
5957
data "corefunc_env_ensure" "aws_pager" {
@@ -71,7 +69,6 @@ output "aws_pager_value" {
7169
### `AWS_VAULT` is defined, but does not match pattern (error)
7270

7371
```terraform
74-
#-------------------------------------------------------------------------
7572
# AWS_VAULT="dev"
7673
7774
data "corefunc_env_ensure" "aws_vault" {

examples/data-sources/corefunc_env_ensure/data-source.AWS_DEFAULT_REGION.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#-------------------------------------------------------------------------
21
# AWS_DEFAULT_REGION="us-east-1"
32

43
data "corefunc_env_ensure" "aws_default_region" {

examples/data-sources/corefunc_env_ensure/data-source.AWS_PAGER.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#-------------------------------------------------------------------------
21
# AWS_PAGER=""
32

43
data "corefunc_env_ensure" "aws_pager" {

examples/data-sources/corefunc_env_ensure/data-source.AWS_VAULT.tf

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#-------------------------------------------------------------------------
21
# AWS_VAULT="dev"
32

43
data "corefunc_env_ensure" "aws_vault" {

0 commit comments

Comments
 (0)