1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. organizations
  5. IamAuditConfig
Google Cloud v8.27.0 published on Thursday, Apr 17, 2025 by Pulumi

gcp.organizations.IamAuditConfig

Explore with Pulumi AI

Allows management of audit logging config for a given service for a Google Cloud Platform Organization.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const config = new gcp.organizations.IamAuditConfig("config", {
    orgId: "your-organization-id",
    service: "allServices",
    auditLogConfigs: [{
        logType: "DATA_READ",
        exemptedMembers: ["user:joebloggs@example.com"],
    }],
});
Copy
import pulumi
import pulumi_gcp as gcp

config = gcp.organizations.IamAuditConfig("config",
    org_id="your-organization-id",
    service="allServices",
    audit_log_configs=[{
        "log_type": "DATA_READ",
        "exempted_members": ["user:joebloggs@example.com"],
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := organizations.NewIamAuditConfig(ctx, "config", &organizations.IamAuditConfigArgs{
			OrgId:   pulumi.String("your-organization-id"),
			Service: pulumi.String("allServices"),
			AuditLogConfigs: organizations.IamAuditConfigAuditLogConfigArray{
				&organizations.IamAuditConfigAuditLogConfigArgs{
					LogType: pulumi.String("DATA_READ"),
					ExemptedMembers: pulumi.StringArray{
						pulumi.String("user:joebloggs@example.com"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var config = new Gcp.Organizations.IamAuditConfig("config", new()
    {
        OrgId = "your-organization-id",
        Service = "allServices",
        AuditLogConfigs = new[]
        {
            new Gcp.Organizations.Inputs.IamAuditConfigAuditLogConfigArgs
            {
                LogType = "DATA_READ",
                ExemptedMembers = new[]
                {
                    "user:joebloggs@example.com",
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.IamAuditConfig;
import com.pulumi.gcp.organizations.IamAuditConfigArgs;
import com.pulumi.gcp.organizations.inputs.IamAuditConfigAuditLogConfigArgs;
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 config = new IamAuditConfig("config", IamAuditConfigArgs.builder()
            .orgId("your-organization-id")
            .service("allServices")
            .auditLogConfigs(IamAuditConfigAuditLogConfigArgs.builder()
                .logType("DATA_READ")
                .exemptedMembers("user:joebloggs@example.com")
                .build())
            .build());

    }
}
Copy
resources:
  config:
    type: gcp:organizations:IamAuditConfig
    properties:
      orgId: your-organization-id
      service: allServices
      auditLogConfigs:
        - logType: DATA_READ
          exemptedMembers:
            - user:joebloggs@example.com
Copy

Create IamAuditConfig Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IamAuditConfig(name: string, args: IamAuditConfigArgs, opts?: CustomResourceOptions);
@overload
def IamAuditConfig(resource_name: str,
                   args: IamAuditConfigArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def IamAuditConfig(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   audit_log_configs: Optional[Sequence[IamAuditConfigAuditLogConfigArgs]] = None,
                   org_id: Optional[str] = None,
                   service: Optional[str] = None)
func NewIamAuditConfig(ctx *Context, name string, args IamAuditConfigArgs, opts ...ResourceOption) (*IamAuditConfig, error)
public IamAuditConfig(string name, IamAuditConfigArgs args, CustomResourceOptions? opts = null)
public IamAuditConfig(String name, IamAuditConfigArgs args)
public IamAuditConfig(String name, IamAuditConfigArgs args, CustomResourceOptions options)
type: gcp:organizations:IamAuditConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IamAuditConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IamAuditConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IamAuditConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IamAuditConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IamAuditConfigArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var gcpIamAuditConfigResource = new Gcp.Organizations.IamAuditConfig("gcpIamAuditConfigResource", new()
{
    AuditLogConfigs = new[]
    {
        new Gcp.Organizations.Inputs.IamAuditConfigAuditLogConfigArgs
        {
            LogType = "string",
            ExemptedMembers = new[]
            {
                "string",
            },
        },
    },
    OrgId = "string",
    Service = "string",
});
Copy
example, err := organizations.NewIamAuditConfig(ctx, "gcpIamAuditConfigResource", &organizations.IamAuditConfigArgs{
	AuditLogConfigs: organizations.IamAuditConfigAuditLogConfigArray{
		&organizations.IamAuditConfigAuditLogConfigArgs{
			LogType: pulumi.String("string"),
			ExemptedMembers: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	OrgId:   pulumi.String("string"),
	Service: pulumi.String("string"),
})
Copy
var gcpIamAuditConfigResource = new com.pulumi.gcp.organizations.IamAuditConfig("gcpIamAuditConfigResource", com.pulumi.gcp.organizations.IamAuditConfigArgs.builder()
    .auditLogConfigs(IamAuditConfigAuditLogConfigArgs.builder()
        .logType("string")
        .exemptedMembers("string")
        .build())
    .orgId("string")
    .service("string")
    .build());
Copy
gcp_iam_audit_config_resource = gcp.organizations.IamAuditConfig("gcpIamAuditConfigResource",
    audit_log_configs=[{
        "log_type": "string",
        "exempted_members": ["string"],
    }],
    org_id="string",
    service="string")
Copy
const gcpIamAuditConfigResource = new gcp.organizations.IamAuditConfig("gcpIamAuditConfigResource", {
    auditLogConfigs: [{
        logType: "string",
        exemptedMembers: ["string"],
    }],
    orgId: "string",
    service: "string",
});
Copy
type: gcp:organizations:IamAuditConfig
properties:
    auditLogConfigs:
        - exemptedMembers:
            - string
          logType: string
    orgId: string
    service: string
Copy

IamAuditConfig 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 IamAuditConfig resource accepts the following input properties:

AuditLogConfigs This property is required. List<IamAuditConfigAuditLogConfig>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
OrgId
This property is required.
Changes to this property will trigger replacement.
string
The numeric ID of the organization in which you want to manage the audit logging config.
Service This property is required. string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
AuditLogConfigs This property is required. []IamAuditConfigAuditLogConfigArgs
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
OrgId
This property is required.
Changes to this property will trigger replacement.
string
The numeric ID of the organization in which you want to manage the audit logging config.
Service This property is required. string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs This property is required. List<IamAuditConfigAuditLogConfig>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
orgId
This property is required.
Changes to this property will trigger replacement.
String
The numeric ID of the organization in which you want to manage the audit logging config.
service This property is required. String
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs This property is required. IamAuditConfigAuditLogConfig[]
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
orgId
This property is required.
Changes to this property will trigger replacement.
string
The numeric ID of the organization in which you want to manage the audit logging config.
service This property is required. string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
audit_log_configs This property is required. Sequence[IamAuditConfigAuditLogConfigArgs]
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
org_id
This property is required.
Changes to this property will trigger replacement.
str
The numeric ID of the organization in which you want to manage the audit logging config.
service This property is required. str
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs This property is required. List<Property Map>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
orgId
This property is required.
Changes to this property will trigger replacement.
String
The numeric ID of the organization in which you want to manage the audit logging config.
service This property is required. String
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.

Outputs

All input properties are implicitly available as output properties. Additionally, the IamAuditConfig resource produces the following output properties:

Etag string
The etag of iam policy
Id string
The provider-assigned unique ID for this managed resource.
Etag string
The etag of iam policy
Id string
The provider-assigned unique ID for this managed resource.
etag String
The etag of iam policy
id String
The provider-assigned unique ID for this managed resource.
etag string
The etag of iam policy
id string
The provider-assigned unique ID for this managed resource.
etag str
The etag of iam policy
id str
The provider-assigned unique ID for this managed resource.
etag String
The etag of iam policy
id String
The provider-assigned unique ID for this managed resource.

Look up Existing IamAuditConfig Resource

Get an existing IamAuditConfig 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?: IamAuditConfigState, opts?: CustomResourceOptions): IamAuditConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        audit_log_configs: Optional[Sequence[IamAuditConfigAuditLogConfigArgs]] = None,
        etag: Optional[str] = None,
        org_id: Optional[str] = None,
        service: Optional[str] = None) -> IamAuditConfig
func GetIamAuditConfig(ctx *Context, name string, id IDInput, state *IamAuditConfigState, opts ...ResourceOption) (*IamAuditConfig, error)
public static IamAuditConfig Get(string name, Input<string> id, IamAuditConfigState? state, CustomResourceOptions? opts = null)
public static IamAuditConfig get(String name, Output<String> id, IamAuditConfigState state, CustomResourceOptions options)
resources:  _:    type: gcp:organizations:IamAuditConfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AuditLogConfigs List<IamAuditConfigAuditLogConfig>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
Etag string
The etag of iam policy
OrgId Changes to this property will trigger replacement. string
The numeric ID of the organization in which you want to manage the audit logging config.
Service string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
AuditLogConfigs []IamAuditConfigAuditLogConfigArgs
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
Etag string
The etag of iam policy
OrgId Changes to this property will trigger replacement. string
The numeric ID of the organization in which you want to manage the audit logging config.
Service string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs List<IamAuditConfigAuditLogConfig>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
etag String
The etag of iam policy
orgId Changes to this property will trigger replacement. String
The numeric ID of the organization in which you want to manage the audit logging config.
service String
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs IamAuditConfigAuditLogConfig[]
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
etag string
The etag of iam policy
orgId Changes to this property will trigger replacement. string
The numeric ID of the organization in which you want to manage the audit logging config.
service string
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
audit_log_configs Sequence[IamAuditConfigAuditLogConfigArgs]
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
etag str
The etag of iam policy
org_id Changes to this property will trigger replacement. str
The numeric ID of the organization in which you want to manage the audit logging config.
service str
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.
auditLogConfigs List<Property Map>
The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
etag String
The etag of iam policy
orgId Changes to this property will trigger replacement. String
The numeric ID of the organization in which you want to manage the audit logging config.
service String
Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_organization_iam_audit_config resources covering both allServices and a specific service then the union of the two AuditConfigs is used for that service: the log_types specified in each audit_log_config are enabled, and the exempted_members in each audit_log_config are exempted.

Supporting Types

IamAuditConfigAuditLogConfig
, IamAuditConfigAuditLogConfigArgs

LogType This property is required. string
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
ExemptedMembers List<string>
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
LogType This property is required. string
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
ExemptedMembers []string
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
logType This property is required. String
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
exemptedMembers List<String>
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
logType This property is required. string
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
exemptedMembers string[]
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
log_type This property is required. str
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
exempted_members Sequence[str]
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
logType This property is required. String
Permission type for which logging is to be configured. Must be one of DATA_READ, DATA_WRITE, or ADMIN_READ.
exemptedMembers List<String>
Identities that do not cause logging for this type of permission. Each entry can have one of the following values:

  • user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
  • serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
  • group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
  • domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.

Import

IAM audit config imports use the identifier of the resource in question and the service, e.g.

$ pulumi import gcp:organizations/iamAuditConfig:IamAuditConfig config "your-organization-id foo.googleapis.com"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.