superlint/.automation/test/ansible/ghe_initialize/tasks/main.yml
Marco Ferrari ab8780a58f
Install, configure, and run jscpd. Add missing tests (#1032)
Co-authored-by: Gabo <gabo.fdc@gmail.com>
Co-authored-by: Matt Desmond <beardofedu@github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-01-27 20:47:34 +01:00

67 lines
2.1 KiB
YAML

---
######################################
######################################
## Configure the GHE Instance Block ##
######################################
######################################
- block:
######################################################
# Need to run the tasks to stand up the GHE instance #
######################################################
# Configure the base system
- include_tasks: ghe-initial-configuration.yml
######################
# Set the tags block #
######################
tags:
- github
- ghe_primary
- initialize
#################################################
############### End of Block ####################
#################################################
##################################
##################################
## Configure the GHE LDAP Block ##
##################################
##################################
- block:
############################################################
# Need to run the tasks to config LDAP on the GHE instance #
############################################################
# Configure the base system
- include_tasks: ghe-ldap-configuration.yml
######################
# Set the tags block #
######################
tags:
- openldap
#################################################
############### End of Block ####################
#################################################
######################################
######################################
## Configure the GHE Instance Block ##
######################################
######################################
- block:
######################################################
# Need to run the tasks to stand up the GHE instance #
######################################################
# Configure the base system
- include_tasks: ghe-api-config-apply.yml
######################
# Set the tags block #
######################
tags:
- github
- ghe_primary
- initialize
#################################################
############### End of Block ####################
#################################################