asp.net – 如何在.net中读取Elastic Beanstalk环境属性?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在.net中读取Elastic Beanstalk环境属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从我在此处找到的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文件修改该设置.

因此,您使用标准AppSettings方法访问此属性

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>

这将在Visual Studio部署期间从Web.Config中删除该设置,并允许EB在EB部署期间将值添加文件中.

原文链接:https://www.f2er.com/aspnet/251472.html

猜你在找的asp.Net相关文章