Skip to content

Commit 4dd0e6e

Browse files
author
Nico Gelders
committed
extra docs
1 parent 35d359b commit 4dd0e6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/data-sources/teams.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ data "dagster_teams" "teams" {
2323

2424
### Required
2525

26-
- `regex_filter` (String) Regex filter to select the Dagster Cloud teams based on the name of the team
26+
- `regex_filter` (String) Regex filter to select the Dagster Cloud teams based on the name of the team. (regex matching is done using `https://pkg.go.dev/regexp`)
2727

2828
### Read-Only
2929

internal/provider/datasources/teams.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (d *TeamsDataSource) Schema(_ context.Context, _ datasource.SchemaRequest,
4444
"regex_filter": schema.StringAttribute{
4545
Required: true,
4646
Computed: false,
47-
Description: "Regex filter to select the Dagster Cloud teams based on the name of the team",
47+
Description: "Regex filter to select the Dagster Cloud teams based on the name of the team. (regex matching is done using `https://pkg.go.dev/regexp`)",
4848
},
4949
"teams": schema.ListNestedAttribute{
5050
Computed: true,

0 commit comments

Comments
 (0)