Fix source code not updating + misc fixes
Changes proposed in this pull request:
- The pipeline has not deployed updated app code since https://github.com/cloud-gov/billing/commit/39347ddf76b8b3c964c3ef8de6a3511ab4e58721. The cause is the same as https://github.com/cloud-gov/billing/commit/6db7a4424679f0ba254d482bd89963071caabc89: The terraform-config resource only updates when ci/terraform/* has changes. Since there is really no reason to have src and terraform-config be separate resources, combine them.
- Bump go version to latest major version
- Mark app env sensitive
- Drop unused task script
Things to check
- For any logging statements, is there any chance that they could be logging sensitive data?
- Are log statements using a logging library with a logging level set? Setting a logging level means that log statements "below" that level will not be written to the output. For example, if the logging level is set to
INFOand debugging statements are written withlog.debugor similar, then they won't be written to the otput, which can prevent unintentional leaks of sensitive data.
Security considerations
None.