gpt4 book ai didi

amazon-web-services - 如何为 aws appconfig 创建托管配置版本

转载 作者:行者123 更新时间:2023-12-03 08:03:45 24 4
gpt4 key购买 nike

在 AWS AppConfig 中,我创建了应用程序 Testing 和配置文件 TestingFlags。我想使用 CLI 创建托管配置版本。

aws appconfig create-hosted-configuration-version --application-id APP_ID --configuration-profile-id PROF_ID --content eyJ0ZXN0IjogeyJlbmFibGVkIjogZmFsc2V9fQ== --content-type "application/json" out

结果我收到以下错误:

An error occurred (BadRequestException) when calling the CreateHostedConfigurationVersion operation: Error invoking extension AppConfig Feature Flags Helper: Invalid 'Content' data

附注eyJ0ZXN0IjogeyJlbmFibGVkIjogZmFsc2V9fQ==是base64解码的字符串{"test": {"enabled": false}}

内容可能应该以某种特定的方式进行结构。我阅读了本指南 https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html#appconfig-creating-feature-flag-configuration-commandline

我将不胜感激任何帮助。

最佳答案

文档示例不正确。正确的形式是:

aws appconfig create-hosted-configuration-version --application-id APP_ID --configuration-profile-id PROF_ID --cont
ent BASE_64_CONTENT --content-type application/json output.json

其中 BASE_64_CONTENTbase64 编码数据,格式为:

{
"flags": {
"flagkey": {
"name": "flagkey"
}
},
"values": {
"flagkey": {
"enabled": false
}
},
"version": "1"
}

关于amazon-web-services - 如何为 aws appconfig 创建托管配置版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73126989/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com