blob: df752980fd7802cf6c97addfc26f5c4f4d9d821c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
variable "aws_access_key" {
description = "AWS access key"
type = string
sensitive = true
}
variable "aws_secret_key" {
description = "AWS secret key"
type = string
sensitive = true
}
variable "name" {
default = "dynamic-aws-creds-vault-fdio"
description = "Vault path"
type = string
}
variable "token" {
description = "Vault root token"
type = string
sensitive = true
}
|