Zero Trust Access Group Args
data class ZeroTrustAccessGroupArgs(val accountId: Output<String>? = null, val excludes: Output<List<ZeroTrustAccessGroupExcludeArgs>>? = null, val includes: Output<List<ZeroTrustAccessGroupIncludeArgs>>? = null, val name: Output<String>? = null, val requires: Output<List<ZeroTrustAccessGroupRequireArgs>>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<ZeroTrustAccessGroupArgs>
Provides a Cloudflare Access Group resource. Access Groups are used in conjunction with Access Policies to restrict access to a particular resource based on group membership.
It's required that an
account_id
orzone_id
is provided and in most cases using either is fine. However, if you're using a scoped access token, you must provide the argument that matches the token's scope. For example, an access token that is scoped to the "example.com" zone needs to use thezone_id
argument.
Import
$ pulumi import cloudflare:index/zeroTrustAccessGroup:ZeroTrustAccessGroup example <account_id>/<group_id>
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(accountId: Output<String>? = null, excludes: Output<List<ZeroTrustAccessGroupExcludeArgs>>? = null, includes: Output<List<ZeroTrustAccessGroupIncludeArgs>>? = null, name: Output<String>? = null, requires: Output<List<ZeroTrustAccessGroupRequireArgs>>? = null, zoneId: Output<String>? = null)