From e9d581ce1e72d62db78aa0873a1736a1bbf52a8b Mon Sep 17 00:00:00 2001 From: Piotr Sierkin Date: Thu, 28 Mar 2024 17:03:10 +0100 Subject: [PATCH] chore: add database role name with fully qualified format --- outputs.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/outputs.tf b/outputs.tf index 5eaf0ca..b9e5d8f 100644 --- a/outputs.tf +++ b/outputs.tf @@ -2,3 +2,9 @@ output "name" { description = "Name of the database role" value = one(snowflake_database_role.this[*].name) } + +output "name_fully_qualified" { + description = "Name of the database role in fully qualified format (\"DB_NAME\".\"ROLE_NAME\")" + value = local.database_role_name +} +