We have deployed ASP.Net Core app on AWS EBS and have problem with writing files on it.
Access to the path
C:\inetpub\AspNetCoreWebApps\app\App_Data\file.txt
is denied
I added .ebextensions\[app_name].config
but it did nothing
{
"container_commands": {
"01": {
"command": "icacls \"C:/inetpub/AspNetCoreWebApps/app/App_Data\" /grant DefaultAppPool:(OI)(CI)"
}
}
}
I know that this is permission problem because when I RDP to machine and changed permission manually it solved problem. I would like to it during deploy using .ebextensions\[app_name].config