https://github.com/osinfra-io/github-terraform-gcp-called-workflows
Reusable GitHub Called Workflow examples for Terraform and Google Cloud Platform.
https://github.com/osinfra-io/github-terraform-gcp-called-workflows
github github-actions github-organization-management-platform infrastructure-as-code osinfra platform-team terraform
Last synced: about 2 months ago
JSON representation
Reusable GitHub Called Workflow examples for Terraform and Google Cloud Platform.
- Host: GitHub
- URL: https://github.com/osinfra-io/github-terraform-gcp-called-workflows
- Owner: osinfra-io
- License: gpl-2.0
- Created: 2022-09-22T23:53:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T15:43:13.000Z (2 months ago)
- Last Synced: 2025-02-27T22:16:37.032Z (2 months ago)
- Topics: github, github-actions, github-organization-management-platform, infrastructure-as-code, osinfra, platform-team, terraform
- Language: HCL
- Homepage: https://www.osinfra.io
- Size: 239 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
#
Terraform Google Cloud Platform Called Workflows
**[GitHub Actions](https://github.com/osinfra-io/github-terraform-gcp-called-workflows/actions):**
[](https://github.com/osinfra-io/github-terraform-gcp-called-workflows/actions/workflows/local-dependabot.yml)
Reusing workflows avoids duplication. This makes workflows easier to maintain and allows you to create new workflows
more quickly by building on the work of others, just as you do with actions.Workflow reuse also promotes best practices by helping you use well-designed, tested, and proven effective workflows. Your organization can build up a library of reusable workflows that can
be centrally maintained.## Reusing Workflows
Rather than copying and pasting from one workflow to another, you can make workflows [reusable](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows). You and anyone with access to the reusable workflow can then call the reusable workflow from another workflow.
### Features
- [Approve or reject jobs awaiting review](https://docs.github.com/en/actions/managing-workflow-runs/reviewing-deployments)
- [Dependencies cache](https://docs.github.com/en/actions/advanced-guides/caching-dependencies-to-speed-up-workflows)
- [Job summaries](https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary)
- [OpenID connect in Google Cloud Platform](https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-google-cloud-platform)### Workflows
- [plan-and-apply.yml](.github/workflows/plan-and-apply.yml)
- [test.yml](.github/workflows/test.yml)### Usage
You can check the [.github/workflows](.github/workflows/) directory for example configurations:
- [sandbox.yml](.github/workflows/sandbox.yml)
- [non-production.yml](.github/workflows/non-production.yml)
- [production.yml](.github/workflows/production.yml)
- [module-test.yml](.github/workflows/module-test.yml)These set up the system for the testing process by providing all the necessary initial code, thus creating good examples to base your configuration on.