-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into feature/add-support…
…-for-filtering-twingate_groups-datasource
- Loading branch information
Showing
33 changed files
with
1,087 additions
and
104 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
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_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
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>" | ||
} |
9 changes: 8 additions & 1 deletion
9
examples/data-sources/twingate_security_policies/data-source.tf
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_security_policies" "all" {} | ||
data "twingate_security_policies" "all" { | ||
name = "<your security policy's name>" | ||
# name_regexp = "<regular expression of security policy name>" | ||
# name_contains = "<a string in the security policy name>" | ||
# name_exclude = "<your security policy's name to exclude>" | ||
# name_prefix = "<prefix of security policy name>" | ||
# name_suffix = "<suffix of security policy name>" | ||
} |
5 changes: 5 additions & 0 deletions
5
examples/data-sources/twingate_service_accounts/data-source.tf
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,3 +1,8 @@ | ||
data "twingate_service_accounts" "foo" { | ||
name = "<your service account's name>" | ||
# name_regexp = "<regular expression of service account name>" | ||
# name_contains = "<a string in the service account name>" | ||
# name_exclude = "<your service account's name to exclude>" | ||
# name_prefix = "<prefix of service account name>" | ||
# name_suffix = "<suffix of service account 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
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.