├── .github └── workflows │ └── base.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── autoscaling_group │ ├── README.md │ ├── main.tf │ └── prerequisites.tf ├── autoscaling_group_with_weight │ ├── README.md │ ├── main.tf │ └── prerequisites.tf ├── complete │ ├── README.md │ └── main.tf └── complete_with_weight │ ├── README.md │ └── main.tf ├── main.tf ├── outputs.tf ├── variables.tf └── versions.tf /.github/workflows/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/.github/workflows/base.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/README.md -------------------------------------------------------------------------------- /examples/autoscaling_group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group/README.md -------------------------------------------------------------------------------- /examples/autoscaling_group/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group/main.tf -------------------------------------------------------------------------------- /examples/autoscaling_group/prerequisites.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group/prerequisites.tf -------------------------------------------------------------------------------- /examples/autoscaling_group_with_weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group_with_weight/README.md -------------------------------------------------------------------------------- /examples/autoscaling_group_with_weight/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group_with_weight/main.tf -------------------------------------------------------------------------------- /examples/autoscaling_group_with_weight/prerequisites.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/autoscaling_group_with_weight/prerequisites.tf -------------------------------------------------------------------------------- /examples/complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/complete/README.md -------------------------------------------------------------------------------- /examples/complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/complete/main.tf -------------------------------------------------------------------------------- /examples/complete_with_weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/complete_with_weight/README.md -------------------------------------------------------------------------------- /examples/complete_with_weight/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/examples/complete_with_weight/main.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/outputs.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivexl/terraform-aws-ec2-spot-price/HEAD/versions.tf --------------------------------------------------------------------------------