#### AWS数据源配置
##### 凭据配置
+ 凭据类型 `Access key`
+ 配置文件中可注入变量 `${credentialAccessKey}`, `${credentialSecret}`
<b style="color:red">注意YML格式,并删除配置中的注释</b>
##### 属性(YML)
~~~
aws:
account:
id: 1234567890
name: '主账户'
accessKeyId: ${credentialAccessKey}
secretKey: ${credentialSecret}
# https://docs.aws.amazon.com/zh_cn/general/latest/gr/rande.html
# 香港
regionId: ap-east-1
# 伦敦
regionIds:
- eu-west-2
ec2:
# EC2实例规格
instances: "https://tedivm.github.io/ec2details/api/ec2instances.json"
~~~