superlint/.automation/test/ansible/ghe_initialize/tasks/main.yml

68 lines
2.1 KiB
YAML
Raw Normal View History

2020-02-04 09:49:58 -05:00
---
######################################
######################################
## 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 ####################
#################################################