1
0
Fork 0
terraform-training/project2/base.tf

12 lines
129 B
Terraform
Raw Normal View History

2020-05-12 10:36:59 +02:00
variable "a" {}
variable "b" {
default = "test"
}
output "ov1" {
value = "${var.a}"
}
output "ov2" {
value = "${var.b}"
}