Skip to content
Bart Louwers edited this page May 11, 2024 · 1 revision

The S3 Bucket Policy can be updated here: https://eu-central-1.console.aws.amazon.com/s3/bucket/maplibre-native/property/policy/edit?region=eu-central-1&bucketType=general

Uploading by external users can be enabled by modifying adding another Principal:

		{
			"Sid": "AllowUpload",
			"Effect": "Allow",
			"Principal": {
				"AWS": ["arn:aws:iam::373521797162:user/bart"]
			},
			"Action": "s3:PutObject",
			"Resource": "arn:aws:s3:::maplibre-native/ios-documentation-resources/*"
		}