forked from Twingate/terraform-provider-twingate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[After Twingate#443] Feature: add support filtering twingate_connecto…
…rs datasource (Twingate#463) * added new attributes for resources datasource * added optional name attributes for resources datasource * added feature branch * fix test * remove feature branch * enable tests * remove feature branch * refactore * updated docs * update resources datasource: allow to list all resources * fix docs * added optional filters for connectors * enable tests * fix test * revert ci.yml * fix docs * fix linter --------- Co-authored-by: bertekintw <[email protected]>
- Loading branch information
1 parent
9e96e7c
commit 4e98b1f
Showing
8 changed files
with
305 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
data "twingate_connectors" "all" {} | ||
data "twingate_connectors" "all" { | ||
name = "<your connector's name>" | ||
# name_regexp = "<regular expression of connector name>" | ||
# name_contains = "<a string in the connector name>" | ||
# name_exclude = "<your connector's name to exclude>" | ||
# name_prefix = "<prefix of connector name>" | ||
# name_suffix = "<suffix of connector name>" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.