refactor(terraform): Directory structure
[csit.git] / fdio.infra.terraform / terraform-vault-aws-secret-backend / variables.tf
1 variable "aws_access_key" {
2   description = "AWS access key"
3   type        = string
4   sensitive   = true
5 }
6
7 variable "aws_secret_key" {
8   description = "AWS secret key"
9   type        = string
10   sensitive   = true
11 }
12
13 variable "name" {
14   default     = "dynamic-aws-creds-vault"
15   description = "Vault path"
16   type        = string
17 }