acm

Access Context Manager

SecurityGCP
General

General information about the service.

Description

Google Access Context Manager allows admins to define fine-grained, attribute-based access control for projects and resources.

Service ID

accesscontextmanager.googleapis.com

Resource Pattern

accessPolicies/{policy}/accessLevels/{level}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

acm-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_access_context_manager_access_level" "main" {
2 parent = "accessPolicies/${var.access_policy}"
3 name = "accessPolicies/${var.access_policy}/accessLevels/acm_${var.environment}"
4 title = "acm-${var.environment}"
5
6 basic {
7 conditions {
8 ip_subnetworks = [var.corp_cidr]
9 }
10 }
11}
Utilities

Utilities to support app deployment or configuration.