13 lines
142 B
Text
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
|
|
}
|