20482: Allows the site admin to specify a custom AMI for the nodes.
[arvados.git] / tools / salt-install / terraform / aws / services / variables.tf
index 89b1886c19a44416505227bd84afcc46b0f2857e..99005a22038ef99bc83b0c58ffb0f8df11d50593 100644 (file)
@@ -13,3 +13,21 @@ variable "pubkey_path" {
   type = string
   default = "~/.ssh/id_rsa.pub"
 }
+
+variable "deploy_user" {
+  description = "User for deploying the software"
+  type = string
+  default = "admin"
+}
+
+variable "ssl_password_secret_name_suffix" {
+  description = "Name suffix for the SSL certificate's private key password AWS secret."
+  type = string
+  default = "arvados-ssl-privkey-password"
+}
+
+variable "instance_ami" {
+  description = "The EC2 instance AMI to use on the nodes"
+  type = string
+  default = ""
+}
\ No newline at end of file