Skip to content

Commit 5b602d5

Browse files
Use namespace in utils_component_config data source (#52)
* Use `namespace` in `utils_component_config` data source * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
1 parent be030f4 commit 5b602d5

20 files changed

Lines changed: 24 additions & 19 deletions

File tree

.github/auto-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ version-resolver:
1717
- 'bugfix'
1818
- 'bug'
1919
- 'hotfix'
20-
- 'no-release'
2120
default: 'minor'
2221

2322
categories:

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,13 +346,13 @@ Available targets:
346346
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
347347
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
348348
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
349-
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.17.24 |
349+
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 1.2.0 |
350350

351351
## Providers
352352

353353
| Name | Version |
354354
|------|---------|
355-
| <a name="provider_utils"></a> [utils](#provider\_utils) | >= 0.17.24 |
355+
| <a name="provider_utils"></a> [utils](#provider\_utils) | >= 1.2.0 |
356356

357357
## Modules
358358

@@ -575,7 +575,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
575575

576576
[![README Footer][readme_footer_img]][readme_footer_link]
577577
[![Beacon][beacon]][website]
578-
578+
<!-- markdownlint-disable -->
579579
[logo]: https://cloudposse.com/logo-300x69.svg
580580
[docs]: https://cpco.io/docs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-yaml-stack-config&utm_content=docs
581581
[website]: https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-yaml-stack-config&utm_content=website
@@ -606,3 +606,4 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
606606
[share_googleplus]: https://plus.google.com/share?url=https://github.com/cloudposse/terraform-yaml-stack-config
607607
[share_email]: mailto:?subject=terraform-yaml-stack-config&body=https://github.com/cloudposse/terraform-yaml-stack-config
608608
[beacon]: https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/terraform-yaml-stack-config?pixel&cs=github&cm=readme&an=terraform-yaml-stack-config
609+
<!-- markdownlint-restore -->

README.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ categories:
5050
- helmfile
5151
- provider
5252
- terraform-provider
53+
- terraform-backend
5354
- deep-merge
5455
- backend
5556
- s3

docs/terraform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
77
| <a name="requirement_external"></a> [external](#requirement\_external) | >= 2.0 |
88
| <a name="requirement_local"></a> [local](#requirement\_local) | >= 1.3 |
9-
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 0.17.24 |
9+
| <a name="requirement_utils"></a> [utils](#requirement\_utils) | >= 1.2.0 |
1010

1111
## Providers
1212

1313
| Name | Version |
1414
|------|---------|
15-
| <a name="provider_utils"></a> [utils](#provider\_utils) | >= 0.17.24 |
15+
| <a name="provider_utils"></a> [utils](#provider\_utils) | >= 1.2.0 |
1616

1717
## Modules
1818

examples/backend/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 0.17.26"
15+
version = ">= 1.2.0"
1616
}
1717
}
1818
}

examples/complete/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 0.17.26"
15+
version = ">= 1.2.0"
1616
}
1717
}
1818
}

examples/remote-state/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ module "remote_state_using_context" {
2121
source = "../../modules/remote-state"
2222

2323
component = "test/test-component-override"
24+
namespace = ""
2425
tenant = "tenant1"
2526
environment = "ue2"
2627
stage = "dev"
@@ -40,6 +41,7 @@ module "remote_state_using_context_ignore_errors" {
4041
# Note that terraform `try()` does not catch errors from providers, so `try(module.remote_state_using_context_ignore_errors.outputs, {})` will not work
4142
ignore_errors = true
4243
component = "test/test-component-override-wrong"
44+
namespace = ""
4345
tenant = "tenant1"
4446
environment = "ue2"
4547
stage = "dev"

examples/remote-state/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 0.17.26"
15+
version = ">= 1.2.0"
1616
}
1717
}
1818
}

examples/spacelift/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 0.17.26"
15+
version = ">= 1.2.0"
1616
}
1717
}
1818
}

examples/stack/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ terraform {
1212
}
1313
utils = {
1414
source = "cloudposse/utils"
15-
version = ">= 0.17.26"
15+
version = ">= 1.2.0"
1616
}
1717
}
1818
}

0 commit comments

Comments
 (0)