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 filtering for twingate remote netwo…
…rks datasource (Twingate#458) * 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 * wip * fix docs * added optional filters for twingate_remote_networks datasource * enable test * enable test * revert sweeper changes * run only datasource tests * fix users basic test * revert test.sh * fix users test * revert ci.yml * added example for remote_networks datasource --------- Co-authored-by: bertekintw <[email protected]>
- Loading branch information
1 parent
6f16df1
commit 9e96e7c
Showing
11 changed files
with
271 additions
and
16 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
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_remote_networks" "all" {} | ||
data "twingate_remote_networks" "all" { | ||
name = "<your network's name>" | ||
# name_regexp = "<regular expression of network name>" | ||
# name_contains = "<a string in the network name>" | ||
# name_exclude = "<your network's name to exclude>" | ||
# name_prefix = "<prefix of network name>" | ||
# name_suffix = "<suffix of network 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
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.