We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New functionality
twingate_dlp_policy
name
id
twingate_dlp_policies
name_contains
name_exclude
name_prefix
name_regexp
name_suffix
dlp_policies
twingate_resource
dlp_policy_id
null
access_group
Behavior
dlp_policy
Example usage
data twingate_dlp_policy example { name = "DLP Policy Example" } data twingate_dlp_policy access_example { name = "DLP Policy Access Example" } resource twingate_resource salesforce { name = "Salesforce" address = "*.salesforce.com" remote_network_id = data.twingate_remote_network.example.id dlp_policy_id = data.twingate_dlp_policy.example.id access_group { group_id = data.twingate_group.example.id dlp_policy_id = data.twingate_dlp_policy.access_example.id } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
New functionality
twingate_dlp_policy
name
(String): the DLP policy's name. Returns a DLP policy that exactly matches this name.id
(String): the DLP policy's ID. Returns a DLP policy that has this ID.twingate_dlp_policies
name
(String): returns only DLP policies that exactly match this name. If no options are passed, returns all DLP policies.name_contains
(String): returns only DLP policies that contain this string.name_exclude
(String): returns only DLP policies that do not include this string.name_prefix
(String): returns only DLP policies that start in this string.name_regexp
(String): returns only DLP policies that satisfy this regex.name_suffix
(String): returns only DLP policies that end in this string.id
(String): The ID of this data sourcedlp_policies
(Attribute list)id
(String): the ID of this DLP policyname
(String): the name of this DLP policytwingate_resource
to be able to set DLP policies on the Resource and its access edgesdlp_policy_id
(String): the ID of a DLP policy to be used as the default DLP policy for this Resource. Defaults tonull
.access_group
blockdlp_policy_id
(String): the ID of a DLP policy to be used as the DLP policy for the group in this access block.Behavior
dlp_policy
anddlp_policies
data sources are used to query one or multiple DLP policies respectively.twingate_resource
resource, we're adding the ability to set DLP policies for the Resource as well as on specific group accesses.Example usage
The text was updated successfully, but these errors were encountered: