refactor(terraform): Directory structure
[csit.git] / fdio.infra.terraform / terraform-vault-aws-secret-backend / variables.tf
diff --git a/fdio.infra.terraform/terraform-vault-aws-secret-backend/variables.tf b/fdio.infra.terraform/terraform-vault-aws-secret-backend/variables.tf
new file mode 100644 (file)
index 0000000..2545345
--- /dev/null
@@ -0,0 +1,17 @@
+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"
+  description = "Vault path"
+  type        = string
+}