variables.tf 317 B

1234567891011121314151617
  1. #-------------------
  2. # VARIABLES
  3. #-------------------
  4. variable "stack_name" {
  5. }
  6. variable "aws_region" {
  7. default = "us-west-2"
  8. }
  9. variable "vpc_id" {}
  10. // Variables for providers used in this module
  11. variable "aws_access_key" {}
  12. variable "aws_secret_key" {}
  13. // Deployer SSH Pub SSH keys
  14. variable "public_key_path" {}