2023-03-15 16:00:52 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-08-23 19:53:41 +00:00
|
|
|
terraform {
|
|
|
|
required_providers {
|
|
|
|
aws = {
|
|
|
|
source = "hashicorp/aws"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "instance_type" {
|
|
|
|
default = ["t3.small"]
|
|
|
|
type = list(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
data "aws_ec2_instance_type_offerings" "infra" {
|
|
|
|
filter {
|
|
|
|
name = "instance-type"
|
|
|
|
values = var.instance_type
|
|
|
|
}
|
|
|
|
|
|
|
|
location_type = "availability-zone"
|
|
|
|
}
|
|
|
|
|
|
|
|
output "availability_zones" {
|
|
|
|
value = data.aws_ec2_instance_type_offerings.infra.locations
|
|
|
|
}
|