mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-22 01:00:20 -04:00
14 lines
254 B
HCL
14 lines
254 B
HCL
|
|
variable "prohibited_instance_types" {
|
|
type = map
|
|
default = {
|
|
a = "foo"
|
|
}
|
|
}
|
|
|
|
control "array_param" {
|
|
title = "EC2 Instances xlarge and bigger"
|
|
args = [ var.prohibited_instance_types ]
|
|
query = query.q2
|
|
}
|