1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. projects
  5. IAMAuditConfig
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.projects.IAMAuditConfig

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Four different resources help you manage your IAM policy for a project. Each of these resources serves a different use case:

    • gcp.projects.IAMPolicy: Authoritative. Sets the IAM policy for the project and replaces any existing policy already attached.
    • gcp.projects.IAMBinding: Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the project are preserved.
    • gcp.projects.IAMMember: Non-authoritative. Updates the IAM policy to grant a role to a new member. Other members for the role for the project are preserved.
    • gcp.projects.IAMAuditConfig: Authoritative for a given service. Updates the IAM policy to enable audit logging for the given service.

    Note: gcp.projects.IAMPolicy cannot be used in conjunction with gcp.projects.IAMBinding, gcp.projects.IAMMember, or gcp.projects.IAMAuditConfig or they will fight over what your policy should be.

    Note: gcp.projects.IAMBinding resources can be used in conjunction with gcp.projects.IAMMember resources only if they do not grant privilege to the same role.

    Note: The underlying API method projects.setIamPolicy has a lot of constraints which are documented here. In addition to these constraints, IAM Conditions cannot be used with Basic Roles such as Owner. Violating these constraints will result in the API returning 400 error code so please review these if you encounter errors with this resource.

    google_project_iam_policy

    !> Be careful! You can accidentally lock yourself out of your project using this resource. Deleting a gcp.projects.IAMPolicy removes access from anyone without organization-level access to the project. Proceed with caution. It’s not recommended to use gcp.projects.IAMPolicy with your provider project to avoid locking yourself out, and it should generally only be used with projects fully managed by this provider. If you do use this resource, it is recommended to import the policy before applying the change.

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const admin = gcp.organizations.getIAMPolicy({
        bindings: [{
            role: "roles/editor",
            members: ["user:jane@example.com"],
        }],
    });
    const project = new gcp.projects.IAMPolicy("project", {
        project: "your-project-id",
        policyData: admin.then(admin => admin.policyData),
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
        role="roles/editor",
        members=["user:jane@example.com"],
    )])
    project = gcp.projects.IAMPolicy("project",
        project="your-project-id",
        policy_data=admin.policy_data)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
    			Bindings: []organizations.GetIAMPolicyBinding{
    				{
    					Role: "roles/editor",
    					Members: []string{
    						"user:jane@example.com",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = projects.NewIAMPolicy(ctx, "project", &projects.IAMPolicyArgs{
    			Project:    pulumi.String("your-project-id"),
    			PolicyData: pulumi.String(admin.PolicyData),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
        {
            Bindings = new[]
            {
                new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
                {
                    Role = "roles/editor",
                    Members = new[]
                    {
                        "user:jane@example.com",
                    },
                },
            },
        });
    
        var project = new Gcp.Projects.IAMPolicy("project", new()
        {
            Project = "your-project-id",
            PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.organizations.OrganizationsFunctions;
    import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
    import com.pulumi.gcp.projects.IAMPolicy;
    import com.pulumi.gcp.projects.IAMPolicyArgs;
    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) {
            final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
                .bindings(GetIAMPolicyBindingArgs.builder()
                    .role("roles/editor")
                    .members("user:jane@example.com")
                    .build())
                .build());
    
            var project = new IAMPolicy("project", IAMPolicyArgs.builder()        
                .project("your-project-id")
                .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMPolicy
        properties:
          project: your-project-id
          policyData: ${admin.policyData}
    variables:
      admin:
        fn::invoke:
          Function: gcp:organizations:getIAMPolicy
          Arguments:
            bindings:
              - role: roles/editor
                members:
                  - user:jane@example.com
    

    With IAM Conditions:

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const admin = gcp.organizations.getIAMPolicy({
        bindings: [{
            role: "roles/compute.admin",
            members: ["user:jane@example.com"],
            condition: {
                title: "expires_after_2019_12_31",
                description: "Expiring at midnight of 2019-12-31",
                expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
            },
        }],
    });
    const project = new gcp.projects.IAMPolicy("project", {
        project: "your-project-id",
        policyData: admin.then(admin => admin.policyData),
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    admin = gcp.organizations.get_iam_policy(bindings=[gcp.organizations.GetIAMPolicyBindingArgs(
        role="roles/compute.admin",
        members=["user:jane@example.com"],
        condition=gcp.organizations.GetIAMPolicyBindingConditionArgs(
            title="expires_after_2019_12_31",
            description="Expiring at midnight of 2019-12-31",
            expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        ),
    )])
    project = gcp.projects.IAMPolicy("project",
        project="your-project-id",
        policy_data=admin.policy_data)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		admin, err := organizations.LookupIAMPolicy(ctx, &organizations.LookupIAMPolicyArgs{
    			Bindings: []organizations.GetIAMPolicyBinding{
    				{
    					Role: "roles/compute.admin",
    					Members: []string{
    						"user:jane@example.com",
    					},
    					Condition: {
    						Title:       "expires_after_2019_12_31",
    						Description: pulumi.StringRef("Expiring at midnight of 2019-12-31"),
    						Expression:  "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = projects.NewIAMPolicy(ctx, "project", &projects.IAMPolicyArgs{
    			Project:    pulumi.String("your-project-id"),
    			PolicyData: pulumi.String(admin.PolicyData),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var admin = Gcp.Organizations.GetIAMPolicy.Invoke(new()
        {
            Bindings = new[]
            {
                new Gcp.Organizations.Inputs.GetIAMPolicyBindingInputArgs
                {
                    Role = "roles/compute.admin",
                    Members = new[]
                    {
                        "user:jane@example.com",
                    },
                    Condition = new Gcp.Organizations.Inputs.GetIAMPolicyBindingConditionInputArgs
                    {
                        Title = "expires_after_2019_12_31",
                        Description = "Expiring at midnight of 2019-12-31",
                        Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
                    },
                },
            },
        });
    
        var project = new Gcp.Projects.IAMPolicy("project", new()
        {
            Project = "your-project-id",
            PolicyData = admin.Apply(getIAMPolicyResult => getIAMPolicyResult.PolicyData),
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.organizations.OrganizationsFunctions;
    import com.pulumi.gcp.organizations.inputs.GetIAMPolicyArgs;
    import com.pulumi.gcp.projects.IAMPolicy;
    import com.pulumi.gcp.projects.IAMPolicyArgs;
    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) {
            final var admin = OrganizationsFunctions.getIAMPolicy(GetIAMPolicyArgs.builder()
                .bindings(GetIAMPolicyBindingArgs.builder()
                    .role("roles/compute.admin")
                    .members("user:jane@example.com")
                    .condition(GetIAMPolicyBindingConditionArgs.builder()
                        .title("expires_after_2019_12_31")
                        .description("Expiring at midnight of 2019-12-31")
                        .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                        .build())
                    .build())
                .build());
    
            var project = new IAMPolicy("project", IAMPolicyArgs.builder()        
                .project("your-project-id")
                .policyData(admin.applyValue(getIAMPolicyResult -> getIAMPolicyResult.policyData()))
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMPolicy
        properties:
          project: your-project-id
          policyData: ${admin.policyData}
    variables:
      admin:
        fn::invoke:
          Function: gcp:organizations:getIAMPolicy
          Arguments:
            bindings:
              - role: roles/compute.admin
                members:
                  - user:jane@example.com
                condition:
                  title: expires_after_2019_12_31
                  description: Expiring at midnight of 2019-12-31
                  expression: request.time < timestamp("2020-01-01T00:00:00Z")
    

    google_project_iam_binding

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.projects.IAMBinding("project", {
        project: "your-project-id",
        role: "roles/editor",
        members: ["user:jane@example.com"],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.projects.IAMBinding("project",
        project="your-project-id",
        role="roles/editor",
        members=["user:jane@example.com"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewIAMBinding(ctx, "project", &projects.IAMBindingArgs{
    			Project: pulumi.String("your-project-id"),
    			Role:    pulumi.String("roles/editor"),
    			Members: pulumi.StringArray{
    				pulumi.String("user:jane@example.com"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Projects.IAMBinding("project", new()
        {
            Project = "your-project-id",
            Role = "roles/editor",
            Members = new[]
            {
                "user:jane@example.com",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.IAMBinding;
    import com.pulumi.gcp.projects.IAMBindingArgs;
    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 project = new IAMBinding("project", IAMBindingArgs.builder()        
                .project("your-project-id")
                .role("roles/editor")
                .members("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMBinding
        properties:
          project: your-project-id
          role: roles/editor
          members:
            - user:jane@example.com
    

    With IAM Conditions:

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.projects.IAMBinding("project", {
        project: "your-project-id",
        role: "roles/container.admin",
        members: ["user:jane@example.com"],
        condition: {
            title: "expires_after_2019_12_31",
            description: "Expiring at midnight of 2019-12-31",
            expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.projects.IAMBinding("project",
        project="your-project-id",
        role="roles/container.admin",
        members=["user:jane@example.com"],
        condition=gcp.projects.IAMBindingConditionArgs(
            title="expires_after_2019_12_31",
            description="Expiring at midnight of 2019-12-31",
            expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewIAMBinding(ctx, "project", &projects.IAMBindingArgs{
    			Project: pulumi.String("your-project-id"),
    			Role:    pulumi.String("roles/container.admin"),
    			Members: pulumi.StringArray{
    				pulumi.String("user:jane@example.com"),
    			},
    			Condition: &projects.IAMBindingConditionArgs{
    				Title:       pulumi.String("expires_after_2019_12_31"),
    				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
    				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Projects.IAMBinding("project", new()
        {
            Project = "your-project-id",
            Role = "roles/container.admin",
            Members = new[]
            {
                "user:jane@example.com",
            },
            Condition = new Gcp.Projects.Inputs.IAMBindingConditionArgs
            {
                Title = "expires_after_2019_12_31",
                Description = "Expiring at midnight of 2019-12-31",
                Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.IAMBinding;
    import com.pulumi.gcp.projects.IAMBindingArgs;
    import com.pulumi.gcp.projects.inputs.IAMBindingConditionArgs;
    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 project = new IAMBinding("project", IAMBindingArgs.builder()        
                .project("your-project-id")
                .role("roles/container.admin")
                .members("user:jane@example.com")
                .condition(IAMBindingConditionArgs.builder()
                    .title("expires_after_2019_12_31")
                    .description("Expiring at midnight of 2019-12-31")
                    .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                    .build())
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMBinding
        properties:
          project: your-project-id
          role: roles/container.admin
          members:
            - user:jane@example.com
          condition:
            title: expires_after_2019_12_31
            description: Expiring at midnight of 2019-12-31
            expression: request.time < timestamp("2020-01-01T00:00:00Z")
    

    google_project_iam_member

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.projects.IAMMember("project", {
        project: "your-project-id",
        role: "roles/editor",
        member: "user:jane@example.com",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.projects.IAMMember("project",
        project="your-project-id",
        role="roles/editor",
        member="user:jane@example.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewIAMMember(ctx, "project", &projects.IAMMemberArgs{
    			Project: pulumi.String("your-project-id"),
    			Role:    pulumi.String("roles/editor"),
    			Member:  pulumi.String("user:jane@example.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Projects.IAMMember("project", new()
        {
            Project = "your-project-id",
            Role = "roles/editor",
            Member = "user:jane@example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.IAMMember;
    import com.pulumi.gcp.projects.IAMMemberArgs;
    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 project = new IAMMember("project", IAMMemberArgs.builder()        
                .project("your-project-id")
                .role("roles/editor")
                .member("user:jane@example.com")
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMMember
        properties:
          project: your-project-id
          role: roles/editor
          member: user:jane@example.com
    

    With IAM Conditions:

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.projects.IAMMember("project", {
        project: "your-project-id",
        role: "roles/firebase.admin",
        member: "user:jane@example.com",
        condition: {
            title: "expires_after_2019_12_31",
            description: "Expiring at midnight of 2019-12-31",
            expression: "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.projects.IAMMember("project",
        project="your-project-id",
        role="roles/firebase.admin",
        member="user:jane@example.com",
        condition=gcp.projects.IAMMemberConditionArgs(
            title="expires_after_2019_12_31",
            description="Expiring at midnight of 2019-12-31",
            expression="request.time < timestamp(\"2020-01-01T00:00:00Z\")",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewIAMMember(ctx, "project", &projects.IAMMemberArgs{
    			Project: pulumi.String("your-project-id"),
    			Role:    pulumi.String("roles/firebase.admin"),
    			Member:  pulumi.String("user:jane@example.com"),
    			Condition: &projects.IAMMemberConditionArgs{
    				Title:       pulumi.String("expires_after_2019_12_31"),
    				Description: pulumi.String("Expiring at midnight of 2019-12-31"),
    				Expression:  pulumi.String("request.time < timestamp(\"2020-01-01T00:00:00Z\")"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Projects.IAMMember("project", new()
        {
            Project = "your-project-id",
            Role = "roles/firebase.admin",
            Member = "user:jane@example.com",
            Condition = new Gcp.Projects.Inputs.IAMMemberConditionArgs
            {
                Title = "expires_after_2019_12_31",
                Description = "Expiring at midnight of 2019-12-31",
                Expression = "request.time < timestamp(\"2020-01-01T00:00:00Z\")",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.IAMMember;
    import com.pulumi.gcp.projects.IAMMemberArgs;
    import com.pulumi.gcp.projects.inputs.IAMMemberConditionArgs;
    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 project = new IAMMember("project", IAMMemberArgs.builder()        
                .project("your-project-id")
                .role("roles/firebase.admin")
                .member("user:jane@example.com")
                .condition(IAMMemberConditionArgs.builder()
                    .title("expires_after_2019_12_31")
                    .description("Expiring at midnight of 2019-12-31")
                    .expression("request.time < timestamp(\"2020-01-01T00:00:00Z\")")
                    .build())
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMMember
        properties:
          project: your-project-id
          role: roles/firebase.admin
          member: user:jane@example.com
          condition:
            title: expires_after_2019_12_31
            description: Expiring at midnight of 2019-12-31
            expression: request.time < timestamp("2020-01-01T00:00:00Z")
    

    google_project_iam_audit_config

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const project = new gcp.projects.IAMAuditConfig("project", {
        project: "your-project-id",
        service: "allServices",
        auditLogConfigs: [
            {
                logType: "ADMIN_READ",
            },
            {
                logType: "DATA_READ",
                exemptedMembers: ["user:joebloggs@example.com"],
            },
        ],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    project = gcp.projects.IAMAuditConfig("project",
        project="your-project-id",
        service="allServices",
        audit_log_configs=[
            gcp.projects.IAMAuditConfigAuditLogConfigArgs(
                log_type="ADMIN_READ",
            ),
            gcp.projects.IAMAuditConfigAuditLogConfigArgs(
                log_type="DATA_READ",
                exempted_members=["user:joebloggs@example.com"],
            ),
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/projects"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := projects.NewIAMAuditConfig(ctx, "project", &projects.IAMAuditConfigArgs{
    			Project: pulumi.String("your-project-id"),
    			Service: pulumi.String("allServices"),
    			AuditLogConfigs: projects.IAMAuditConfigAuditLogConfigArray{
    				&projects.IAMAuditConfigAuditLogConfigArgs{
    					LogType: pulumi.String("ADMIN_READ"),
    				},
    				&projects.IAMAuditConfigAuditLogConfigArgs{
    					LogType: pulumi.String("DATA_READ"),
    					ExemptedMembers: pulumi.StringArray{
    						pulumi.String("user:joebloggs@example.com"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Gcp.Projects.IAMAuditConfig("project", new()
        {
            Project = "your-project-id",
            Service = "allServices",
            AuditLogConfigs = new[]
            {
                new Gcp.Projects.Inputs.IAMAuditConfigAuditLogConfigArgs
                {
                    LogType = "ADMIN_READ",
                },
                new Gcp.Projects.Inputs.IAMAuditConfigAuditLogConfigArgs
                {
                    LogType = "DATA_READ",
                    ExemptedMembers = new[]
                    {
                        "user:joebloggs@example.com",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.projects.IAMAuditConfig;
    import com.pulumi.gcp.projects.IAMAuditConfigArgs;
    import com.pulumi.gcp.projects.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 project = new IAMAuditConfig("project", IAMAuditConfigArgs.builder()        
                .project("your-project-id")
                .service("allServices")
                .auditLogConfigs(            
                    IAMAuditConfigAuditLogConfigArgs.builder()
                        .logType("ADMIN_READ")
                        .build(),
                    IAMAuditConfigAuditLogConfigArgs.builder()
                        .logType("DATA_READ")
                        .exemptedMembers("user:joebloggs@example.com")
                        .build())
                .build());
    
        }
    }
    
    resources:
      project:
        type: gcp:projects:IAMAuditConfig
        properties:
          project: your-project-id
          service: allServices
          auditLogConfigs:
            - logType: ADMIN_READ
            - logType: DATA_READ
              exemptedMembers:
                - user:joebloggs@example.com
    

    Create IAMAuditConfig Resource

    new IAMAuditConfig(name: string, args: IAMAuditConfigArgs, opts?: CustomResourceOptions);
    @overload
    def IAMAuditConfig(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       audit_log_configs: Optional[Sequence[IAMAuditConfigAuditLogConfigArgs]] = None,
                       project: Optional[str] = None,
                       service: Optional[str] = None)
    @overload
    def IAMAuditConfig(resource_name: str,
                       args: IAMAuditConfigArgs,
                       opts: Optional[ResourceOptions] = 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:projects:IAMAuditConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args IAMAuditConfigArgs
    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 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 string
    The unique name of the resource.
    args IAMAuditConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IAMAuditConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IAMAuditConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The IAMAuditConfig resource accepts the following input properties:

    AuditLogConfigs List<IAMAuditConfigAuditLogConfig>
    The configuration for logging of each type of permission. This can be specified multiple times. Structure is documented below.
    Project string
    The project id of the target project. This is not inferred from the provider.
    Service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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.
    Project string
    The project id of the target project. This is not inferred from the provider.
    Service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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.
    project String
    The project id of the target project. This is not inferred from the provider.
    service String
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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.
    project string
    The project id of the target project. This is not inferred from the provider.
    service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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.
    project str
    The project id of the target project. This is not inferred from the provider.
    service str
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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.
    project String
    The project id of the target project. This is not inferred from the provider.
    service String
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    Etag string
    (Computed) The etag of the project's IAM policy.
    Id string
    The provider-assigned unique ID for this managed resource.
    etag String
    (Computed) The etag of the project's IAM policy.
    id String
    The provider-assigned unique ID for this managed resource.
    etag string
    (Computed) The etag of the project's IAM policy.
    id string
    The provider-assigned unique ID for this managed resource.
    etag str
    (Computed) The etag of the project's IAM policy.
    id str
    The provider-assigned unique ID for this managed resource.
    etag String
    (Computed) The etag of the project's 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,
            project: 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)
    Resource lookup is not supported in YAML
    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.
    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
    (Computed) The etag of the project's IAM policy.
    Project string
    The project id of the target project. This is not inferred from the provider.
    Service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    Project string
    The project id of the target project. This is not inferred from the provider.
    Service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    project String
    The project id of the target project. This is not inferred from the provider.
    service String
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    project string
    The project id of the target project. This is not inferred from the provider.
    service string
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    project str
    The project id of the target project. This is not inferred from the provider.
    service str
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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
    (Computed) The etag of the project's IAM policy.
    project String
    The project id of the target project. This is not inferred from the provider.
    service String
    Service which will be enabled for audit logging. The special value allServices covers all services. Note that if there are google_project_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 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. The format is the same as that for members.
    LogType 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. The format is the same as that for members.
    logType 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. The format is the same as that for members.
    logType 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. The format is the same as that for members.
    log_type 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. The format is the same as that for members.
    logType 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. The format is the same as that for members.

    Import

    Importing Audit Configs

    An audit config can be imported into a google_project_iam_audit_config resource using the resource’s project_id and the service, e.g:

    • "{{project_id}} foo.googleapis.com"

    An import block (Terraform v1.5.0 and later) can be used to import audit configs:

    tf

    import {

    id = “{{project_id}} foo.googleapis.com”

    to = google_project_iam_audit_config.default

    }

    The pulumi import command can also be used:

    $ pulumi import gcp:projects/iAMAuditConfig:IAMAuditConfig default "{{project_id}} foo.googleapis.com"
    

    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.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi