Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. [
  2. {
  3. "name": "${bit_bucket}",
  4. "image": "${uri}",
  5. "essential": true,
  6. "portMappings": [
  7. {
  8. "containerPort": ${port},
  9. "hostPort": ${port}
  10. }
  11. ],
  12. "logConfiguration": {
  13. "logDriver": "awslogs",
  14. "options": {
  15. "awslogs-group": "${postfix}",
  16. "awslogs-region": "${aws_region}",
  17. "awslogs-stream-prefix": "${bit_bucket}"
  18. }
  19. },
  20. "environment": [
  21. {
  22. "name": "BASE_PATH",
  23. "value": "${base_path}"
  24. },
  25. {
  26. "name": "VPC",
  27. "value": "${postfix}"
  28. },
  29. {
  30. "name": "ELB_PRIVATE_DNS_NAME",
  31. "value": "${elb_private_dns_name}"
  32. },
  33. {
  34. "name": "ELB_PUBLIC_DNS_NAME",
  35. "value": "${elb_public_dns_name}"
  36. },
  37. {
  38. "name": "REDIS_DNS_NAME",
  39. "value": "${redis_dns_hostname}"
  40. },
  41. {
  42. "name": "AWS_REGION",
  43. "value": "${aws_region}"
  44. },
  45. {
  46. "name": "company",
  47. "value": "${company}"
  48. },
  49. {
  50. "name": "stage",
  51. "value": "${stage}"
  52. }
  53. ]
  54. }
  55. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement