Skip to content

Commit f66db9b

Browse files
committed
[dagster-tableau] TableauWorkspace.connected_app_secret_value is now marked as a secret param that is hidden in the UI (#33085)
## Summary & Motivation `TableauWorkspace.connected_app_secret_value` is now marked as a secret param that is hidden in the UI. See #32995 for what this looks like. ## How I Tested These Changes Existing test suite.
1 parent 87b4d5f commit f66db9b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • python_modules/libraries/dagster-tableau/dagster_tableau

python_modules/libraries/dagster-tableau/dagster_tableau/resources.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ class BaseTableauWorkspace(ConfigurableResource):
572572
connected_app_secret_value: str = Field(
573573
...,
574574
description="The secret value of the connected app used to connect to Tableau Workspace.",
575+
json_schema_extra={"dagster__is_secret": True},
575576
)
576577
username: str = Field(..., description="The username to authenticate to Tableau Workspace.")
577578
site_name: str = Field(..., description="The name of the Tableau site to use.")

0 commit comments

Comments
 (0)