Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 3x 3x 3x 3x 3x 3x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x | /* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import * as cdk from '@aws-cdk/core'; import {Organization} from './organization' import {OrganizationalUnit} from './organizational-unit' import { Account } from './account'; import { SecureRootUser } from './secure-root-user'; import { OrganizationTrail } from './organization-trail'; import {version} from '../package.json'; /** * AWS Account input details */ export interface AccountSpec { /** * The name of the AWS account */ readonly name: string, /** * The email associated to the AWS account */ readonly email?: string } /** * Organizational Unit Input details */ export interface OUSpec { readonly name: string, readonly accounts: AccountSpec[], readonly nestedOU?: OUSpec[] } /** * Properties for AWS SDLC Organizations Stack * @experimental */ export interface AwsOrganizationsStackProps extends cdk.StackProps { readonly email?: string, readonly nestedOU: OUSpec[] } /** * A Stack creating the Software Life Cycle (SDLC) Organization */ export class AwsOrganizationsStack extends cdk.Stack { private readonly emailPrefix?: string; private readonly domain?: string; private createOrganizationTree(oUSpec: OUSpec, parentId: string, previousSequentialConstruct:cdk.IDependable): cdk.IDependable { let organizationalUnit = new OrganizationalUnit(this, `${oUSpec.name}-OU`, {Name: oUSpec.name, ParentId: parentId}); //adding an explicit dependency as CloudFormation won't infer that Organization, Organizational Units and Accounts must be created or modified sequentially organizationalUnit.node.addDependency(previousSequentialConstruct); previousSequentialConstruct = organizationalUnit; oUSpec.accounts.forEach(accountSpec => { let accountEmail: string; Iif(accountSpec.email) { accountEmail = accountSpec.email; } else Eif(this.emailPrefix && this.domain) { accountEmail = `${this.emailPrefix}+${accountSpec.name}-${cdk.Stack.of(this).account}@${this.domain}` } else{ throw new Error(`Master account email must be provided or an account email for account ${accountSpec.name}`) } let account = new Account(this, accountSpec.name, {email: accountEmail, name: accountSpec.name, parentOrganizationalUnitId: organizationalUnit.id}); //adding an explicit dependency as CloudFormation won't infer that Organization, Organizational Units and Accounts must be created or modified sequentially account.node.addDependency(previousSequentialConstruct); previousSequentialConstruct = account; }); oUSpec.nestedOU?.forEach(nestedOU => { previousSequentialConstruct = this.createOrganizationTree(nestedOU, organizationalUnit.id, previousSequentialConstruct); }); return previousSequentialConstruct; } constructor(scope: cdk.Construct, id: string, props: AwsOrganizationsStackProps) { super(scope, id, {description: `Software development Landing Zone (uksb-1r7an8o45) (version:${version})`, ...props}); Eif(props.nestedOU.length > 0){ let org = new Organization(this, "Organization"); Eif(props.email) { this.emailPrefix = props.email.split('@', 2)[0]; this.domain = props.email.split('@', 2)[1]; } let previousSequentialConstruct: cdk.IDependable = org; props.nestedOU.forEach(nestedOU => { previousSequentialConstruct = this.createOrganizationTree(nestedOU, org.rootId, previousSequentialConstruct); }); let orgTrail = new OrganizationTrail(this, 'OrganizationTrail', { OrganizationId: org.id}); orgTrail.node.addDependency(org); } new SecureRootUser(this, 'SecureRootUser'); } } |