From 946185601dd74eb61e37f78ca60785bb6c331060 Mon Sep 17 00:00:00 2001 From: Felix Chapman Date: Tue, 11 Jan 2022 19:28:39 +0000 Subject: [PATCH] Add output --- deploy/infrastructure/main.tf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/deploy/infrastructure/main.tf b/deploy/infrastructure/main.tf index e8bde38..b43c012 100644 --- a/deploy/infrastructure/main.tf +++ b/deploy/infrastructure/main.tf @@ -9,4 +9,12 @@ module s3_site { repository = "tetris" domain = "ael.red" subdomain = "tetris" -} \ No newline at end of file +} + +output next_steps { + value = module.service.next_steps +} + +output dockerhub_webhook_url { + value = module.service.dockerhub_webhook_url +}