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 +} +