The following URLs and access types need outgoing permissions in firewalls in order for Mender to work correctly:
Mender access: Devices, APIs and browser access
https://mender.example.com
- Use the same address you specify it in the Server Installation SectionArtifact storage access: Devices, APIs and browser access
Permit access to the following URLs:
https://s3.amazonaws.com/<my-example-artifact-storage>
- Amazon S3 Path-style requesthttps://<my-example-artifact-storage>.s3.amazonaws.com
- Amazon S3 Virtual-hosted-style request
Permit access to your Minio URL defined in Minio Setup Section
https://artifacts.example.com
A minimum policy set to use an Amazon S3 bucket to store Mender Artifacts is:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:GetAccessPoint",
"s3:ListAllMyBuckets"
],
"Effect": "Allow",
"Resource": "*"
},
{
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::BUCKET-NAME"
},
{
"Action": [
"s3:*"
],
"Effect": "Allow",
"Resource": "arn:aws:s3:::BUCKET-NAME/*"
},
]
}
© 2024 Northern.tech AS