From 17ca790501031e90393d2bec90eeb14999109cc8 Mon Sep 17 00:00:00 2001 From: Kevin Lefevre Date: Tue, 10 Oct 2023 20:21:25 +0200 Subject: [PATCH] feat: add sensitive output for api key Signed-off-by: Kevin Lefevre --- modules/iam-application/outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/iam-application/outputs.tf b/modules/iam-application/outputs.tf index 9197022..c4df911 100644 --- a/modules/iam-application/outputs.tf +++ b/modules/iam-application/outputs.tf @@ -10,3 +10,8 @@ output "updated_at" { output "editable" { value = scaleway_iam_application.this.editable } + +output "api_key" { + value = scaleway_iam_api_key.this + sensitive = true +}