12 lines
147 B
HCL
12 lines
147 B
HCL
|
variable "region" {
|
||
|
type =string
|
||
|
}
|
||
|
|
||
|
source "amazon-ebs" "example" {
|
||
|
region = var.region
|
||
|
}
|
||
|
|
||
|
build {
|
||
|
sources = ["source.amazon-ebs.example"]
|
||
|
}
|