从运行.net应用程序的docker容器连接到AWS DynamoDB

时间:2019-01-10 12:15:31

标签: .net docker amazon-dynamodb

我的开发人员正在开发一个在docker上运行的.net应用程序。它使用AWS的dynamodb中的表。我是DynamoDB的新手,不确定如何连接到它。 DynamoDB是否有任何端点?他配置了 在app.json文件中的aws凭证,其内容粘贴在

  "AWS": {
"Profile": "testservice",
"Region": "xxxxxxxx",
"AccessKey": "xxxxxxxxxxxxxxx",
"SecretKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxx"
 },
"DynamoDb": {
"LocalMode": false
 },
"Logging": {
  "LogLevel": {
  "Default": "Debug",
   "System": "Information",
    "Microsoft": "Information"
  }
},
"AllowedHosts": "*"
}

,但未连接到dynamodb。我们在构建docker时需要设置任何变量吗?如何从docker容器连接到dynamodb表?

0 个答案:

没有答案