variables.tf 368 B

12345678910111213141516
  1. #-------------------
  2. # VARIABLES
  3. #-------------------
  4. variable "stack_name" {
  5. default = "Name for this stack like customer-Name or project-name"
  6. }
  7. variable "aws_region" {}
  8. variable "vpc_id" {}
  9. // Variables for providers used in this module
  10. variable "aws_access_key" {}
  11. variable "aws_secret_key" {}
  12. // Deployer SSH Pub SSH keys
  13. variable "public_key_path" {}