RosettaCodeData/Task/A+B/Terraform/a+b.terraform
2023-07-01 13:44:08 -04:00

13 lines
142 B
Text

#Aamrun, August 15th, 2022
variable "a" {
type = number
}
variable "b" {
type = number
}
output "a_plus_b" {
value = var.a + var.b
}