1. Packages
  2. AWS Control Tower
Viewing docs for AWS Control Tower v0.0.2
published on Friday, Oct 20, 2023 by lbrlabs

AWS Control Tower

awscontroltower logo
Viewing docs for AWS Control Tower v0.0.2
published on Friday, Oct 20, 2023 by lbrlabs
    Try Pulumi Cloud free. Your team will thank you.

    The AWS Control Tower provider for Pulumi can be used to provision AWS account with AWS Control Tower.

    The AWS Control Tower provider must be configured with the required permissions to manage AWS accounts in AWS Control Tower.

    Example

    
    import * as controltower from "@lbrlabs/pulumi-awscontroltower";
    
    const account = new controltower.ControlTowerAwsAccount("account", {
      organizationalUnit: "Production",
      email: "mail@example.com",
      name: "Some User",
      organizationalUnitIdOnDelete: "ou-48hfnvbc-ufo",
      closeAccountOnDelete: true,
      sso: {
        firstName: "Some",
        lastName: "User",
        email: "mail@example.com",
      },
    });
    
    import lbrlabs_pulumi_aws_controltower as controltower
    
    account = controltower.ControlTowerAwsAccount(
        "account",
        organizational_unit="Production",
        email="mail@example.com",
        name="Some User",
        organizational_unit_id_on_delete="ou-48hfnvbc-ufo",
        close_account_on_delete=True,
        sso={
            "firstName": "Some",
            "lastName": "User",
            "email": "mail@example.com"
        }
    
    awscontroltower logo
    Viewing docs for AWS Control Tower v0.0.2
    published on Friday, Oct 20, 2023 by lbrlabs
      Try Pulumi Cloud free. Your team will thank you.