Hi! Is it possible to create a GCP project from Pu...
# general
g
Hi! Is it possible to create a GCP project from Pulumi (as a Pulumi resource)?
g
yes, used it myself already
Copy code
const project = new gcp.organizations.Project(
  desiredProjectId,
  {
    name: desiredProjectId,
    projectId: desiredProjectId,
    billingAccount: GCP_BILLING_ACCOUNT_ID,
    orgId: GCP_ORG_ID
  },
  { protect: true }
);
g
Oh, it’s in organizations module - thank you!