Skip to content

Commit

Permalink
Release v3.1.1 (#335)
Browse files Browse the repository at this point in the history
**Fixes 🐞**

* Fixes `timeout` and `environment_variables` to be used when defined in
  the default CodeBuild Deployment provider properties #307, closes #306.
* Fixes intrinsic functions for account_region param files #333, closes #147.
* Fixes use of deployment from source directly when build stage is
  disabled #334, closes #236 and closes #318.
  • Loading branch information
sbkok authored Mar 3, 2021
1 parent c3d5c33 commit 3aa1d4b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Metadata:
ReadmeUrl: ../docs/serverless-application-repo.md
Labels: ['adf', 'aws-deployment-framework', 'multi-account', 'cicd', 'devops']
HomePageUrl: https://github.com/awslabs/aws-deployment-framework
SemanticVersion: 3.1.0
SemanticVersion: 3.1.1
SourceCodeUrl: https://github.com/awslabs/aws-deployment-framework
Parameters:
CrossAccountAccessRoleName:
Expand Down Expand Up @@ -172,7 +172,7 @@ Resources:
TERMINATION_PROTECTION: false
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ORGANIZATION_ID: !GetAtt Organization.OrganizationId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: StackWaiter
Role: !GetAtt LambdaRole.Arn
Expand All @@ -193,7 +193,7 @@ Resources:
DEPLOYMENT_ACCOUNT_BUCKET: !GetAtt SharedModulesBucketName.Value
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ORGANIZATION_ID: !GetAtt Organization.OrganizationId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: DetermineEventFunction
Role: !GetAtt LambdaRole.Arn
Expand All @@ -214,7 +214,7 @@ Resources:
DEPLOYMENT_ACCOUNT_BUCKET: !GetAtt SharedModulesBucketName.Value
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ORGANIZATION_ID: !GetAtt Organization.OrganizationId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: CrossAccountExecuteFunction
Role: !GetAtt LambdaRole.Arn
Expand All @@ -233,7 +233,7 @@ Resources:
S3_BUCKET_NAME: !Ref BootstrapTemplatesBucket
TERMINATION_PROTECTION: false
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: RoleStackDeploymentFunction
Role: !GetAtt LambdaRole.Arn
Expand All @@ -252,7 +252,7 @@ Resources:
S3_BUCKET_NAME: !Ref BootstrapTemplatesBucket
TERMINATION_PROTECTION: false
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: MovedToRootActionFunction
Role: !GetAtt LambdaRole.Arn
Expand All @@ -271,7 +271,7 @@ Resources:
S3_BUCKET_NAME: !Ref BootstrapTemplatesBucket
TERMINATION_PROTECTION: false
MASTER_ACCOUNT_ID: !Ref AWS::AccountId
ADF_VERSION: 3.1.0
ADF_VERSION: 3.1.1
ADF_LOG_LEVEL: INFO
FunctionName: UpdateResourcePoliciesFunction
Role: !GetAtt LambdaRole.Arn
Expand Down Expand Up @@ -449,7 +449,7 @@ Resources:
Image: "aws/codebuild/standard:5.0"
EnvironmentVariables:
- Name: ADF_VERSION
Value: 3.1.0
Value: 3.1.1
- Name: TERMINATION_PROTECTION
Value: false
- Name: PYTHONPATH
Expand Down Expand Up @@ -713,7 +713,7 @@ Resources:
Type: Custom::InitialCommit
Properties:
ServiceToken: !GetAtt InitialCommitHandler.Arn
Version: 3.1.0
Version: 3.1.1
RepositoryArn: !GetAtt CodeCommitRepository.Arn
DirectoryName: bootstrap_repository
ExistingAccountId: !Ref DeploymentAccountId
Expand Down Expand Up @@ -934,7 +934,7 @@ Resources:
Id: adf-codepipeline-trigger-bootstrap
Outputs:
ADFVersionNumber:
Value: 3.1.0
Value: 3.1.1
Export:
Name: "ADFVersionNumber"
LayerArn:
Expand Down

0 comments on commit 3aa1d4b

Please sign in to comment.