I'm trying to set up an asp.net core 3.1 website on Amazon AWS Beanstalk using the AWS Toolkit for Visual Studio 2022, I have added the .ebextensions folder and inside my config file
{
"container_commands": {
"01": {
"command": "icacls \"C:/inetpub/AspNetCoreWebApps/app/wwwroot/files\" /grant DefaultAppPool:(OI)(CI)F"
}
}
}
I have also tried other StackOverflow answers like Access to the path 'C:\inetpub\wwwroot\App_Data\TEMP\PluginCache' is denied. Amazon AWS Beanstalk and How To Set Folder Permissions in Elastic Beanstalk Using YAML File? but no luck
my project folder structure is
could anyone please help and point out what is wrong? thank you in advance.