Reputation: 45
I'm trying to get my ebextensions config working to create a temp folder and give it permissions, but it isn't working.
commands:
00mkdir:
command: mkdir C:\tmp\
01fix_perms:
command: cacls C:\tmp /t /e /g Everyone:f
this is in 00_temp.config in .ebextensions. I'm using MS Visual Studio to upload to AWS Beanstalk. But we still don't get a temp folder.
Upvotes: 2
Views: 3531
Reputation: 667
Use double backslashes. Such as in
commands: mkdir C:\\tmp\\
Same for the cacls command, of course. I have just done a test run with my EB configuration and it works. If for some reason this does not work for you, check the following:
C:\cfn\log
Upvotes: 2