79435412

Date: 2025-02-13 08:03:47
Score: 0.5
Natty:
Report link

I know this is an old topic, but there is also random_bytes, which has its output marked as sensitive per documentation:

resource "random_bytes" "this" {
  length = 32
}

you can then get the value as base64 or as hex:

random_bytes.this.hex

random_bytes.this.base64

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Michael Villani