Secrets
The sym_secrets
resource allows you to specify a source for secrets to be accessed by the Sym platform.
resource "sym_secrets" "this" {
type = "aws_secrets_manager"
name = "prod-secrets"
settings = {
context_id = sym_integration.secrets_context.id
}
}
Name | Description | Required |
---|---|---|
| A slug uniquely identifying your | ✔️ |
| The | ✔️ |
Supplying a Secret
resource "sym_secret" "username" {
path = "/sym/tf-tests/username"
source_id = sym_secrets.this.id
}
Name | Description | Required |
---|---|---|
| The path to the secret in the source. | ✔️ |
| The | ✔️ |
Updated 10 months ago
Did this page help you?