5

When I run I try to use terraform state show on variables flagged sensitive on some addresses I get

private_data = (sensitive value)

How can I get around this problem?

Evan Carroll
  • 2,091
  • 3
  • 22
  • 65

1 Answers1

7

Unfortunately you can not. There is already a filed issue on this #32439.

Workaround

Until that's resolved you'll have to use

terraform show -json | jq QUERY

And learn how to query with jq to get what you want.

Evan Carroll
  • 2,091
  • 3
  • 22
  • 65