Access Group Args
data class AccessGroupArgs(val accountId: Output<String>? = null, val excludes: Output<List<AccessGroupExcludeArgs>>? = null, val includes: Output<List<AccessGroupIncludeArgs>>? = null, val name: Output<String>? = null, val requires: Output<List<AccessGroupRequireArgs>>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<AccessGroupArgs>
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/accessGroup:AccessGroup example <account_id>/<group_id>
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(accountId: Output<String>? = null, excludes: Output<List<AccessGroupExcludeArgs>>? = null, includes: Output<List<AccessGroupIncludeArgs>>? = null, name: Output<String>? = null, requires: Output<List<AccessGroupRequireArgs>>? = null, zoneId: Output<String>? = null)