feat(Terraform): AWS backend role migration
[csit.git] / fdio.infra.terraform / 1n_nmd / vault-aws-secret-backend / variables.tf
diff --git a/fdio.infra.terraform/1n_nmd/vault-aws-secret-backend/variables.tf b/fdio.infra.terraform/1n_nmd/vault-aws-secret-backend/variables.tf
new file mode 100644 (file)
index 0000000..df75298
--- /dev/null
@@ -0,0 +1,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
+}