mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-11 14:53:48 -05:00
40 lines
475 B
HCL
40 lines
475 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
project = "foo"
|
|
|
|
app "foo" {
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|
|
|
|
app "relative_above_root" {
|
|
path = "../nope"
|
|
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|
|
|
|
app "system_label" {
|
|
labels = {
|
|
"vagrant/foo" = "bar"
|
|
}
|
|
|
|
build {
|
|
use "docker" {}
|
|
}
|
|
|
|
deploy {
|
|
use "docker" {}
|
|
}
|
|
}
|