cloudflare.AccessGroup
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustAccessGroup = new cloudflare.ZeroTrustAccessGroup("example_zero_trust_access_group", {
includes: [{
group: {
id: "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}],
name: "Allow devs",
zoneId: "zone_id",
excludes: [{
group: {
id: "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}],
isDefault: true,
requires: [{
group: {
id: "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}],
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_access_group = cloudflare.ZeroTrustAccessGroup("example_zero_trust_access_group",
includes=[{
"group": {
"id": "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}],
name="Allow devs",
zone_id="zone_id",
excludes=[{
"group": {
"id": "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}],
is_default=True,
requires=[{
"group": {
"id": "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
}])
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZeroTrustAccessGroup(ctx, "example_zero_trust_access_group", &cloudflare.ZeroTrustAccessGroupArgs{
Includes: cloudflare.ZeroTrustAccessGroupIncludeArray{
&cloudflare.ZeroTrustAccessGroupIncludeArgs{
Group: &cloudflare.ZeroTrustAccessGroupIncludeGroupArgs{
Id: pulumi.String("aa0a4aab-672b-4bdb-bc33-a59f1130a11f"),
},
},
},
Name: pulumi.String("Allow devs"),
ZoneId: pulumi.String("zone_id"),
Excludes: cloudflare.ZeroTrustAccessGroupExcludeArray{
&cloudflare.ZeroTrustAccessGroupExcludeArgs{
Group: &cloudflare.ZeroTrustAccessGroupExcludeGroupArgs{
Id: pulumi.String("aa0a4aab-672b-4bdb-bc33-a59f1130a11f"),
},
},
},
IsDefault: pulumi.Bool(true),
Requires: cloudflare.ZeroTrustAccessGroupRequireArray{
&cloudflare.ZeroTrustAccessGroupRequireArgs{
Group: &cloudflare.ZeroTrustAccessGroupRequireGroupArgs{
Id: pulumi.String("aa0a4aab-672b-4bdb-bc33-a59f1130a11f"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleZeroTrustAccessGroup = new Cloudflare.ZeroTrustAccessGroup("example_zero_trust_access_group", new()
{
Includes = new[]
{
new Cloudflare.Inputs.ZeroTrustAccessGroupIncludeArgs
{
Group = new Cloudflare.Inputs.ZeroTrustAccessGroupIncludeGroupArgs
{
Id = "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
},
},
Name = "Allow devs",
ZoneId = "zone_id",
Excludes = new[]
{
new Cloudflare.Inputs.ZeroTrustAccessGroupExcludeArgs
{
Group = new Cloudflare.Inputs.ZeroTrustAccessGroupExcludeGroupArgs
{
Id = "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
},
},
IsDefault = true,
Requires = new[]
{
new Cloudflare.Inputs.ZeroTrustAccessGroupRequireArgs
{
Group = new Cloudflare.Inputs.ZeroTrustAccessGroupRequireGroupArgs
{
Id = "aa0a4aab-672b-4bdb-bc33-a59f1130a11f",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZeroTrustAccessGroup;
import com.pulumi.cloudflare.ZeroTrustAccessGroupArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupIncludeGroupArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupExcludeArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupExcludeGroupArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupRequireArgs;
import com.pulumi.cloudflare.inputs.ZeroTrustAccessGroupRequireGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleZeroTrustAccessGroup = new ZeroTrustAccessGroup("exampleZeroTrustAccessGroup", ZeroTrustAccessGroupArgs.builder()
.includes(ZeroTrustAccessGroupIncludeArgs.builder()
.group(ZeroTrustAccessGroupIncludeGroupArgs.builder()
.id("aa0a4aab-672b-4bdb-bc33-a59f1130a11f")
.build())
.build())
.name("Allow devs")
.zoneId("zone_id")
.excludes(ZeroTrustAccessGroupExcludeArgs.builder()
.group(ZeroTrustAccessGroupExcludeGroupArgs.builder()
.id("aa0a4aab-672b-4bdb-bc33-a59f1130a11f")
.build())
.build())
.isDefault(true)
.requires(ZeroTrustAccessGroupRequireArgs.builder()
.group(ZeroTrustAccessGroupRequireGroupArgs.builder()
.id("aa0a4aab-672b-4bdb-bc33-a59f1130a11f")
.build())
.build())
.build());
}
}
resources:
exampleZeroTrustAccessGroup:
type: cloudflare:ZeroTrustAccessGroup
name: example_zero_trust_access_group
properties:
includes:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
name: Allow devs
zoneId: zone_id
excludes:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
isDefault: true
requires:
- group:
id: aa0a4aab-672b-4bdb-bc33-a59f1130a11f
Create AccessGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccessGroup(name: string, args: AccessGroupArgs, opts?: CustomResourceOptions);
@overload
def AccessGroup(resource_name: str,
args: AccessGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccessGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
excludes: Optional[Sequence[AccessGroupExcludeArgs]] = None,
includes: Optional[Sequence[AccessGroupIncludeArgs]] = None,
is_default: Optional[bool] = None,
name: Optional[str] = None,
requires: Optional[Sequence[AccessGroupRequireArgs]] = None,
zone_id: Optional[str] = None)
func NewAccessGroup(ctx *Context, name string, args AccessGroupArgs, opts ...ResourceOption) (*AccessGroup, error)
public AccessGroup(string name, AccessGroupArgs args, CustomResourceOptions? opts = null)
public AccessGroup(String name, AccessGroupArgs args)
public AccessGroup(String name, AccessGroupArgs args, CustomResourceOptions options)
type: cloudflare:AccessGroup
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 AccessGroupArgs
- 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 AccessGroupArgs
- 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 AccessGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccessGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccessGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AccessGroup 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 AccessGroup resource accepts the following input properties:
- Includes
List<Access
Group 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 group.
- Account
Id string - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- Excludes
List<Access
Group Exclude> - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Is
Default bool - Whether this is the default group
- Requires
List<Access
Group Require> - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- Includes
[]Access
Group 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 group.
- Account
Id string - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- Excludes
[]Access
Group Exclude Args - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Is
Default bool - Whether this is the default group
- Requires
[]Access
Group Require Args - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- includes
List<Access
Group 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 group.
- account
Id String - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- excludes
List<Access
Group Exclude> - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- is
Default Boolean - Whether this is the default group
- requires
List<Access
Group Require> - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- zone
Id String - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- includes
Access
Group 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 group.
- account
Id string - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- excludes
Access
Group Exclude[] - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- is
Default boolean - Whether this is the default group
- requires
Access
Group Require[] - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- includes
Sequence[Access
Group 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 group.
- account_
id str - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- excludes
Sequence[Access
Group Exclude Args] - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- is_
default bool - Whether this is the default group
- requires
Sequence[Access
Group Require Args] - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- zone_
id str - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- 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 group.
- account
Id String - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- excludes List<Property Map>
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- is
Default Boolean - Whether this is the default group
- requires List<Property Map>
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- zone
Id String - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the AccessGroup resource produces the following output properties:
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str
Look up Existing AccessGroup Resource
Get an existing AccessGroup 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?: AccessGroupState, opts?: CustomResourceOptions): AccessGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
created_at: Optional[str] = None,
excludes: Optional[Sequence[AccessGroupExcludeArgs]] = None,
includes: Optional[Sequence[AccessGroupIncludeArgs]] = None,
is_default: Optional[bool] = None,
name: Optional[str] = None,
requires: Optional[Sequence[AccessGroupRequireArgs]] = None,
updated_at: Optional[str] = None,
zone_id: Optional[str] = None) -> AccessGroup
func GetAccessGroup(ctx *Context, name string, id IDInput, state *AccessGroupState, opts ...ResourceOption) (*AccessGroup, error)
public static AccessGroup Get(string name, Input<string> id, AccessGroupState? state, CustomResourceOptions? opts = null)
public static AccessGroup get(String name, Output<String> id, AccessGroupState state, CustomResourceOptions options)
resources: _: type: cloudflare:AccessGroup 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 - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- Created
At string - Excludes
List<Access
Group Exclude> - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Includes
List<Access
Group Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Is
Default bool - Whether this is the default group
- Name string
- The name of the Access group.
- Requires
List<Access
Group Require> - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Updated
At string - Zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- Account
Id string - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- Created
At string - Excludes
[]Access
Group Exclude Args - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Includes
[]Access
Group Include Args - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- Is
Default bool - Whether this is the default group
- Name string
- The name of the Access group.
- Requires
[]Access
Group Require Args - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Updated
At string - Zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- account
Id String - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- created
At String - excludes
List<Access
Group Exclude> - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- includes
List<Access
Group Include> - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- is
Default Boolean - Whether this is the default group
- name String
- The name of the Access group.
- requires
List<Access
Group Require> - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- updated
At String - zone
Id String - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- account
Id string - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- created
At string - excludes
Access
Group Exclude[] - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- includes
Access
Group Include[] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- is
Default boolean - Whether this is the default group
- name string
- The name of the Access group.
- requires
Access
Group Require[] - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- updated
At string - zone
Id string - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- account_
id str - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- created_
at str - excludes
Sequence[Access
Group Exclude Args] - Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- includes
Sequence[Access
Group Include Args] - Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- is_
default bool - Whether this is the default group
- name str
- The name of the Access group.
- requires
Sequence[Access
Group Require Args] - Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- updated_
at str - zone_
id str - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- account
Id String - The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- created
At String - excludes List<Property Map>
- Rules evaluated with a NOT logical operator. To match a 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.
- is
Default Boolean - Whether this is the default group
- name String
- The name of the Access group.
- requires List<Property Map>
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- updated
At String - zone
Id String - The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
Supporting Types
AccessGroupExclude, AccessGroupExcludeArgs
- Any
Valid AccessService Token Group Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Exclude Auth Context - Auth
Method AccessGroup Exclude Auth Method - Azure
Ad AccessGroup Exclude Azure Ad - Certificate
Access
Group Exclude Certificate - Common
Name AccessGroup Exclude Common Name - Device
Posture AccessGroup Exclude Device Posture - Email
Access
Group Exclude Email - Email
Domain AccessGroup Exclude Email Domain - Email
List AccessGroup Exclude Email List - Everyone
Access
Group Exclude Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Exclude External Evaluation - Geo
Access
Group Exclude Geo - Github
Organization AccessGroup Exclude Github Organization - Group
Access
Group Exclude Group - Gsuite
Access
Group Exclude Gsuite - Ip
Access
Group Exclude Ip - Ip
List AccessGroup Exclude Ip List - Login
Method AccessGroup Exclude Login Method - Okta
Access
Group Exclude Okta - Saml
Access
Group Exclude Saml - Service
Token AccessGroup Exclude Service Token
- Any
Valid AccessService Token Group Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Exclude Auth Context - Auth
Method AccessGroup Exclude Auth Method - Azure
Ad AccessGroup Exclude Azure Ad - Certificate
Access
Group Exclude Certificate - Common
Name AccessGroup Exclude Common Name - Device
Posture AccessGroup Exclude Device Posture - Email
Access
Group Exclude Email - Email
Domain AccessGroup Exclude Email Domain - Email
List AccessGroup Exclude Email List - Everyone
Access
Group Exclude Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Exclude External Evaluation - Geo
Access
Group Exclude Geo - Github
Organization AccessGroup Exclude Github Organization - Group
Access
Group Exclude Group - Gsuite
Access
Group Exclude Gsuite - Ip
Access
Group Exclude Ip - Ip
List AccessGroup Exclude Ip List - Login
Method AccessGroup Exclude Login Method - Okta
Access
Group Exclude Okta - Saml
Access
Group Exclude Saml - Service
Token AccessGroup Exclude Service Token
- any
Valid AccessService Token Group Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Exclude Auth Context - auth
Method AccessGroup Exclude Auth Method - azure
Ad AccessGroup Exclude Azure Ad - certificate
Access
Group Exclude Certificate - common
Name AccessGroup Exclude Common Name - device
Posture AccessGroup Exclude Device Posture - email
Access
Group Exclude Email - email
Domain AccessGroup Exclude Email Domain - email
List AccessGroup Exclude Email List - everyone
Access
Group Exclude Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Exclude External Evaluation - geo
Access
Group Exclude Geo - github
Organization AccessGroup Exclude Github Organization - group
Access
Group Exclude Group - gsuite
Access
Group Exclude Gsuite - ip
Access
Group Exclude Ip - ip
List AccessGroup Exclude Ip List - login
Method AccessGroup Exclude Login Method - okta
Access
Group Exclude Okta - saml
Access
Group Exclude Saml - service
Token AccessGroup Exclude Service Token
- any
Valid AccessService Token Group Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Exclude Auth Context - auth
Method AccessGroup Exclude Auth Method - azure
Ad AccessGroup Exclude Azure Ad - certificate
Access
Group Exclude Certificate - common
Name AccessGroup Exclude Common Name - device
Posture AccessGroup Exclude Device Posture - email
Access
Group Exclude Email - email
Domain AccessGroup Exclude Email Domain - email
List AccessGroup Exclude Email List - everyone
Access
Group Exclude Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Exclude External Evaluation - geo
Access
Group Exclude Geo - github
Organization AccessGroup Exclude Github Organization - group
Access
Group Exclude Group - gsuite
Access
Group Exclude Gsuite - ip
Access
Group Exclude Ip - ip
List AccessGroup Exclude Ip List - login
Method AccessGroup Exclude Login Method - okta
Access
Group Exclude Okta - saml
Access
Group Exclude Saml - service
Token AccessGroup Exclude Service Token
- any_
valid_ Accessservice_ token Group Exclude Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessGroup Exclude Auth Context - auth_
method AccessGroup Exclude Auth Method - azure_
ad AccessGroup Exclude Azure Ad - certificate
Access
Group Exclude Certificate - common_
name AccessGroup Exclude Common Name - device_
posture AccessGroup Exclude Device Posture - email
Access
Group Exclude Email - email_
domain AccessGroup Exclude Email Domain - email_
list AccessGroup Exclude Email List - everyone
Access
Group Exclude Everyone - An empty object which matches on all users.
- external_
evaluation AccessGroup Exclude External Evaluation - geo
Access
Group Exclude Geo - github_
organization AccessGroup Exclude Github Organization - group
Access
Group Exclude Group - gsuite
Access
Group Exclude Gsuite - ip
Access
Group Exclude Ip - ip_
list AccessGroup Exclude Ip List - login_
method AccessGroup Exclude Login Method - okta
Access
Group Exclude Okta - saml
Access
Group Exclude Saml - service_
token AccessGroup 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
AccessGroupExcludeAuthContext, AccessGroupExcludeAuthContextArgs
- 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.
AccessGroupExcludeAuthMethod, AccessGroupExcludeAuthMethodArgs
- 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.
AccessGroupExcludeAzureAd, AccessGroupExcludeAzureAdArgs
- 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.
AccessGroupExcludeCommonName, AccessGroupExcludeCommonNameArgs
- 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.
AccessGroupExcludeDevicePosture, AccessGroupExcludeDevicePostureArgs
- 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.
AccessGroupExcludeEmail, AccessGroupExcludeEmailArgs
- 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.
AccessGroupExcludeEmailDomain, AccessGroupExcludeEmailDomainArgs
- 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.
AccessGroupExcludeEmailList, AccessGroupExcludeEmailListArgs
- 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.
AccessGroupExcludeExternalEvaluation, AccessGroupExcludeExternalEvaluationArgs
- 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.
AccessGroupExcludeGeo, AccessGroupExcludeGeoArgs
- 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.
AccessGroupExcludeGithubOrganization, AccessGroupExcludeGithubOrganizationArgs
- 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
AccessGroupExcludeGroup, AccessGroupExcludeGroupArgs
- 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.
AccessGroupExcludeGsuite, AccessGroupExcludeGsuiteArgs
- 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.
AccessGroupExcludeIp, AccessGroupExcludeIpArgs
- 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.
AccessGroupExcludeIpList, AccessGroupExcludeIpListArgs
- 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.
AccessGroupExcludeLoginMethod, AccessGroupExcludeLoginMethodArgs
- 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.
AccessGroupExcludeOkta, AccessGroupExcludeOktaArgs
- 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.
AccessGroupExcludeSaml, AccessGroupExcludeSamlArgs
- 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.
AccessGroupExcludeServiceToken, AccessGroupExcludeServiceTokenArgs
- 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.
AccessGroupInclude, AccessGroupIncludeArgs
- Any
Valid AccessService Token Group Include Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Include Auth Context - Auth
Method AccessGroup Include Auth Method - Azure
Ad AccessGroup Include Azure Ad - Certificate
Access
Group Include Certificate - Common
Name AccessGroup Include Common Name - Device
Posture AccessGroup Include Device Posture - Email
Access
Group Include Email - Email
Domain AccessGroup Include Email Domain - Email
List AccessGroup Include Email List - Everyone
Access
Group Include Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Include External Evaluation - Geo
Access
Group Include Geo - Github
Organization AccessGroup Include Github Organization - Group
Access
Group Include Group - Gsuite
Access
Group Include Gsuite - Ip
Access
Group Include Ip - Ip
List AccessGroup Include Ip List - Login
Method AccessGroup Include Login Method - Okta
Access
Group Include Okta - Saml
Access
Group Include Saml - Service
Token AccessGroup Include Service Token
- Any
Valid AccessService Token Group Include Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Include Auth Context - Auth
Method AccessGroup Include Auth Method - Azure
Ad AccessGroup Include Azure Ad - Certificate
Access
Group Include Certificate - Common
Name AccessGroup Include Common Name - Device
Posture AccessGroup Include Device Posture - Email
Access
Group Include Email - Email
Domain AccessGroup Include Email Domain - Email
List AccessGroup Include Email List - Everyone
Access
Group Include Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Include External Evaluation - Geo
Access
Group Include Geo - Github
Organization AccessGroup Include Github Organization - Group
Access
Group Include Group - Gsuite
Access
Group Include Gsuite - Ip
Access
Group Include Ip - Ip
List AccessGroup Include Ip List - Login
Method AccessGroup Include Login Method - Okta
Access
Group Include Okta - Saml
Access
Group Include Saml - Service
Token AccessGroup Include Service Token
- any
Valid AccessService Token Group Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Include Auth Context - auth
Method AccessGroup Include Auth Method - azure
Ad AccessGroup Include Azure Ad - certificate
Access
Group Include Certificate - common
Name AccessGroup Include Common Name - device
Posture AccessGroup Include Device Posture - email
Access
Group Include Email - email
Domain AccessGroup Include Email Domain - email
List AccessGroup Include Email List - everyone
Access
Group Include Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Include External Evaluation - geo
Access
Group Include Geo - github
Organization AccessGroup Include Github Organization - group
Access
Group Include Group - gsuite
Access
Group Include Gsuite - ip
Access
Group Include Ip - ip
List AccessGroup Include Ip List - login
Method AccessGroup Include Login Method - okta
Access
Group Include Okta - saml
Access
Group Include Saml - service
Token AccessGroup Include Service Token
- any
Valid AccessService Token Group Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Include Auth Context - auth
Method AccessGroup Include Auth Method - azure
Ad AccessGroup Include Azure Ad - certificate
Access
Group Include Certificate - common
Name AccessGroup Include Common Name - device
Posture AccessGroup Include Device Posture - email
Access
Group Include Email - email
Domain AccessGroup Include Email Domain - email
List AccessGroup Include Email List - everyone
Access
Group Include Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Include External Evaluation - geo
Access
Group Include Geo - github
Organization AccessGroup Include Github Organization - group
Access
Group Include Group - gsuite
Access
Group Include Gsuite - ip
Access
Group Include Ip - ip
List AccessGroup Include Ip List - login
Method AccessGroup Include Login Method - okta
Access
Group Include Okta - saml
Access
Group Include Saml - service
Token AccessGroup Include Service Token
- any_
valid_ Accessservice_ token Group Include Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessGroup Include Auth Context - auth_
method AccessGroup Include Auth Method - azure_
ad AccessGroup Include Azure Ad - certificate
Access
Group Include Certificate - common_
name AccessGroup Include Common Name - device_
posture AccessGroup Include Device Posture - email
Access
Group Include Email - email_
domain AccessGroup Include Email Domain - email_
list AccessGroup Include Email List - everyone
Access
Group Include Everyone - An empty object which matches on all users.
- external_
evaluation AccessGroup Include External Evaluation - geo
Access
Group Include Geo - github_
organization AccessGroup Include Github Organization - group
Access
Group Include Group - gsuite
Access
Group Include Gsuite - ip
Access
Group Include Ip - ip_
list AccessGroup Include Ip List - login_
method AccessGroup Include Login Method - okta
Access
Group Include Okta - saml
Access
Group Include Saml - service_
token AccessGroup 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
AccessGroupIncludeAuthContext, AccessGroupIncludeAuthContextArgs
- 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.
AccessGroupIncludeAuthMethod, AccessGroupIncludeAuthMethodArgs
- 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.
AccessGroupIncludeAzureAd, AccessGroupIncludeAzureAdArgs
- 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.
AccessGroupIncludeCommonName, AccessGroupIncludeCommonNameArgs
- 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.
AccessGroupIncludeDevicePosture, AccessGroupIncludeDevicePostureArgs
- 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.
AccessGroupIncludeEmail, AccessGroupIncludeEmailArgs
- 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.
AccessGroupIncludeEmailDomain, AccessGroupIncludeEmailDomainArgs
- 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.
AccessGroupIncludeEmailList, AccessGroupIncludeEmailListArgs
- 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.
AccessGroupIncludeExternalEvaluation, AccessGroupIncludeExternalEvaluationArgs
- 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.
AccessGroupIncludeGeo, AccessGroupIncludeGeoArgs
- 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.
AccessGroupIncludeGithubOrganization, AccessGroupIncludeGithubOrganizationArgs
- 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
AccessGroupIncludeGroup, AccessGroupIncludeGroupArgs
- 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.
AccessGroupIncludeGsuite, AccessGroupIncludeGsuiteArgs
- 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.
AccessGroupIncludeIp, AccessGroupIncludeIpArgs
- 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.
AccessGroupIncludeIpList, AccessGroupIncludeIpListArgs
- 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.
AccessGroupIncludeLoginMethod, AccessGroupIncludeLoginMethodArgs
- 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.
AccessGroupIncludeOkta, AccessGroupIncludeOktaArgs
- 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.
AccessGroupIncludeSaml, AccessGroupIncludeSamlArgs
- 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.
AccessGroupIncludeServiceToken, AccessGroupIncludeServiceTokenArgs
- 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.
AccessGroupRequire, AccessGroupRequireArgs
- Any
Valid AccessService Token Group Require Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Require Auth Context - Auth
Method AccessGroup Require Auth Method - Azure
Ad AccessGroup Require Azure Ad - Certificate
Access
Group Require Certificate - Common
Name AccessGroup Require Common Name - Device
Posture AccessGroup Require Device Posture - Email
Access
Group Require Email - Email
Domain AccessGroup Require Email Domain - Email
List AccessGroup Require Email List - Everyone
Access
Group Require Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Require External Evaluation - Geo
Access
Group Require Geo - Github
Organization AccessGroup Require Github Organization - Group
Access
Group Require Group - Gsuite
Access
Group Require Gsuite - Ip
Access
Group Require Ip - Ip
List AccessGroup Require Ip List - Login
Method AccessGroup Require Login Method - Okta
Access
Group Require Okta - Saml
Access
Group Require Saml - Service
Token AccessGroup Require Service Token
- Any
Valid AccessService Token Group Require Any Valid Service Token - An empty object which matches on all service tokens.
- Auth
Context AccessGroup Require Auth Context - Auth
Method AccessGroup Require Auth Method - Azure
Ad AccessGroup Require Azure Ad - Certificate
Access
Group Require Certificate - Common
Name AccessGroup Require Common Name - Device
Posture AccessGroup Require Device Posture - Email
Access
Group Require Email - Email
Domain AccessGroup Require Email Domain - Email
List AccessGroup Require Email List - Everyone
Access
Group Require Everyone - An empty object which matches on all users.
- External
Evaluation AccessGroup Require External Evaluation - Geo
Access
Group Require Geo - Github
Organization AccessGroup Require Github Organization - Group
Access
Group Require Group - Gsuite
Access
Group Require Gsuite - Ip
Access
Group Require Ip - Ip
List AccessGroup Require Ip List - Login
Method AccessGroup Require Login Method - Okta
Access
Group Require Okta - Saml
Access
Group Require Saml - Service
Token AccessGroup Require Service Token
- any
Valid AccessService Token Group Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Require Auth Context - auth
Method AccessGroup Require Auth Method - azure
Ad AccessGroup Require Azure Ad - certificate
Access
Group Require Certificate - common
Name AccessGroup Require Common Name - device
Posture AccessGroup Require Device Posture - email
Access
Group Require Email - email
Domain AccessGroup Require Email Domain - email
List AccessGroup Require Email List - everyone
Access
Group Require Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Require External Evaluation - geo
Access
Group Require Geo - github
Organization AccessGroup Require Github Organization - group
Access
Group Require Group - gsuite
Access
Group Require Gsuite - ip
Access
Group Require Ip - ip
List AccessGroup Require Ip List - login
Method AccessGroup Require Login Method - okta
Access
Group Require Okta - saml
Access
Group Require Saml - service
Token AccessGroup Require Service Token
- any
Valid AccessService Token Group Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth
Context AccessGroup Require Auth Context - auth
Method AccessGroup Require Auth Method - azure
Ad AccessGroup Require Azure Ad - certificate
Access
Group Require Certificate - common
Name AccessGroup Require Common Name - device
Posture AccessGroup Require Device Posture - email
Access
Group Require Email - email
Domain AccessGroup Require Email Domain - email
List AccessGroup Require Email List - everyone
Access
Group Require Everyone - An empty object which matches on all users.
- external
Evaluation AccessGroup Require External Evaluation - geo
Access
Group Require Geo - github
Organization AccessGroup Require Github Organization - group
Access
Group Require Group - gsuite
Access
Group Require Gsuite - ip
Access
Group Require Ip - ip
List AccessGroup Require Ip List - login
Method AccessGroup Require Login Method - okta
Access
Group Require Okta - saml
Access
Group Require Saml - service
Token AccessGroup Require Service Token
- any_
valid_ Accessservice_ token Group Require Any Valid Service Token - An empty object which matches on all service tokens.
- auth_
context AccessGroup Require Auth Context - auth_
method AccessGroup Require Auth Method - azure_
ad AccessGroup Require Azure Ad - certificate
Access
Group Require Certificate - common_
name AccessGroup Require Common Name - device_
posture AccessGroup Require Device Posture - email
Access
Group Require Email - email_
domain AccessGroup Require Email Domain - email_
list AccessGroup Require Email List - everyone
Access
Group Require Everyone - An empty object which matches on all users.
- external_
evaluation AccessGroup Require External Evaluation - geo
Access
Group Require Geo - github_
organization AccessGroup Require Github Organization - group
Access
Group Require Group - gsuite
Access
Group Require Gsuite - ip
Access
Group Require Ip - ip_
list AccessGroup Require Ip List - login_
method AccessGroup Require Login Method - okta
Access
Group Require Okta - saml
Access
Group Require Saml - service_
token AccessGroup 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
AccessGroupRequireAuthContext, AccessGroupRequireAuthContextArgs
- 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.
AccessGroupRequireAuthMethod, AccessGroupRequireAuthMethodArgs
- 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.
AccessGroupRequireAzureAd, AccessGroupRequireAzureAdArgs
- 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.
AccessGroupRequireCommonName, AccessGroupRequireCommonNameArgs
- 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.
AccessGroupRequireDevicePosture, AccessGroupRequireDevicePostureArgs
- 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.
AccessGroupRequireEmail, AccessGroupRequireEmailArgs
- 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.
AccessGroupRequireEmailDomain, AccessGroupRequireEmailDomainArgs
- 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.
AccessGroupRequireEmailList, AccessGroupRequireEmailListArgs
- 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.
AccessGroupRequireExternalEvaluation, AccessGroupRequireExternalEvaluationArgs
- 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.
AccessGroupRequireGeo, AccessGroupRequireGeoArgs
- 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.
AccessGroupRequireGithubOrganization, AccessGroupRequireGithubOrganizationArgs
- 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
AccessGroupRequireGroup, AccessGroupRequireGroupArgs
- 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.
AccessGroupRequireGsuite, AccessGroupRequireGsuiteArgs
- 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.
AccessGroupRequireIp, AccessGroupRequireIpArgs
- 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.
AccessGroupRequireIpList, AccessGroupRequireIpListArgs
- 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.
AccessGroupRequireLoginMethod, AccessGroupRequireLoginMethodArgs
- 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.
AccessGroupRequireOkta, AccessGroupRequireOktaArgs
- 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.
AccessGroupRequireSaml, AccessGroupRequireSamlArgs
- 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.
AccessGroupRequireServiceToken, AccessGroupRequireServiceTokenArgs
- 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/accessGroup:AccessGroup example '<{accounts|zones}/{account_id|zone_id}>/<group_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.