{"id":21127281,"url":"https://github.com/pepperize/cdk-organizations-example","last_synced_at":"2026-05-26T03:02:36.764Z","repository":{"id":37075148,"uuid":"450248851","full_name":"pepperize/cdk-organizations-example","owner":"pepperize","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-20T21:53:57.000Z","size":4437,"stargazers_count":5,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-20T23:34:51.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pepperize.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-20T20:31:46.000Z","updated_at":"2026-04-20T21:51:20.000Z","dependencies_parsed_at":"2023-10-23T20:39:28.356Z","dependency_job_id":"7591f063-008f-4bc9-9731-c1f183a06608","html_url":"https://github.com/pepperize/cdk-organizations-example","commit_stats":null,"previous_names":[],"tags_count":1406,"template":false,"template_full_name":null,"purl":"pkg:github/pepperize/cdk-organizations-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pepperize%2Fcdk-organizations-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pepperize%2Fcdk-organizations-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pepperize%2Fcdk-organizations-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pepperize%2Fcdk-organizations-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pepperize","download_url":"https://codeload.github.com/pepperize/cdk-organizations-example/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pepperize%2Fcdk-organizations-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32361478,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T04:48:07.529Z","updated_at":"2026-04-28T01:05:30.574Z","avatar_url":"https://github.com/pepperize.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CDK Organizations Example\n\nThis is an example of creating the AWS Organization, Aws Organizational Unit and AWS Account using cdk.\n\n## Prerequisites\n\n- **[WebStorm](https://www.jetbrains.com/phpstorm/)** or any other IDE for TypeScript development\n- A valid **email** (can be your root account one)\n  - without \"+\" in it\n  - provided by a provider supporting [subaddressing](https://en.wikipedia.org/wiki/Plus_address) which means supporting '+' email extension (Most providers such as gmail/google, outlook etc. support it. If you're not sure check [this page](https://en.wikipedia.org/wiki/Comparison_of_webmail_providers#Features) \"Address modifiers\" column or send an email to yourself adding a plus extension such as `myname+test@myemaildomain.com` . if you receive it, you're good).\n- A root **AWS account** and IAM account with programmatic access\n- **[Node.js](https://nodejs.org/en/download/)**\n- **[yarn](https://yarnpkg.com/getting-started/install)**\n- **[awscli](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html)**\n\n## Quick Start\n\n1. ### Create your management account\n\n   Go to [Create an AWS account](https://portal.aws.amazon.com/billing/signup) and register\n   Remember your 12-digit account number\n\n2. ### Create your first IAM User\n\n   Go to [IAM console](console.aws.amazon.com/iamv2)\n   **Add users** with name `admin`\n   Select AWS access type. Check **Access key - Programmatic access** and **Password - AWS Management Console access**\n\n3. ### Create your first IAM Group\n\n   Go to next: permissions\n   **Create Group** with `Administrator`\n   Attach policy `AdministratorAccess`\n\n4. ### Obtain your credentials\n\n   Skip next: tags\n   Go to next: review\n   Create your user\n\n   Remember your **Access key ID**, **Secret access key** and **password**\n\n5. ### Configure AWS CLI\n\n   Configure your AWS CLI\n\n   ```shell\n   aws configure\n   ```\n\n   See also [Configuration basics](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html)\n\n6. ### Checkout and install\n\n   Clone this repository\n\n   ```shell\n   git clone git@github.com:pepperize/cdk-organizations-example.git\n   ```\n\n   Install dependencies\n\n   ```shell\n   yarn install\n   ```\n\n7. ### Deploy the example organization\n\n   Export your management account number and email\n\n   ```shell\n   export CDK_DEFAULT_ACCOUNT=\u003cyour account i.e. 123456789012\u003e\n   export DEFAULT_EMAIL=\u003cyour email\u003e\n   ```\n\n   Deploy the stack\n\n   ```shell\n   yarn deploy\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpepperize%2Fcdk-organizations-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpepperize%2Fcdk-organizations-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpepperize%2Fcdk-organizations-example/lists"}