fix ecr authentication config

This commit is contained in:
Nana Janashia
2020-12-20 17:25:56 +01:00
parent 92835a5b54
commit c754ff2d60
3 changed files with 22 additions and 6 deletions

View File

@@ -9,3 +9,12 @@ output cluster_url {
output kubeconfig {
value = "module.eks.kubeconfig"
}
output ecr_user_name {
value = data.aws_ecr_authorization_token.token.user_name
}
output ecr_user_password {
value = data.aws_ecr_authorization_token.token.password
sensitive = true
}