@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
160 lines • 6.74 kB
JavaScript
;
// *** 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.FolderKajPolicyConfig = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("../utilities"));
/**
* `FolderKajPolicyConfigs` is a folder-level singleton resource
* used to configure the default KAJ policy of newly created key.
*
* > **Note:** FolderKajPolicyConfigs cannot be deleted from Google Cloud Platform.
* Destroying a Terraform-managed FolderKajPolicyConfigs will remove it from state but
* *will not delete the resource from Google Cloud Platform.*
*
* > **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
* See Provider Versions for more details on beta resources.
*
* To get more information about FolderKajPolicyConfig, see:
*
* * [API documentation](https://cloud.google.com/kms/docs/reference/rest/v1/KeyAccessJustificationsPolicyConfig)
* * How-to Guides
* * [Set default Key Access Justifications policy](https://cloud.google.com/assured-workloads/key-access-justifications/docs/set-default-policy)
*
* ## Example Usage
*
* ### Kms Folder Kaj Policy Config Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* import * as random from "@pulumi/random";
* import * as time from "@pulumiverse/time";
*
* // Create Folder in GCP Organization.
* const kajFolder = new gcp.organizations.Folder("kaj_folder", {
* displayName: "folder-kajc",
* parent: "organizations/123456789",
* deletionProtection: false,
* });
* const projectSuffix = new random.index.Id("project_suffix", {byteLength: 4});
* // Create a project for enabling KMS API.
* const kmsProject = new gcp.organizations.Project("kms_project", {
* projectId: `kms-api-project${projectSuffix.hex}`,
* name: `kms-api-project${projectSuffix.hex}`,
* folderId: kajFolder.folderId,
* billingAccount: "000000-0000000-0000000-000000",
* deletionPolicy: "DELETE",
* }, {
* dependsOn: [kajFolder],
* });
* // Enable the Cloud KMS API.
* const kmsApiService = new gcp.projects.Service("kms_api_service", {
* service: "cloudkms.googleapis.com",
* project: kmsProject.projectId,
* disableDependentServices: true,
* }, {
* dependsOn: [kmsProject],
* });
* const waitEnableServiceApi = new time.Sleep("wait_enable_service_api", {createDuration: "30s"}, {
* dependsOn: [kmsApiService],
* });
* // Update folder level KAJ default policy
* const example = new gcp.kms.FolderKajPolicyConfig("example", {
* folder: kajFolder.folderId,
* defaultKeyAccessJustificationPolicy: {
* allowedAccessReasons: [
* "CUSTOMER_INITIATED_ACCESS",
* "GOOGLE_INITIATED_SYSTEM_OPERATION",
* ],
* },
* }, {
* dependsOn: [waitEnableServiceApi],
* });
* ```
*
* ## Import
*
* FolderKajPolicyConfig can be imported using any of these accepted formats:
*
* * `folders/{{folder}}/kajPolicyConfig`
* * `{{folder}}`
*
* When using the `pulumi import` command, FolderKajPolicyConfig can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:kms/folderKajPolicyConfig:FolderKajPolicyConfig default folders/{{folder}}/kajPolicyConfig
* $ pulumi import gcp:kms/folderKajPolicyConfig:FolderKajPolicyConfig default {{folder}}
* ```
*/
class FolderKajPolicyConfig extends pulumi.CustomResource {
/**
* Get an existing FolderKajPolicyConfig 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 FolderKajPolicyConfig(name, state, { ...opts, id: id });
}
/** @internal */
static __pulumiType = 'gcp:kms/folderKajPolicyConfig:FolderKajPolicyConfig';
/**
* Returns true if the given object is an instance of FolderKajPolicyConfig. 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'] === FolderKajPolicyConfig.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["defaultKeyAccessJustificationPolicy"] = state?.defaultKeyAccessJustificationPolicy;
resourceInputs["folder"] = state?.folder;
}
else {
const args = argsOrState;
if (args?.folder === undefined && !opts.urn) {
throw new Error("Missing required property 'folder'");
}
resourceInputs["defaultKeyAccessJustificationPolicy"] = args?.defaultKeyAccessJustificationPolicy;
resourceInputs["folder"] = args?.folder;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(FolderKajPolicyConfig.__pulumiType, name, resourceInputs, opts);
}
}
exports.FolderKajPolicyConfig = FolderKajPolicyConfig;
//# sourceMappingURL=folderKajPolicyConfig.js.map