Skip to content

Commit

Permalink
DOE-282 Update READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
ntse committed Nov 28, 2024
1 parent 558aa6d commit 26e38e5
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This repository contains several reusable GitHub Actions workflows. Below is an

## Workflows

1. [Local Development Workflow](docs/terraform-local-workflow.md)
2. [Remote Light Check Workflow](docs/terraform-code-check.md)
3. [Remote Full Check Workflow](docs/terraform-plan-apply.md)
1. [Terraform Code Check](docs/terraform-code-check.md)
2. [Terraform Plan Apply](docs/terraform-plan-apply.md)
3. [Terraform Destroy](docs/terraform-destroy.md)
4. [Terraform Core](docs/terraform-core.md)
24 changes: 24 additions & 0 deletions .github/workflows/docs/terraform-code-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Terraform Code Check
##### terraform-code-check.yml

This workflow performs a series of checks on Terraform code, ensuring it meets formatting and security standards. It supports various configuration options, allowing users to tailor the workflow to their specific Terraform setup. The workflow includes linting, formatting, and security scanning steps, providing detailed status feedback.

#### Workflow Inputs

`stack_root_directory` (required): Specifies the root directory of the Terraform stack for code checks.

`tflint_module_scan` (optional): Boolean value indicating whether TFLint should download Terraform modules during the linting process.

`checkov_deep_scan` (optional, default: false): Boolean value determining if Checkov should perform a deep scan, which includes external modules.

`repo` (optional, default: ${{ github.repository }}): The organisation/repository name of the repository containing Terraform code. Typically left blank to clone the calling repository.

`ref` (optional, default: ${{ github.ref }}): Specifies the branch or tag of the Terraform code to check. By default, it uses the branch of the calling workflow.

`runner_label` (optional, default: ubuntu-latest): Defines the runner environment for executing the workflow. Use "self-hosted" if a custom runner is configured.

#### Secrets

`TF_MODULES_SSH_DEPLOY_KEY` (optional): SSH key for cloning Terraform modules during terraform init.

`REPO_SSH_DEPLOY_KEY` (optional): SSH key for cloning the repository with Terraform stacks.
43 changes: 43 additions & 0 deletions .github/workflows/docs/terraform-core.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## Terraform Core
##### terraform-core.yml

This workflow is generally not intended to be called directly by users. Instead, it is integrated into broader workflows within a CI/CD pipeline to streamline Terraform setup, configuration, and deployment across multiple directories, with conditional execution, artifact handling, and destruction checks built-in.


#### Workflow Inputs

`environment_name` (optional, default: dev): Specifies the deployment environment (e.g., dev, prd).

`aws_region` (optional, default: eu-west-2): The AWS region for the deployment.

`destructive_action_check` (optional, default: false): Boolean to enable a check for destructive actions during planning.

`execute_terraform_plan` (optional, default: false): Indicates whether to apply the Terraform plan or just create it.

`terraform_action` (optional, default: apply): Specifies the Terraform action to execute (apply or destroy).

`directories` (required): List of directories for Terraform stacks.

`max_parallel` (optional, default: 1): Sets the maximum number of parallel jobs to avoid conflicts.

`repo` (optional, default: ${{ github.repository }}): Organisation/repository containing the Terraform code.

`ref` (optional, default: ${{ github.ref }}): Branch or tag for the Terraform code.

`upload_plan` (optional, default: false): If true, uploads the generated Terraform plan as an artifact.

`download_existing_plan` (optional, default: false): If true, downloads an existing plan from a previous workflow.

`runner_label` (optional, default: ubuntu-latest): Specifies the runner for job execution. Use "self-hosted" for custom runners.

#### Secrets

`AWS_ROLE_NAME, AWS_ACCOUNT_ID` (optional): AWS credentials for interaction with AWS resources.

`AZURE_SUBSCRIPTION_ID, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_RESOURCE_GROUP_NAME` (optional): Azure credentials for managing resources.

