Forum Discussion
Portfolio Issues with Cloudberry/AWS
Hello,
I am trying to create a portfolio via Tom Kulhman’s post, https://blogs.articulate.com/rapid-elearning/heres-a-free-tool-to-build-an-e-learning-portfolio/.
When in the cloudberry explore for AWS3, I cannot see anything on the My Computer side when I open the My Articulate Projects and then open my project, except for an “mp.4” player.
Is this all that I copy over to my folder in my bucket?
Please advise. Thank you so much!
Denise
Hello Denise!
I'm happy to help! First, you'll need to publish the course for Web and open the published output folder. Lastly, in AWS, you'll drag all of the content into the folder when uploading files. Here's a tutorial on uploading to AWS.
Let me know if that works for you!
- DeniseMalloyCommunity Member
Hi Lauren!
Thank you so much for the help. I really appreciate it.
One more question...
I can't seem to put the bucket policy in, but it is not working (I get an X in Cloudberry).
Here is the policy I am trying to turn into my own:
{
"Statement": [
{
"Sid": "AllowEveryoneReadOnlyAccess",
"Effect": "Allow",
"Principal": "*",
"Action": [ "s3:GetObject", "s3:ListBucket" ],
"Resource": ["urn:sgws:s3:::examplebucket","urn:sgws:s3:::examplebucket/*"]
}
]
}I have tried using my bucket name (malloydemo) in place of "examplebucket" but I cannot seem to get it working. Please advise.
Thank you again for your help!
- DeniseMalloyCommunity Member
Here is my error statement:
<Error>
<Code>AccessDenied</Code>
<Message>Access Denied</Message>
<RequestId>EX348QHVBB8HQVHN</RequestId>
<HostId>ucLpg4fDPR8xbv4XiIhAMD4JxWUR511BM6pYYmXlE4ibkUabBSzi0zc8FHv7jOc+iUDrdY79PZI=</HostId>
</Error>Thank you!
- RenGomezStaff
Hi Denise,
Thanks for the follow-up, and I'm sorry you're running into errors setting a bucket policy on AWS! We don't support web server setups, but it looks like you're running into similar permission issues that appeared on that tutorial.
Tom shared this link with a user running into the same scenario. You can try copying the policy from there and see if it helps with your setup!
- LindseyBrown-efCommunity Member
Is it ok to use this code? I saw on one site (but not several others) that this might be dangerous? I just want to show my course on my eportfolio. Thanks
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::your_bucket_name/*"
}
]
}