Azure 容器实例 - 设置环境变量

时间:2021-02-01 13:44:40

标签: .net docker .net-core

我的 .Net Core 3.1 应用程序已经定义了 appsettings.json 文件:

    {
  "SettingsSection": {
    "CameraStartupReconnectDelayInSeconds": 30,
    "Cameras": {
      "Camera1": {
        "Username": "",
        "Password": "",
        "Port": "",
        "IpAddress": ""
      },
      "Camera2": {
        "Username": "",
        "Password": "",
        "Port": "",
        "IpAddress": ""
      } 
    }
  }
}

我想知道两件事:

  1. 我在创建azure时如何设置这个环境变量 容器注册? az container create -g MyResourceGroup --name myapp --image myimage:latest --environment-variables key1=value1 key2=value2 有可能吗?

  2. 如何保护密码字段的值?

0 个答案:

没有答案