UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

166 lines 6.98 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProjectAutokeyConfig = void 0; const pulumi = __importStar(require("@pulumi/pulumi")); const utilities = __importStar(require("../utilities")); /** * `ProjectAutokeyConfig` is a singleton resource used to configure the auto-provisioning * flow of CryptoKeys for CMEK. * * > **Note:** ProjectAutokeyConfigs cannot be deleted from Google Cloud Platform. * Destroying a Terraform-managed ProjectAutokeyConfigs will remove it from state but * *will not delete the resource from the project.* * * To get more information about ProjectAutokeyConfig, see: * * * [API documentation](https://cloud.google.com/kms/docs/reference/rest/v1/AutokeyConfig) * * How-to Guides * * [Cloud KMS with Autokey](https://cloud.google.com/kms/docs/kms-with-autokey) * * ## Example Usage * * ### Kms Autokey Config Project * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * import * as time from "@pulumiverse/time"; * * // Create the resource project * const resourceProject = new gcp.organizations.Project("resource_project", { * projectId: "my-project", * name: "my-project", * orgId: "123456789", * billingAccount: "000000-0000000-0000000-000000", * deletionPolicy: "DELETE", * }); * // Enable the Cloud KMS API * const kmsApiService = new gcp.projects.Service("kms_api_service", { * service: "cloudkms.googleapis.com", * project: resourceProject.projectId, * disableDependentServices: true, * }, { * dependsOn: [resourceProject], * }); * // Wait delay after enabling APIs * const waitEnableServiceApi = new time.Sleep("wait_enable_service_api", {createDuration: "30s"}, { * dependsOn: [kmsApiService], * }); * // Create KMS Service Agent * const kmsServiceAgent = new gcp.projects.ServiceIdentity("kms_service_agent", { * service: "cloudkms.googleapis.com", * project: resourceProject.number, * }, { * dependsOn: [waitEnableServiceApi], * }); * // Wait delay after creating service agent * const waitServiceAgent = new time.Sleep("wait_service_agent", {createDuration: "10s"}, { * dependsOn: [kmsServiceAgent], * }); * // Grant the KMS Service Agent the Cloud KMS Admin role * const autokeyProjectAdmin = new gcp.projects.IAMMember("autokey_project_admin", { * project: resourceProject.projectId, * role: "roles/cloudkms.admin", * member: pulumi.interpolate`serviceAccount:service-${resourceProject.number}@gcp-sa-cloudkms.iam.gserviceaccount.com`, * }, { * dependsOn: [waitServiceAgent], * }); * // Wait delay after granting IAM permissions * const waitSrvAccPermissions = new time.Sleep("wait_srv_acc_permissions", {createDuration: "10s"}, { * dependsOn: [autokeyProjectAdmin], * }); * const example_autokeyconfig_project = new gcp.kms.ProjectAutokeyConfig("example-autokeyconfig-project", { * project: resourceProject.number, * keyProjectResolutionMode: "RESOURCE_PROJECT", * }, { * dependsOn: [waitSrvAccPermissions], * }); * ``` * * ## Import * * ProjectAutokeyConfig can be imported using any of these accepted formats: * * * `projects/{{project}}/autokeyConfig` * * `{{project}}` * * When using the `pulumi import` command, ProjectAutokeyConfig can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:kms/projectAutokeyConfig:ProjectAutokeyConfig default projects/{{project}}/autokeyConfig * $ pulumi import gcp:kms/projectAutokeyConfig:ProjectAutokeyConfig default {{project}} * ``` */ class ProjectAutokeyConfig extends pulumi.CustomResource { /** * Get an existing ProjectAutokeyConfig resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new ProjectAutokeyConfig(name, state, { ...opts, id: id }); } /** @internal */ static __pulumiType = 'gcp:kms/projectAutokeyConfig:ProjectAutokeyConfig'; /** * Returns true if the given object is an instance of ProjectAutokeyConfig. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === ProjectAutokeyConfig.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["deletionPolicy"] = state?.deletionPolicy; resourceInputs["etag"] = state?.etag; resourceInputs["keyProjectResolutionMode"] = state?.keyProjectResolutionMode; resourceInputs["project"] = state?.project; } else { const args = argsOrState; resourceInputs["deletionPolicy"] = args?.deletionPolicy; resourceInputs["keyProjectResolutionMode"] = args?.keyProjectResolutionMode; resourceInputs["project"] = args?.project; resourceInputs["etag"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(ProjectAutokeyConfig.__pulumiType, name, resourceInputs, opts); } } exports.ProjectAutokeyConfig = ProjectAutokeyConfig; //# sourceMappingURL=projectAutokeyConfig.js.map