Add info and test stages to pipeline

Head back to the .gitlab-ci.yml file and edit the file again. This time add two new stages, one called info and one called test so that the stages section looks like the following:

stages:
  - registry
  - container
  - info
  - test

Immediately following the stages section add the following to include some pre-built Gitlab testing tools:

include:
  - template: Security/SAST.gitlab-ci.yml
  - template: Jobs/SAST-IaC.gitlab-ci.yml
  - template: Security/Secret-Detection.gitlab-ci.yml

sast:
  tags:
    - ansible_f5
kics-iac-sast:
  tags:
    - ansible_f5
secret_detection:
  tags:
    - ansible_f5