1234567891011121314151617 |
- #-------------------
- # VARIABLES
- #-------------------
- variable "stack_name" {
- }
- variable "aws_region" {
- default = "us-west-2"
- }
- variable "vpc_id" {}
- // Variables for providers used in this module
- variable "aws_access_key" {}
- variable "aws_secret_key" {}
- // Deployer SSH Pub SSH keys
- variable "public_key_path" {}
|