`GH_TOKEN` (optional): GitHub token for managing resources in GitHub.

`TF_MODULES_SSH_DEPLOY_KEY` (optional): SSH key for cloning Terraform modules.

`REPO_SSH_DEPLOY_KEY` (optional): SSH key for checking out private repositories.
28 changes: 28 additions & 0 deletions .github/workflows/docs/terraform-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## Terraform Destroy
##### terrraform-destroy.yml

This workflow facilitates the destruction of Terraform-managed resources, designed to run as part of a continuous integration pipeline. It provides configuration options for the environment and AWS region, with additional controls for executing the Terraform plan. This workflow executes a reverse-ordered destruction process for Terraform stacks, utilising defined directory dependencies for resource teardown.

#### Workflow Inputs

`environment_name` (optional, default: dev): Specifies the environment in which to destroy resources (e.g., dev, prd).

`aws_region` (optional, default: eu-west-2): AWS region for executing the destruction process.

`execute_terraform_plan` (optional, default: false): Boolean to determine whether to perform a Terraform plan execution before destroy.

`repo` (optional, default: ${{ github.repository }}): Organisation/repository name containing the Terraform code.

`ref` (optional, default: ${{ github.ref }}): Branch or tag of the Terraform code. Defaults to the calling workflow’s branch.

`runner_label` (optional, default: ubuntu-latest): Target runner environment. Use "self-hosted" for custom runners, or leave as default.

#### Secrets

`AWS_ROLE_NAME, AWS_ACCOUNT_ID` (optional): Credentials for AWS account access. Not compatiable with Azure credentials.

`AZURE_SUBSCRIPTION_ID, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_RESOURCE_GROUP_NAME` (optional): Azure credentials for authentication and resource management. Not compatiable with AWS credentials.

`TF_MODULES_SSH_DEPLOY_KEY` (optional): SSH key to clone Terraform modules as part of initialisation.

`REPO_SSH_DEPLOY_KEY` (optional): SSH key to checkout private repositories with remote Terraform configurations.
32 changes: 32 additions & 0 deletions .github/workflows/docs/terraform-plan-apply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## Terraform Plan Apply
##### terraform-plan-apply.yml

This workflow handles the deployment of Terraform stacks, with various checks and approvals integrated into the process. It includes options for region, environment, and other deployment settings, designed to ensure safe and organised stack management within a CI/CD pipeline. This workflow includes dependency sorting for stack deployment, code linting, a Terraform plan step with optional manual approval, and post-deployment quality checks.

#### Workflow Inputs

`environment_name` (optional, default: dev): Specifies the target environment for the deployment (e.g., dev, prd).

`aws_region` (optional, default: eu-west-2): AWS region for deployment.

`destructive_action_check` (optional, default: false): Boolean to prevent unintentional destructive actions in Terraform plans.

`tflint_module_scan` (optional, default: false): Boolean to enable or disable TFLint’s module scan during code checks.

`execute_terraform_plan` (optional, default: false): Determines if the workflow should execute a Terraform apply after planning.

`repo` (optional, default: ${{ github.repository }}): The organisation/repository containing the Terraform code.

`ref` (optional, default: ${{ github.ref }}): Specifies the branch or tag of the Terraform code.

`runner_label` (optional, default: ubuntu-latest): Sets the runner for executing jobs. Use "self-hosted" if you have a self-hosted runner configured.

#### Secrets

`AWS_ROLE_NAME, AWS_ACCOUNT_ID` (optional): Credentials required for access to AWS.

`AZURE_SUBSCRIPTION_ID, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_RESOURCE_GROUP_NAME` (optional): Azure credentials for resource management and authentication.

`TF_MODULES_SSH_DEPLOY_KEY` (optional): SSH key for cloning Terraform modules.

`REPO_SSH_DEPLOY_KEY` (optional): SSH key for checking out private repositories.

0 comments on commit 26e38e5

Please sign in to comment.