Skip to content

Commit a8a2da9

Browse files
renovate[bot]renovate-botcloudpossebotnitrocode
authored
Update Terraform cloudposse/iam-system-user/aws to v0.23.0 (#40)
* Update Terraform cloudposse/iam-system-user/aws to v0.23.0 * Auto Format * Update main.tf * Create versions.tf Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> Co-authored-by: nitrocode <nitrocode@users.noreply.github.com>
1 parent 7f580df commit a8a2da9

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Available targets:
149149

150150
| Name | Source | Version |
151151
|------|--------|---------|
152-
| <a name="module_s3_user"></a> [s3\_user](#module\_s3\_user) | cloudposse/iam-system-user/aws | 0.22.5 |
152+
| <a name="module_s3_user"></a> [s3\_user](#module\_s3\_user) | cloudposse/iam-system-user/aws | 0.23.0 |
153153
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
154154

155155
## Resources

docs/terraform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
| Name | Source | Version |
1818
|------|--------|---------|
19-
| <a name="module_s3_user"></a> [s3\_user](#module\_s3\_user) | cloudposse/iam-system-user/aws | 0.22.5 |
19+
| <a name="module_s3_user"></a> [s3\_user](#module\_s3\_user) | cloudposse/iam-system-user/aws | 0.23.0 |
2020
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
2121

2222
## Resources

examples/complete/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ provider "aws" {
22
region = var.region
33
}
44

5+
provider "awsutils" {
6+
region = var.region
7+
}
8+
59
module "s3_user" {
610
source = "../../"
711
force_destroy = true

examples/complete/versions.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = ">= 3.0"
6+
}
7+
awsutils = {
8+
source = "cloudposse/awsutils"
9+
version = ">= 0.11.0"
10+
}
11+
}
12+
}

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data "aws_iam_policy_document" "default" {
1010

1111
module "s3_user" {
1212
source = "cloudposse/iam-system-user/aws"
13-
version = "0.22.5"
13+
version = "0.23.0"
1414
force_destroy = var.force_destroy
1515
path = var.path
1616

0 commit comments

Comments
 (0)