cloudflare.AccessPolicy
Explore with Pulumi AI
If ‘application_id’ is omitted, the policy created can be reused by multiple access applications. Any
cloudflare.ZeroTrustAccessApplication
resource can reference reusable policies through itspolicies
argument. To destroy a reusable policy and remove it from all applications’ policies lists on the same apply, preemptively set the lifecycle optioncreate_before_destroy
to true on the ‘cloudflare_zero_trust_access_policy’ resource.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
exampleZeroTrustAccessPolicy:
type: cloudflare:ZeroTrustAccessPolicy
name: example_zero_trust_access_policy
properties:
accountId: 023e105f4ecef8ad9ca31a8372d0c353
decision: allow
includes:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
name: Allow devs
approvalGroups:
- approvals_needed: 1
email_addresses:
- test1@cloudflare.com
- test2@cloudflare.com
email_list_uuid: email_list_uuid
- approvals_needed: 3
email_addresses:
- test@cloudflare.com
- test2@cloudflare.com
email_list_uuid: 597147a1-976b-4ef2-9af0-81d5d007fc34
approvalRequired: true
excludes:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
isolationRequired: false
purposeJustificationPrompt: Please enter a justification for entering this protected domain.
purposeJustificationRequired: true
requires:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
sessionDuration: 24h
Create AccessPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccessPolicy(name: string, args: AccessPolicyArgs, opts?: CustomResourceOptions);
@overload
def AccessPolicy(resource_name: str,
args: AccessPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccessPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
approval_groups: Optional[Sequence[AccessPolicyApprovalGroupArgs]] = None,
approval_required: Optional[bool] = None,
decision: Optional[str] = None,
excludes: Optional[Sequence[AccessPolicyExcludeArgs]] = None,
includes: Optional[Sequence[AccessPolicyIncludeArgs]] = None,
isolation_required: Optional[bool] = None,
name: Optional[str] = None,
purpose_justification_prompt: Optional[str] = None,
purpose_justification_required: Optional[bool] = None,
requires: Optional[Sequence[AccessPolicyRequireArgs]] = None,
session_duration: Optional[str] = None)
func NewAccessPolicy(ctx *Context, name string, args AccessPolicyArgs, opts ...ResourceOption) (*AccessPolicy, error)
public AccessPolicy(string name, AccessPolicyArgs args, CustomResourceOptions? opts = null)
public AccessPolicy(String name, AccessPolicyArgs args)
public AccessPolicy(String name, AccessPolicyArgs args, CustomResourceOptions options)
type: cloudflare:AccessPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AccessPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AccessPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AccessPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccessPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccessPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AccessPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AccessPolicy resource accepts the following input properties:
- Account
Id string - Identifier.
- Decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- Includes
List<Access
Policy Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Name string
- The name of the Access policy.
- Approval
Groups List<AccessPolicy Approval Group> - Administrators who can approve a temporary authentication request.
- Approval
Required bool - Requires the user to request access from an administrator at the start of each session.
- Excludes
List<Access
Policy Exclude> - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- Isolation
Required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- Purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- Purpose
Justification boolRequired - Require users to enter a justification when they log in to the application.
- Requires
List<Access
Policy Require> - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- Session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
- Account
Id string - Identifier.
- Decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- Includes
[]Access
Policy Include Args - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Name string
- The name of the Access policy.
- Approval
Groups []AccessPolicy Approval Group Args - Administrators who can approve a temporary authentication request.
- Approval
Required bool - Requires the user to request access from an administrator at the start of each session.
- Excludes
[]Access
Policy Exclude Args - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- Isolation
Required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- Purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- Purpose
Justification boolRequired - Require users to enter a justification when they log in to the application.
- Requires
[]Access
Policy Require Args - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- Session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
- account
Id String - Identifier.
- decision String
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- includes
List<Access
Policy Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- name String
- The name of the Access policy.
- approval
Groups List<AccessPolicy Approval Group> - Administrators who can approve a temporary authentication request.
- approval
Required Boolean - Requires the user to request access from an administrator at the start of each session.
- excludes
List<Access
Policy Exclude> - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- isolation
Required Boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- purpose
Justification StringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification BooleanRequired - Require users to enter a justification when they log in to the application.
- requires
List<Access
Policy Require> - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- session
Duration String - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
- account
Id string - Identifier.
- decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- includes
Access
Policy Include[] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- name string
- The name of the Access policy.
- approval
Groups AccessPolicy Approval Group[] - Administrators who can approve a temporary authentication request.
- approval
Required boolean - Requires the user to request access from an administrator at the start of each session.
- excludes
Access
Policy Exclude[] - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- isolation
Required boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification booleanRequired - Require users to enter a justification when they log in to the application.
- requires
Access
Policy Require[] - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
- account_
id str - Identifier.
- decision str
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- includes
Sequence[Access
Policy Include Args] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- name str
- The name of the Access policy.
- approval_
groups Sequence[AccessPolicy Approval Group Args] - Administrators who can approve a temporary authentication request.
- approval_
required bool - Requires the user to request access from an administrator at the start of each session.
- excludes
Sequence[Access
Policy Exclude Args] - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- isolation_
required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- purpose_
justification_ strprompt - A custom message that will appear on the purpose justification screen.
- purpose_
justification_ boolrequired - Require users to enter a justification when they log in to the application.
- requires
Sequence[Access
Policy Require Args] - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- session_
duration str - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
- account
Id String - Identifier.
- decision String
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- includes List<Property Map>
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- name String
- The name of the Access policy.
- approval
Groups List<Property Map> - Administrators who can approve a temporary authentication request.
- approval
Required Boolean - Requires the user to request access from an administrator at the start of each session.
- excludes List<Property Map>
- Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- isolation
Required Boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- purpose
Justification StringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification BooleanRequired - Require users to enter a justification when they log in to the application.
- requires List<Property Map>
- Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- session
Duration String - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccessPolicy resource produces the following output properties:
- app_
count int - Number of access applications currently using this policy.
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- reusable bool
- updated_
at str
Look up Existing AccessPolicy Resource
Get an existing AccessPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AccessPolicyState, opts?: CustomResourceOptions): AccessPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
app_count: Optional[int] = None,
approval_groups: Optional[Sequence[AccessPolicyApprovalGroupArgs]] = None,
approval_required: Optional[bool] = None,
created_at: Optional[str] = None,
decision: Optional[str] = None,
excludes: Optional[Sequence[AccessPolicyExcludeArgs]] = None,
includes: Optional[Sequence[AccessPolicyIncludeArgs]] = None,
isolation_required: Optional[bool] = None,
name: Optional[str] = None,
purpose_justification_prompt: Optional[str] = None,
purpose_justification_required: Optional[bool] = None,
requires: Optional[Sequence[AccessPolicyRequireArgs]] = None,
reusable: Optional[bool] = None,
session_duration: Optional[str] = None,
updated_at: Optional[str] = None) -> AccessPolicy
func GetAccessPolicy(ctx *Context, name string, id IDInput, state *AccessPolicyState, opts ...ResourceOption) (*AccessPolicy, error)
public static AccessPolicy Get(string name, Input<string> id, AccessPolicyState? state, CustomResourceOptions? opts = null)
public static AccessPolicy get(String name, Output<String> id, AccessPolicyState state, CustomResourceOptions options)
resources: _: type: cloudflare:AccessPolicy get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - Identifier.
- App
Count int - Number of access applications currently using this policy.
- Approval
Groups List<AccessPolicy Approval Group> - Administrators who can approve a temporary authentication request.
- Approval
Required bool - Requires the user to request access from an administrator at the start of each session.
- Created
At string - Decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- Excludes
List<Access
Policy Exclude> - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- Includes
List<Access
Policy Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Isolation
Required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- Name string
- The name of the Access policy.
- Purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- Purpose
Justification boolRequired - Require users to enter a justification when they log in to the application.
- Requires
List<Access
Policy Require> - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- Reusable bool
- Session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - Updated
At string
- Account
Id string - Identifier.
- App
Count int - Number of access applications currently using this policy.
- Approval
Groups []AccessPolicy Approval Group Args - Administrators who can approve a temporary authentication request.
- Approval
Required bool - Requires the user to request access from an administrator at the start of each session.
- Created
At string - Decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- Excludes
[]Access
Policy Exclude Args - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- Includes
[]Access
Policy Include Args - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Isolation
Required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- Name string
- The name of the Access policy.
- Purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- Purpose
Justification boolRequired - Require users to enter a justification when they log in to the application.
- Requires
[]Access
Policy Require Args - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- Reusable bool
- Session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - Updated
At string
- account
Id String - Identifier.
- app
Count Integer - Number of access applications currently using this policy.
- approval
Groups List<AccessPolicy Approval Group> - Administrators who can approve a temporary authentication request.
- approval
Required Boolean - Requires the user to request access from an administrator at the start of each session.
- created
At String - decision String
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- excludes
List<Access
Policy Exclude> - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- includes
List<Access
Policy Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isolation
Required Boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- name String
- The name of the Access policy.
- purpose
Justification StringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification BooleanRequired - Require users to enter a justification when they log in to the application.
- requires
List<Access
Policy Require> - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- reusable Boolean
- session
Duration String - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - updated
At String
- account
Id string - Identifier.
- app
Count number - Number of access applications currently using this policy.
- approval
Groups AccessPolicy Approval Group[] - Administrators who can approve a temporary authentication request.
- approval
Required boolean - Requires the user to request access from an administrator at the start of each session.
- created
At string - decision string
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- excludes
Access
Policy Exclude[] - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- includes
Access
Policy Include[] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isolation
Required boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- name string
- The name of the Access policy.
- purpose
Justification stringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification booleanRequired - Require users to enter a justification when they log in to the application.
- requires
Access
Policy Require[] - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- reusable boolean
- session
Duration string - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - updated
At string
- account_
id str - Identifier.
- app_
count int - Number of access applications currently using this policy.
- approval_
groups Sequence[AccessPolicy Approval Group Args] - Administrators who can approve a temporary authentication request.
- approval_
required bool - Requires the user to request access from an administrator at the start of each session.
- created_
at str - decision str
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- excludes
Sequence[Access
Policy Exclude Args] - Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- includes
Sequence[Access
Policy Include Args] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isolation_
required bool - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- name str
- The name of the Access policy.
- purpose_
justification_ strprompt - A custom message that will appear on the purpose justification screen.
- purpose_
justification_ boolrequired - Require users to enter a justification when they log in to the application.
- requires
Sequence[Access
Policy Require Args] - Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- reusable bool
- session_
duration str - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - updated_
at str
- account
Id String - Identifier.
- app
Count Number - Number of access applications currently using this policy.
- approval
Groups List<Property Map> - Administrators who can approve a temporary authentication request.
- approval
Required Boolean - Requires the user to request access from an administrator at the start of each session.
- created
At String - decision String
- The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
- excludes List<Property Map>
- Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
- includes List<Property Map>
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isolation
Required Boolean - Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
- name String
- The name of the Access policy.
- purpose
Justification StringPrompt - A custom message that will appear on the purpose justification screen.
- purpose
Justification BooleanRequired - Require users to enter a justification when they log in to the application.
- requires List<Property Map>
- Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
- reusable Boolean
- session
Duration String - The amount of time that tokens issued for the application will be valid. Must be in the format
300ms
or2h45m
. Valid time units are: ns, us (or µs), ms, s, m, h. - updated
At String
Supporting Types
AccessPolicyApprovalGroup, AccessPolicyApprovalGroupArgs
- Approvals
Needed double - The number of approvals needed to obtain access.
- Email
Addresses List<string> - A list of emails that can approve the access request.
- Email
List stringUuid - The UUID of an re-usable email list.
- Approvals
Needed float64 - The number of approvals needed to obtain access.
- Email
Addresses []string - A list of emails that can approve the access request.
- Email
List stringUuid - The UUID of an re-usable email list.
- approvals
Needed Double - The number of approvals needed to obtain access.
- email
Addresses List<String> - A list of emails that can approve the access request.
- email
List StringUuid - The UUID of an re-usable email list.
- approvals
Needed number - The number of approvals needed to obtain access.
- email
Addresses string[] - A list of emails that can approve the access request.
- email
List stringUuid - The UUID of an re-usable email list.
- approvals_
needed float - The number of approvals needed to obtain access.
- email_
addresses Sequence[str] - A list of emails that can approve the access request.
- email_
list_ struuid - The UUID of an re-usable email list.
- approvals
Needed Number - The number of approvals needed to obtain access.
- email
Addresses List<String> - A list of emails that can approve the access request.
- email
List StringUuid - The UUID of an re-usable email list.
AccessPolicyExclude, AccessPolicyExcludeArgs
- Any
Valid AccessService Token Policy Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Exclude Auth Context - Auth
Method AccessPolicy Exclude Auth Method - Azure
Ad AccessPolicy Exclude Azure Ad - Certificate
Access
Policy Exclude Certificate - Common
Name AccessPolicy Exclude Common Name - Device
Posture AccessPolicy Exclude Device Posture - Email
Access
Policy Exclude Email - Email
Domain AccessPolicy Exclude Email Domain - Email
List AccessPolicy Exclude Email List - Everyone
Access
Policy Exclude Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Exclude External Evaluation - Geo
Access
Policy Exclude Geo - Github
Organization AccessPolicy Exclude Github Organization - Group
Access
Policy Exclude Group - Gsuite
Access
Policy Exclude Gsuite - Ip
Access
Policy Exclude Ip - Ip
List AccessPolicy Exclude Ip List - Login
Method AccessPolicy Exclude Login Method - Okta
Access
Policy Exclude Okta - Saml
Access
Policy Exclude Saml - Service
Token AccessPolicy Exclude Service Token
- Any
Valid AccessService Token Policy Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Exclude Auth Context - Auth
Method AccessPolicy Exclude Auth Method - Azure
Ad AccessPolicy Exclude Azure Ad - Certificate
Access
Policy Exclude Certificate - Common
Name AccessPolicy Exclude Common Name - Device
Posture AccessPolicy Exclude Device Posture - Email
Access
Policy Exclude Email - Email
Domain AccessPolicy Exclude Email Domain - Email
List AccessPolicy Exclude Email List - Everyone
Access
Policy Exclude Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Exclude External Evaluation - Geo
Access
Policy Exclude Geo - Github
Organization AccessPolicy Exclude Github Organization - Group
Access
Policy Exclude Group - Gsuite
Access
Policy Exclude Gsuite - Ip
Access
Policy Exclude Ip - Ip
List AccessPolicy Exclude Ip List - Login
Method AccessPolicy Exclude Login Method - Okta
Access
Policy Exclude Okta - Saml
Access
Policy Exclude Saml - Service
Token AccessPolicy Exclude Service Token
- any
Valid AccessService Token Policy Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Exclude Auth Context - auth
Method AccessPolicy Exclude Auth Method - azure
Ad AccessPolicy Exclude Azure Ad - certificate
Access
Policy Exclude Certificate - common
Name AccessPolicy Exclude Common Name - device
Posture AccessPolicy Exclude Device Posture - email
Access
Policy Exclude Email - email
Domain AccessPolicy Exclude Email Domain - email
List AccessPolicy Exclude Email List - everyone
Access
Policy Exclude Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Exclude External Evaluation - geo
Access
Policy Exclude Geo - github
Organization AccessPolicy Exclude Github Organization - group
Access
Policy Exclude Group - gsuite
Access
Policy Exclude Gsuite - ip
Access
Policy Exclude Ip - ip
List AccessPolicy Exclude Ip List - login
Method AccessPolicy Exclude Login Method - okta
Access
Policy Exclude Okta - saml
Access
Policy Exclude Saml - service
Token AccessPolicy Exclude Service Token
- any
Valid AccessService Token Policy Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Exclude Auth Context - auth
Method AccessPolicy Exclude Auth Method - azure
Ad AccessPolicy Exclude Azure Ad - certificate
Access
Policy Exclude Certificate - common
Name AccessPolicy Exclude Common Name - device
Posture AccessPolicy Exclude Device Posture - email
Access
Policy Exclude Email - email
Domain AccessPolicy Exclude Email Domain - email
List AccessPolicy Exclude Email List - everyone
Access
Policy Exclude Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Exclude External Evaluation - geo
Access
Policy Exclude Geo - github
Organization AccessPolicy Exclude Github Organization - group
Access
Policy Exclude Group - gsuite
Access
Policy Exclude Gsuite - ip
Access
Policy Exclude Ip - ip
List AccessPolicy Exclude Ip List - login
Method AccessPolicy Exclude Login Method - okta
Access
Policy Exclude Okta - saml
Access
Policy Exclude Saml - service
Token AccessPolicy Exclude Service Token
- any_
valid_ Accessservice_ token Policy Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessPolicy Exclude Auth Context - auth_
method AccessPolicy Exclude Auth Method - azure_
ad AccessPolicy Exclude Azure Ad - certificate
Access
Policy Exclude Certificate - common_
name AccessPolicy Exclude Common Name - device_
posture AccessPolicy Exclude Device Posture - email
Access
Policy Exclude Email - email_
domain AccessPolicy Exclude Email Domain - email_
list AccessPolicy Exclude Email List - everyone
Access
Policy Exclude Everyone - An empty object which matches on all users.
- external_
evaluation AccessPolicy Exclude External Evaluation - geo
Access
Policy Exclude Geo - github_
organization AccessPolicy Exclude Github Organization - group
Access
Policy Exclude Group - gsuite
Access
Policy Exclude Gsuite - ip
Access
Policy Exclude Ip - ip_
list AccessPolicy Exclude Ip List - login_
method AccessPolicy Exclude Login Method - okta
Access
Policy Exclude Okta - saml
Access
Policy Exclude Saml - service_
token AccessPolicy Exclude Service Token
- any
Valid Property MapService Token - An empty object which matches on all service tokens.
- auth
Context Property Map - auth
Method Property Map - azure
Ad Property Map - certificate Property Map
- common
Name Property Map - device
Posture Property Map - email Property Map
- email
Domain Property Map - email
List Property Map - everyone Property Map
- An empty object which matches on all users.
- external
Evaluation Property Map - geo Property Map
- github
Organization Property Map - group Property Map
- gsuite Property Map
- ip Property Map
- ip
List Property Map - login
Method Property Map - okta Property Map
- saml Property Map
- service
Token Property Map
AccessPolicyExcludeAuthContext, AccessPolicyExcludeAuthContextArgs
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
- ac
Id string - The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identity
Provider stringId - The ID of your Azure identity provider.
- ac_
id str - The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_
provider_ strid - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyExcludeAuthMethod, AccessPolicyExcludeAuthMethodArgs
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_
method str - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
AccessPolicyExcludeAzureAd, AccessPolicyExcludeAzureAdArgs
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identity
Provider stringId - The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_
provider_ strid - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyExcludeCommonName, AccessPolicyExcludeCommonNameArgs
- Common
Name string - The common name to match.
- Common
Name string - The common name to match.
- common
Name String - The common name to match.
- common
Name string - The common name to match.
- common_
name str - The common name to match.
- common
Name String - The common name to match.
AccessPolicyExcludeDevicePosture, AccessPolicyExcludeDevicePostureArgs
- Integration
Uid string - The ID of a device posture integration.
- Integration
Uid string - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
- integration
Uid string - The ID of a device posture integration.
- integration_
uid str - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
AccessPolicyExcludeEmail, AccessPolicyExcludeEmailArgs
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
AccessPolicyExcludeEmailDomain, AccessPolicyExcludeEmailDomainArgs
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
AccessPolicyExcludeEmailList, AccessPolicyExcludeEmailListArgs
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
AccessPolicyExcludeExternalEvaluation, AccessPolicyExcludeExternalEvaluationArgs
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url string - The API endpoint containing your business logic.
- keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_
url str - The API endpoint containing your business logic.
- keys_
url str - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
AccessPolicyExcludeGeo, AccessPolicyExcludeGeoArgs
- Country
Code string - The country code that should be matched.
- Country
Code string - The country code that should be matched.
- country
Code String - The country code that should be matched.
- country
Code string - The country code that should be matched.
- country_
code str - The country code that should be matched.
- country
Code String - The country code that should be matched.
AccessPolicyExcludeGithubOrganization, AccessPolicyExcludeGithubOrganizationArgs
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identity
Provider stringId - The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_
provider_ strid - The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
AccessPolicyExcludeGroup, AccessPolicyExcludeGroupArgs
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
AccessPolicyExcludeGsuite, AccessPolicyExcludeGsuiteArgs
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identity
Provider stringId - The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_
provider_ strid - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
AccessPolicyExcludeIp, AccessPolicyExcludeIpArgs
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
AccessPolicyExcludeIpList, AccessPolicyExcludeIpListArgs
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
AccessPolicyExcludeLoginMethod, AccessPolicyExcludeLoginMethodArgs
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
AccessPolicyExcludeOkta, AccessPolicyExcludeOktaArgs
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identity
Provider stringId - The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_
provider_ strid - The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
AccessPolicyExcludeSaml, AccessPolicyExcludeSamlArgs
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
- attribute
Name string - The name of the SAML attribute.
- attribute
Value string - The SAML attribute value to look for.
- identity
Provider stringId - The ID of your SAML identity provider.
- attribute_
name str - The name of the SAML attribute.
- attribute_
value str - The SAML attribute value to look for.
- identity_
provider_ strid - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
AccessPolicyExcludeServiceToken, AccessPolicyExcludeServiceTokenArgs
- Token
Id string - The ID of a Service Token.
- Token
Id string - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
- token
Id string - The ID of a Service Token.
- token_
id str - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
AccessPolicyInclude, AccessPolicyIncludeArgs
- Any
Valid AccessService Token Policy Include Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Include Auth Context - Auth
Method AccessPolicy Include Auth Method - Azure
Ad AccessPolicy Include Azure Ad - Certificate
Access
Policy Include Certificate - Common
Name AccessPolicy Include Common Name - Device
Posture AccessPolicy Include Device Posture - Email
Access
Policy Include Email - Email
Domain AccessPolicy Include Email Domain - Email
List AccessPolicy Include Email List - Everyone
Access
Policy Include Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Include External Evaluation - Geo
Access
Policy Include Geo - Github
Organization AccessPolicy Include Github Organization - Group
Access
Policy Include Group - Gsuite
Access
Policy Include Gsuite - Ip
Access
Policy Include Ip - Ip
List AccessPolicy Include Ip List - Login
Method AccessPolicy Include Login Method - Okta
Access
Policy Include Okta - Saml
Access
Policy Include Saml - Service
Token AccessPolicy Include Service Token
- Any
Valid AccessService Token Policy Include Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Include Auth Context - Auth
Method AccessPolicy Include Auth Method - Azure
Ad AccessPolicy Include Azure Ad - Certificate
Access
Policy Include Certificate - Common
Name AccessPolicy Include Common Name - Device
Posture AccessPolicy Include Device Posture - Email
Access
Policy Include Email - Email
Domain AccessPolicy Include Email Domain - Email
List AccessPolicy Include Email List - Everyone
Access
Policy Include Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Include External Evaluation - Geo
Access
Policy Include Geo - Github
Organization AccessPolicy Include Github Organization - Group
Access
Policy Include Group - Gsuite
Access
Policy Include Gsuite - Ip
Access
Policy Include Ip - Ip
List AccessPolicy Include Ip List - Login
Method AccessPolicy Include Login Method - Okta
Access
Policy Include Okta - Saml
Access
Policy Include Saml - Service
Token AccessPolicy Include Service Token
- any
Valid AccessService Token Policy Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Include Auth Context - auth
Method AccessPolicy Include Auth Method - azure
Ad AccessPolicy Include Azure Ad - certificate
Access
Policy Include Certificate - common
Name AccessPolicy Include Common Name - device
Posture AccessPolicy Include Device Posture - email
Access
Policy Include Email - email
Domain AccessPolicy Include Email Domain - email
List AccessPolicy Include Email List - everyone
Access
Policy Include Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Include External Evaluation - geo
Access
Policy Include Geo - github
Organization AccessPolicy Include Github Organization - group
Access
Policy Include Group - gsuite
Access
Policy Include Gsuite - ip
Access
Policy Include Ip - ip
List AccessPolicy Include Ip List - login
Method AccessPolicy Include Login Method - okta
Access
Policy Include Okta - saml
Access
Policy Include Saml - service
Token AccessPolicy Include Service Token
- any
Valid AccessService Token Policy Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Include Auth Context - auth
Method AccessPolicy Include Auth Method - azure
Ad AccessPolicy Include Azure Ad - certificate
Access
Policy Include Certificate - common
Name AccessPolicy Include Common Name - device
Posture AccessPolicy Include Device Posture - email
Access
Policy Include Email - email
Domain AccessPolicy Include Email Domain - email
List AccessPolicy Include Email List - everyone
Access
Policy Include Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Include External Evaluation - geo
Access
Policy Include Geo - github
Organization AccessPolicy Include Github Organization - group
Access
Policy Include Group - gsuite
Access
Policy Include Gsuite - ip
Access
Policy Include Ip - ip
List AccessPolicy Include Ip List - login
Method AccessPolicy Include Login Method - okta
Access
Policy Include Okta - saml
Access
Policy Include Saml - service
Token AccessPolicy Include Service Token
- any_
valid_ Accessservice_ token Policy Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessPolicy Include Auth Context - auth_
method AccessPolicy Include Auth Method - azure_
ad AccessPolicy Include Azure Ad - certificate
Access
Policy Include Certificate - common_
name AccessPolicy Include Common Name - device_
posture AccessPolicy Include Device Posture - email
Access
Policy Include Email - email_
domain AccessPolicy Include Email Domain - email_
list AccessPolicy Include Email List - everyone
Access
Policy Include Everyone - An empty object which matches on all users.
- external_
evaluation AccessPolicy Include External Evaluation - geo
Access
Policy Include Geo - github_
organization AccessPolicy Include Github Organization - group
Access
Policy Include Group - gsuite
Access
Policy Include Gsuite - ip
Access
Policy Include Ip - ip_
list AccessPolicy Include Ip List - login_
method AccessPolicy Include Login Method - okta
Access
Policy Include Okta - saml
Access
Policy Include Saml - service_
token AccessPolicy Include Service Token
- any
Valid Property MapService Token - An empty object which matches on all service tokens.
- auth
Context Property Map - auth
Method Property Map - azure
Ad Property Map - certificate Property Map
- common
Name Property Map - device
Posture Property Map - email Property Map
- email
Domain Property Map - email
List Property Map - everyone Property Map
- An empty object which matches on all users.
- external
Evaluation Property Map - geo Property Map
- github
Organization Property Map - group Property Map
- gsuite Property Map
- ip Property Map
- ip
List Property Map - login
Method Property Map - okta Property Map
- saml Property Map
- service
Token Property Map
AccessPolicyIncludeAuthContext, AccessPolicyIncludeAuthContextArgs
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
- ac
Id string - The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identity
Provider stringId - The ID of your Azure identity provider.
- ac_
id str - The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_
provider_ strid - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyIncludeAuthMethod, AccessPolicyIncludeAuthMethodArgs
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_
method str - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
AccessPolicyIncludeAzureAd, AccessPolicyIncludeAzureAdArgs
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identity
Provider stringId - The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_
provider_ strid - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyIncludeCommonName, AccessPolicyIncludeCommonNameArgs
- Common
Name string - The common name to match.
- Common
Name string - The common name to match.
- common
Name String - The common name to match.
- common
Name string - The common name to match.
- common_
name str - The common name to match.
- common
Name String - The common name to match.
AccessPolicyIncludeDevicePosture, AccessPolicyIncludeDevicePostureArgs
- Integration
Uid string - The ID of a device posture integration.
- Integration
Uid string - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
- integration
Uid string - The ID of a device posture integration.
- integration_
uid str - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
AccessPolicyIncludeEmail, AccessPolicyIncludeEmailArgs
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
AccessPolicyIncludeEmailDomain, AccessPolicyIncludeEmailDomainArgs
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
AccessPolicyIncludeEmailList, AccessPolicyIncludeEmailListArgs
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
AccessPolicyIncludeExternalEvaluation, AccessPolicyIncludeExternalEvaluationArgs
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url string - The API endpoint containing your business logic.
- keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_
url str - The API endpoint containing your business logic.
- keys_
url str - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
AccessPolicyIncludeGeo, AccessPolicyIncludeGeoArgs
- Country
Code string - The country code that should be matched.
- Country
Code string - The country code that should be matched.
- country
Code String - The country code that should be matched.
- country
Code string - The country code that should be matched.
- country_
code str - The country code that should be matched.
- country
Code String - The country code that should be matched.
AccessPolicyIncludeGithubOrganization, AccessPolicyIncludeGithubOrganizationArgs
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identity
Provider stringId - The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_
provider_ strid - The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
AccessPolicyIncludeGroup, AccessPolicyIncludeGroupArgs
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
AccessPolicyIncludeGsuite, AccessPolicyIncludeGsuiteArgs
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identity
Provider stringId - The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_
provider_ strid - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
AccessPolicyIncludeIp, AccessPolicyIncludeIpArgs
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
AccessPolicyIncludeIpList, AccessPolicyIncludeIpListArgs
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
AccessPolicyIncludeLoginMethod, AccessPolicyIncludeLoginMethodArgs
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
AccessPolicyIncludeOkta, AccessPolicyIncludeOktaArgs
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identity
Provider stringId - The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_
provider_ strid - The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
AccessPolicyIncludeSaml, AccessPolicyIncludeSamlArgs
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
- attribute
Name string - The name of the SAML attribute.
- attribute
Value string - The SAML attribute value to look for.
- identity
Provider stringId - The ID of your SAML identity provider.
- attribute_
name str - The name of the SAML attribute.
- attribute_
value str - The SAML attribute value to look for.
- identity_
provider_ strid - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
AccessPolicyIncludeServiceToken, AccessPolicyIncludeServiceTokenArgs
- Token
Id string - The ID of a Service Token.
- Token
Id string - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
- token
Id string - The ID of a Service Token.
- token_
id str - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
AccessPolicyRequire, AccessPolicyRequireArgs
- Any
Valid AccessService Token Policy Require Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Require Auth Context - Auth
Method AccessPolicy Require Auth Method - Azure
Ad AccessPolicy Require Azure Ad - Certificate
Access
Policy Require Certificate - Common
Name AccessPolicy Require Common Name - Device
Posture AccessPolicy Require Device Posture - Email
Access
Policy Require Email - Email
Domain AccessPolicy Require Email Domain - Email
List AccessPolicy Require Email List - Everyone
Access
Policy Require Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Require External Evaluation - Geo
Access
Policy Require Geo - Github
Organization AccessPolicy Require Github Organization - Group
Access
Policy Require Group - Gsuite
Access
Policy Require Gsuite - Ip
Access
Policy Require Ip - Ip
List AccessPolicy Require Ip List - Login
Method AccessPolicy Require Login Method - Okta
Access
Policy Require Okta - Saml
Access
Policy Require Saml - Service
Token AccessPolicy Require Service Token
- Any
Valid AccessService Token Policy Require Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessPolicy Require Auth Context - Auth
Method AccessPolicy Require Auth Method - Azure
Ad AccessPolicy Require Azure Ad - Certificate
Access
Policy Require Certificate - Common
Name AccessPolicy Require Common Name - Device
Posture AccessPolicy Require Device Posture - Email
Access
Policy Require Email - Email
Domain AccessPolicy Require Email Domain - Email
List AccessPolicy Require Email List - Everyone
Access
Policy Require Everyone - An empty object which matches on all users.
- External
Evaluation AccessPolicy Require External Evaluation - Geo
Access
Policy Require Geo - Github
Organization AccessPolicy Require Github Organization - Group
Access
Policy Require Group - Gsuite
Access
Policy Require Gsuite - Ip
Access
Policy Require Ip - Ip
List AccessPolicy Require Ip List - Login
Method AccessPolicy Require Login Method - Okta
Access
Policy Require Okta - Saml
Access
Policy Require Saml - Service
Token AccessPolicy Require Service Token
- any
Valid AccessService Token Policy Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Require Auth Context - auth
Method AccessPolicy Require Auth Method - azure
Ad AccessPolicy Require Azure Ad - certificate
Access
Policy Require Certificate - common
Name AccessPolicy Require Common Name - device
Posture AccessPolicy Require Device Posture - email
Access
Policy Require Email - email
Domain AccessPolicy Require Email Domain - email
List AccessPolicy Require Email List - everyone
Access
Policy Require Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Require External Evaluation - geo
Access
Policy Require Geo - github
Organization AccessPolicy Require Github Organization - group
Access
Policy Require Group - gsuite
Access
Policy Require Gsuite - ip
Access
Policy Require Ip - ip
List AccessPolicy Require Ip List - login
Method AccessPolicy Require Login Method - okta
Access
Policy Require Okta - saml
Access
Policy Require Saml - service
Token AccessPolicy Require Service Token
- any
Valid AccessService Token Policy Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessPolicy Require Auth Context - auth
Method AccessPolicy Require Auth Method - azure
Ad AccessPolicy Require Azure Ad - certificate
Access
Policy Require Certificate - common
Name AccessPolicy Require Common Name - device
Posture AccessPolicy Require Device Posture - email
Access
Policy Require Email - email
Domain AccessPolicy Require Email Domain - email
List AccessPolicy Require Email List - everyone
Access
Policy Require Everyone - An empty object which matches on all users.
- external
Evaluation AccessPolicy Require External Evaluation - geo
Access
Policy Require Geo - github
Organization AccessPolicy Require Github Organization - group
Access
Policy Require Group - gsuite
Access
Policy Require Gsuite - ip
Access
Policy Require Ip - ip
List AccessPolicy Require Ip List - login
Method AccessPolicy Require Login Method - okta
Access
Policy Require Okta - saml
Access
Policy Require Saml - service
Token AccessPolicy Require Service Token
- any_
valid_ Accessservice_ token Policy Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessPolicy Require Auth Context - auth_
method AccessPolicy Require Auth Method - azure_
ad AccessPolicy Require Azure Ad - certificate
Access
Policy Require Certificate - common_
name AccessPolicy Require Common Name - device_
posture AccessPolicy Require Device Posture - email
Access
Policy Require Email - email_
domain AccessPolicy Require Email Domain - email_
list AccessPolicy Require Email List - everyone
Access
Policy Require Everyone - An empty object which matches on all users.
- external_
evaluation AccessPolicy Require External Evaluation - geo
Access
Policy Require Geo - github_
organization AccessPolicy Require Github Organization - group
Access
Policy Require Group - gsuite
Access
Policy Require Gsuite - ip
Access
Policy Require Ip - ip_
list AccessPolicy Require Ip List - login_
method AccessPolicy Require Login Method - okta
Access
Policy Require Okta - saml
Access
Policy Require Saml - service_
token AccessPolicy Require Service Token
- any
Valid Property MapService Token - An empty object which matches on all service tokens.
- auth
Context Property Map - auth
Method Property Map - azure
Ad Property Map - certificate Property Map
- common
Name Property Map - device
Posture Property Map - email Property Map
- email
Domain Property Map - email
List Property Map - everyone Property Map
- An empty object which matches on all users.
- external
Evaluation Property Map - geo Property Map
- github
Organization Property Map - group Property Map
- gsuite Property Map
- ip Property Map
- ip
List Property Map - login
Method Property Map - okta Property Map
- saml Property Map
- service
Token Property Map
AccessPolicyRequireAuthContext, AccessPolicyRequireAuthContextArgs
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Ac
Id string - The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- Identity
Provider stringId - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
- ac
Id string - The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identity
Provider stringId - The ID of your Azure identity provider.
- ac_
id str - The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_
provider_ strid - The ID of your Azure identity provider.
- ac
Id String - The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyRequireAuthMethod, AccessPolicyRequireAuthMethodArgs
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- Auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method string - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_
method str - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth
Method String - The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
AccessPolicyRequireAzureAd, AccessPolicyRequireAzureAdArgs
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- Identity
Provider stringId - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identity
Provider stringId - The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_
provider_ strid - The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identity
Provider StringId - The ID of your Azure identity provider.
AccessPolicyRequireCommonName, AccessPolicyRequireCommonNameArgs
- Common
Name string - The common name to match.
- Common
Name string - The common name to match.
- common
Name String - The common name to match.
- common
Name string - The common name to match.
- common_
name str - The common name to match.
- common
Name String - The common name to match.
AccessPolicyRequireDevicePosture, AccessPolicyRequireDevicePostureArgs
- Integration
Uid string - The ID of a device posture integration.
- Integration
Uid string - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
- integration
Uid string - The ID of a device posture integration.
- integration_
uid str - The ID of a device posture integration.
- integration
Uid String - The ID of a device posture integration.
AccessPolicyRequireEmail, AccessPolicyRequireEmailArgs
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
AccessPolicyRequireEmailDomain, AccessPolicyRequireEmailDomainArgs
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
AccessPolicyRequireEmailList, AccessPolicyRequireEmailListArgs
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
AccessPolicyRequireExternalEvaluation, AccessPolicyRequireExternalEvaluationArgs
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- Evaluate
Url string - The API endpoint containing your business logic.
- Keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url string - The API endpoint containing your business logic.
- keys
Url string - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_
url str - The API endpoint containing your business logic.
- keys_
url str - The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate
Url String - The API endpoint containing your business logic.
- keys
Url String - The API endpoint containing the key that Access uses to verify that the response came from your API.
AccessPolicyRequireGeo, AccessPolicyRequireGeoArgs
- Country
Code string - The country code that should be matched.
- Country
Code string - The country code that should be matched.
- country
Code String - The country code that should be matched.
- country
Code string - The country code that should be matched.
- country_
code str - The country code that should be matched.
- country
Code String - The country code that should be matched.
AccessPolicyRequireGithubOrganization, AccessPolicyRequireGithubOrganizationArgs
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- Identity
Provider stringId - The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identity
Provider stringId - The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_
provider_ strid - The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identity
Provider StringId - The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
AccessPolicyRequireGroup, AccessPolicyRequireGroupArgs
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
AccessPolicyRequireGsuite, AccessPolicyRequireGsuiteArgs
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- Identity
Provider stringId - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identity
Provider stringId - The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_
provider_ strid - The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identity
Provider StringId - The ID of your Google Workspace identity provider.
AccessPolicyRequireIp, AccessPolicyRequireIpArgs
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
AccessPolicyRequireIpList, AccessPolicyRequireIpListArgs
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
AccessPolicyRequireLoginMethod, AccessPolicyRequireLoginMethodArgs
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
AccessPolicyRequireOkta, AccessPolicyRequireOktaArgs
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- Identity
Provider stringId - The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identity
Provider stringId - The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_
provider_ strid - The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identity
Provider StringId - The ID of your Okta identity provider.
- name String
- The name of the Okta group.
AccessPolicyRequireSaml, AccessPolicyRequireSamlArgs
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- Attribute
Name string - The name of the SAML attribute.
- Attribute
Value string - The SAML attribute value to look for.
- Identity
Provider stringId - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
- attribute
Name string - The name of the SAML attribute.
- attribute
Value string - The SAML attribute value to look for.
- identity
Provider stringId - The ID of your SAML identity provider.
- attribute_
name str - The name of the SAML attribute.
- attribute_
value str - The SAML attribute value to look for.
- identity_
provider_ strid - The ID of your SAML identity provider.
- attribute
Name String - The name of the SAML attribute.
- attribute
Value String - The SAML attribute value to look for.
- identity
Provider StringId - The ID of your SAML identity provider.
AccessPolicyRequireServiceToken, AccessPolicyRequireServiceTokenArgs
- Token
Id string - The ID of a Service Token.
- Token
Id string - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
- token
Id string - The ID of a Service Token.
- token_
id str - The ID of a Service Token.
- token
Id String - The ID of a Service Token.
Import
$ pulumi import cloudflare:index/accessPolicy:AccessPolicy example '<account_id>/<policy_id>'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.