mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-17 05:34:17 +08:00

This adds aws_config_offline, which allows the user to download demo_config.h for the MQTT Mutual Auth Demo using a webpage. This also adds aws_config_quick_start, which provides a means to generate demo_config.h for the Mutual Auth Demo with boto3.
25 lines
694 B
Plaintext
25 lines
694 B
Plaintext
{
|
|
"Version": "2012-10-17",
|
|
"Statement": [
|
|
{
|
|
"Effect": "Allow",
|
|
"Action": "iot:Connect",
|
|
"Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
|
|
},
|
|
{
|
|
"Effect": "Allow",
|
|
"Action": "iot:Publish",
|
|
"Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
|
|
},
|
|
{
|
|
"Effect": "Allow",
|
|
"Action": "iot:Subscribe",
|
|
"Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
|
|
},
|
|
{
|
|
"Effect": "Allow",
|
|
"Action": "iot:Receive",
|
|
"Resource": "arn:aws:iot:<aws-region>:<aws-account-id>:*"
|
|
}
|
|
]
|
|
} |