我有兩個環境:AWS Elastic Beanstalk
:Development
和Production
。AWS Elastic Beanstalk:針對特定環境的.ebextensions
我想.ebextensions/app.config
只能在Production
環境下運行。 Theres有沒有辦法做到這一點?
的app.config:
container_commands:
01-command:
command: "crontab .ebextensions/cronjob"
leader_only: true
對我很好! – tnichols
AWS爲容器命令添加了一個'test'選項,因此可以在leader_only:'test:'[「$ PARAM1」==「MyAppEnv-Production」]''後將crontab.sh中的if語句移動到app.config中。 – choobablue