# Copyright (c) HashiCorp, Inc. # SPDX-License-Identifier: MPL-2.0 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 }