aws config 可以用于存储特定于应用程序的配置(aws 配置除外)吗?
can aws config be used to store application specific configuration (other than aws configurations)?
根据亚马逊文档,aws config 存储 aws 资源配置。它也可以用于存储特定于应用程序的配置吗?
AWS Config 不允许您存储配置信息——它会轮询各种 AWS 服务 API 并收集有关您的 AWS 资源配置的信息……然后它会代表您存储这些信息以供您以后查看。
Config continuously monitors and records your AWS resource configurations and allows you to automate the evaluation of recorded configurations against desired configurations.
但是,有一种用于存储配置数据的服务,称为 AWS¹ Systems Manager Parameter Store。
AWS Systems Manager Parameter Store provides secure, hierarchical storage for configuration data management and secrets management. You can store data such as passwords, database strings, and license codes as parameter values. You can store values as plain text or encrypted data.
https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html
¹ 以前称为 EC2 Systems Manager, 此服务(除了 Parameter Store 之外还包括可选组件)也可以独立于 EC2 使用。有时也称为 SSM.
根据亚马逊文档,aws config 存储 aws 资源配置。它也可以用于存储特定于应用程序的配置吗?
AWS Config 不允许您存储配置信息——它会轮询各种 AWS 服务 API 并收集有关您的 AWS 资源配置的信息……然后它会代表您存储这些信息以供您以后查看。
Config continuously monitors and records your AWS resource configurations and allows you to automate the evaluation of recorded configurations against desired configurations.
但是,有一种用于存储配置数据的服务,称为 AWS¹ Systems Manager Parameter Store。
AWS Systems Manager Parameter Store provides secure, hierarchical storage for configuration data management and secrets management. You can store data such as passwords, database strings, and license codes as parameter values. You can store values as plain text or encrypted data.
https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html
¹ 以前称为 EC2 Systems Manager, 此服务(除了 Parameter Store 之外还包括可选组件)也可以独立于 EC2 使用。有时也称为 SSM.