Adding service definition output

This commit is contained in:
2024-01-28 09:56:20 +01:00
parent 68d609a022
commit dd03003ebc

View File

@@ -1,3 +1,11 @@
output "name" { output "name" {
value = "${var.app_slug}" value = "${var.app_slug}"
} }
output "default_definition" {
value = = {
"name" = "${var.app_slug}"
"port" = {
"number" = var.ports[0]
}
}
}