-
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 branch 'main' into feature/upgrade-go-to-1-22
- Loading branch information
Showing
58 changed files
with
2,660 additions
and
281 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
data "twingate_users" "all" {} | ||
data "twingate_users" "all" { | ||
# email = "<your user's email>" | ||
# email_regexp = "<regular expression of user email>" | ||
# email_contains = "<a string in the user email>" | ||
# email_exclude = "<your user's email to exclude>" | ||
# email_prefix = "<prefix of user email>" | ||
# email_suffix = "<suffix of user email>" | ||
|
||
# first_name = "<your user's first name>" | ||
# first_name_regexp = "<regular expression of user first name>" | ||
# first_name_contains = "<a string in the user first name>" | ||
# first_name_exclude = "<your user's first name to exclude>" | ||
# first_name_prefix = "<prefix of user first name>" | ||
# first_name_suffix = "<suffix of user first name>" | ||
|
||
# last_name = "<your user's last name>" | ||
# last_name_regexp = "<regular expression of user last name>" | ||
# last_name_contains = "<a string in the user last name>" | ||
# last_name_exclude = "<your user's last name to exclude>" | ||
# last_name_prefix = "<prefix of user last name>" | ||
# last_name_suffix = "<suffix of user last name>" | ||
|
||
# roles = ["ADMIN", "DEVOPS", "SUPPORT", "MEMBER"] | ||
} |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ const ( | |
SecurityPolicyID = "security_policy_id" | ||
Groups = "groups" | ||
Alias = "alias" | ||
Types = "types" | ||
) |
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.