Skip to content

Commit 9688e5a

Browse files
nitrocodecloudpossebotNuru
authored
Upgrade dynamodb label to 0.24.1 (#93)
* Upgrade dynamodb label to 0.24.1 * Auto Format * Update main.tf Co-authored-by: Nuru <[email protected]> * Update test Co-authored-by: cloudpossebot <[email protected]> Co-authored-by: Nuru <[email protected]>
1 parent db4c0fc commit 9688e5a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Available targets:
264264

265265
| Name | Source | Version |
266266
|------|--------|---------|
267-
| <a name="module_dynamodb_table_label"></a> [dynamodb\_table\_label](#module\_dynamodb\_table\_label) | cloudposse/label/null | 0.22.0 |
267+
| <a name="module_dynamodb_table_label"></a> [dynamodb\_table\_label](#module\_dynamodb\_table\_label) | cloudposse/label/null | 0.24.1 |
268268
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.24.1 |
269269

270270
## Resources

docs/terraform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
| Name | Source | Version |
2121
|------|--------|---------|
22-
| <a name="module_dynamodb_table_label"></a> [dynamodb\_table\_label](#module\_dynamodb\_table\_label) | cloudposse/label/null | 0.22.0 |
22+
| <a name="module_dynamodb_table_label"></a> [dynamodb\_table\_label](#module\_dynamodb\_table\_label) | cloudposse/label/null | 0.24.1 |
2323
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.24.1 |
2424

2525
## Resources

main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ resource "aws_s3_bucket_public_access_block" "default" {
193193

194194
module "dynamodb_table_label" {
195195
source = "cloudposse/label/null"
196-
version = "0.22.0"
197-
attributes = compact(concat(var.attributes, ["lock"]))
196+
version = "0.24.1"
197+
attributes = ["lock"]
198198
context = module.this.context
199199
enabled = local.dynamodb_enabled
200200
}

test/src/examples_complete_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func TestExamplesComplete(t *testing.T) {
4444

4545
// Run `terraform output` to get the value of an output variable
4646
dynamodbTableName := terraform.Output(t, terraformOptions, "dynamodb_table_name")
47-
expectedDynamodbTableName := "eg-test-terraform-tfstate-backend-lock-" + randId
47+
expectedDynamodbTableName := "eg-test-terraform-tfstate-backend-" + randId + "-lock"
4848
// Verify we're getting back the outputs we expect
4949
assert.Equal(t, expectedDynamodbTableName, dynamodbTableName)
5050
}

0 commit comments

Comments
 (0)