如何从我在此处找到的AWS Elastic Beanstalk应用程序中读取环境属性:
Configuration > Software Configuration > Environment Properties
以下方法均无效:
ConfigurationManager.AppSettings["MyServiceUrl"] ConfigurationManager.AppSettings["aws:elasticbeanstalk:application:environment.MyServiceUrl"] Environment.GetEnvironmentVariable("MyServiceUrl") Environment.GetEnvironmentVariable("aws:elasticbeanstalk:application:environment.MyServiceUrl")
“完全合格”的名称尝试来自AWS EB documentation.
有任何想法吗?
解决方法
在.ebextensions / myoptions.config文件中:
option_settings: - option_name: MyServiceUrl value: change me
这将在您的EB环境属性部分中添加“MyServiceUrl”选项(正如您已经看到的那样).部署后,这会将以下内容添加到Web.Config文件中:
<appSettings> <add key="MyServiceUrl" value="change me" /> </appSettings>
如果你进入你的EC2实例,你会看到这个.
使用EB控制台更改属性时,将在Web.Config文件中修改该设置.
string value = ConfigurationManager.AppSettings["MyServiceUrl"];
抓住:
您需要确保您的Web.Config文件不包含此设置,否则EB不会替换它.如果您的Visual Studio部署包中包含此设置,则EB不会替换它,并且当您通过代码访问该属性时,您将始终收到已部署的值.
解决方案:
在Web.Release.config文件中,在Visual Studio部署期间删除了该设置:
<appSettings> <add key="MyServiceUrl" xdt:Transform="Remove" xdt:Locator="Match(key)" /> </appSettings>