Something went wrong on our end
-
Nuwan Rajika Kumarasiri authored
* Added a configurable hostname for container. * Now everything from agent's home is mounted into a EFS file system for persistence. * Added documentation on how to use this Secure Agent infra. * Extracted role and profile for prod environment
Nuwan Rajika Kumarasiri authored* Added a configurable hostname for container. * Now everything from agent's home is mounted into a EFS file system for persistence. * Added documentation on how to use this Secure Agent infra. * Extracted role and profile for prod environment
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
container-definitions.tpl 849 B
[
{
"name": "${container_name}",
"image": "${image_name}",
"memory": ${container_memory},
"hostname": "${container_hostname}",
"portMappings": [
{
"containerPort": ${app_port1},
"hostPort": ${app_port1}
},
{
"containerPort": ${app_port2},
"hostPort": ${app_port2}
},
{
"containerPort": ${app_port3},
"hostPort": ${app_port3}
}
],
"environment": [
{
"name": "INFORMATICA_USER",
"value": "${informatica_username}"
},
{
"name": "INFORMATICA_PASSWORD",
"value": "${informatica_password}"
}
],
"mountPoints": [
{
"containerPath": "${secure_agent_configs_path}",
"sourceVolume": "agent-configs-path"
}
]
}
]