Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

bug: AWS dynamodb.DescribeContinuousBackups => 400 (UnknownOperationException) #6909

@futugyou

Description

@futugyou

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

resource "aws_dynamodb_table" "terraform_locks" {
    name = "terraform_locks_s"
    billing_mode = "PAY_PER_REQUEST"
    hash_key = "LockID"

    attribute {
            name = "LockID"
            type = "S"
        }
}

Terraform v1.2.8
provider registry.terraform.io/hashicorp/aws v4.29.0

i user this tf file to create dynamodb table.
tflocal apply -auto-approve
command executes normally, but this is an error in localstack log 'AWS dynamodb.DescribeContinuousBackups => 400 (UnknownOperationException)'.
and when i use awslocal dynamodb list-tables command, and I did not find any tables.

Expected Behavior

i can not find the table in local dynamodb.
LocalStack log

2022-09-22T01:49:08.433  INFO --- [   asgi_gw_1] localstack.request.aws     : AWS dynamodb.CreateTable => 200
2022-09-22T01:49:08.798  INFO --- [   asgi_gw_0] localstack.request.aws     : AWS dynamodb.DescribeTable => 200
2022-09-22T01:49:09.149  INFO --- [   asgi_gw_1] localstack.request.aws     : AWS dynamodb.DescribeTable => 200
2022-09-22T01:49:09.711  INFO --- [   asgi_gw_0] localstack.request.aws     : AWS dynamodb.DescribeContinuousBackups => 400 (UnknownOperationException)
2022-09-22T01:49:10.034  INFO --- [   asgi_gw_1] localstack.request.aws     : AWS dynamodb.DescribeTimeToLive => 200
2022-09-22T01:49:10.350  INFO --- [   asgi_gw_0] localstack.request.aws     : AWS dynamodb.ListTagsOfResource => 200
2022-09-22T01:49:17.444  INFO --- [   asgi_gw_0] localstack.request.aws     : AWS dynamodb.ListTables => 200

How are you starting LocalStack?

Custom (please describe below)

Steps To Reproduce

- localstack start
- terraform plan -auto-approve
- awslocal dynamodb list-tables

results in:

{
    "TableNames": [ ]
}

Environment

- OS: win10
- LocalStack: LocalStack CLI 1.1.0, LocalStack version: 1.1.1.dev

Anything else?

it works under linux, but not under win10

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions