aws-deployment-framework
aws-deployment-framework copied to clipboard
The AWS Deployment Framework (ADF) is an extensive and flexible framework to manage and deploy resources across multiple AWS accounts and regions based on AWS Organizations.
If you have a deployment map targeting accounts via tags. (I.e "managed_by_adf: True:) and you tag an Organization unit with the same tag. It will break the target resolution because...
Hi, when bootstrapping accounts via ADF it's possible to use "only" one Service Control Policy (in the form of scp.json file within the adf-bootstrap folder from the aws-deployment-framework-bootstrap repository on...
AWS fairly recently added added a new control IAM.21 to AWS Foundational Security Best Practices see: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-fsbp-controls.html#fsbp-iam-21 aws-deployment-framework/src/template.yml When ADF is deployed some of the policies in https://github.com/awslabs/aws-deployment-framework/blob/f60bfaff93fb0d73b46bf7ff332f4c264cd3044d/src/template.yml fail to...
Current [package_transform.sh](codebase/initial_commit/bootstrap_repository/adf-build/shared/helpers/package_transform.sh) does not support deploying lambda with Image as PackageType. Following error is emitted during the build `Error: Missing option '--image-repository' or '--image-repositories'` If no objection I can fix...
Following the code below from the user manual for specifying a tag for the custom codebuild image. ``` pipelines: - name: example-custom-image default_providers: source: ... build: provider: codebuild image: repository_arn:...
## Expected Behavior The `aws-deployment-framework-pipelines` pipeline should successfully sync from CodeCommit when the Deployment account is bootstrapped for the first time. ## Current Behavior An error is given which indicates...
When you disable the deploy stage like this: ```yaml - name: sample-codebuild-only default_providers: source: provider: codecommit properties: account_id: 111111111111 build: provider: codebuild deploy: provider: cloudformation enabled: False ``` It fails...
Hello Team, I want to know if the renaming of AWS account and Closure of AWS account is in scope for upcoming Releases in ADF. I have seen a Issue(marked...
### What and Why Currently if creating a new pipeline or repository we have to create a deployment map in the pipelines repository. This is a fine approach at the...
I currently have this deploymentmap ```yaml pipelines: - name: ben-test-pipeline tags: &pipeline_tags client: sandbox-ben default_providers: source: provider: codecommit properties: account_id: &sandbox_ben "111111111111" repository: adf-test-source branch: main targets: - path: *sandbox_ben...