Skip to content

Commit

Permalink
feat(appconfig): graduate to stable 🚀 (#29188)
Browse files Browse the repository at this point in the history
We are excited to graduate the @aws-cdk/aws-appconfig-alpha module to STABLE.
It now lives on as `aws-cdk-lib/aws-appconfig`.

Deprecated function removed:
`deploy()` function is deprecated. 

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
xazhao committed Feb 22, 2024
1 parent f528c47 commit 7feabc1
Show file tree
Hide file tree
Showing 73 changed files with 17,372 additions and 558 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@
"aws-cdk-lib/ignore/**",
"aws-cdk-lib/jsonschema",
"aws-cdk-lib/jsonschema/**",
"aws-cdk-lib/mime-types",
"aws-cdk-lib/mime-types/**",
"aws-cdk-lib/minimatch",
"aws-cdk-lib/minimatch/**",
"aws-cdk-lib/punycode",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"content": "This is the configuration content"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"Resources": {
"MyAppConfigB4B63E75": {
"Type": "AWS::AppConfig::Application",
"Properties": {
"Description": "This is my application for testing",
"Name": "MySampleApplication"
}
},
"MyTaskDefTaskRole727F9D3B": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "ecs-tasks.amazonaws.com"
}
}
],
"Version": "2012-10-17"
}
}
},
"MyTaskDef01F0D39B": {
"Type": "AWS::ECS::TaskDefinition",
"Properties": {
"ContainerDefinitions": [
{
"Essential": true,
"Image": "public.ecr.aws/aws-appconfig/aws-appconfig-agent:latest",
"Name": "AppConfigAgentContainer"
}
],
"Cpu": "256",
"Family": "awsappconfigapplicationMyTaskDef7372410D",
"Memory": "512",
"NetworkMode": "awsvpc",
"RequiresCompatibilities": [
"FARGATE"
],
"TaskRoleArn": {
"Fn::GetAtt": [
"MyTaskDefTaskRole727F9D3B",
"Arn"
]
}
}
}
},
"Parameters": {
"BootstrapVersion": {
"Type": "AWS::SSM::Parameter::Value<String>",
"Default": "/cdk-bootstrap/hnb659fds/version",
"Description": "Version of the CDK Bootstrap resources in this environment, automatically retrieved from SSM Parameter Store. [cdk:skip]"
}
},
"Rules": {
"CheckBootstrapVersion": {
"Assertions": [
{
"Assert": {
"Fn::Not": [
{
"Fn::Contains": [
[
"1",
"2",
"3",
"4",
"5"
],
{
"Ref": "BootstrapVersion"
}
]
}
]
},
"AssertDescription": "CDK bootstrap stack version 6 required. Please run 'cdk bootstrap' with a recent version of the CDK CLI."
}
]
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7feabc1

Please sign in to comment.