├── .dockerignore ├── .github ├── release-please.yml ├── renovate.json ├── trusted-contribution.yml └── workflows │ ├── lint.yaml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── examples ├── gcs_event_arc_trigger_workflow │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── pubsub_event_arc_trigger_workflow │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── schedule_workflow │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── schedule_workflow_autocreate_sa │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf └── schedule_workflow_with_arguments │ ├── README.md │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── main.tf ├── metadata.yaml ├── outputs.tf ├── test ├── .gitignore ├── fixtures │ ├── gcs_event_arc_trigger_workflow │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── pubsub_event_arc_trigger_workflow │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── schedule_workflow │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ ├── schedule_workflow_autocreate_sa │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf │ └── schedule_workflow_with_arguments │ │ ├── README.md │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── variables.tf │ │ └── versions.tf ├── integration │ ├── discover_test.go │ ├── gcs_event_arc_trigger_workflow │ │ └── gcs_event_arc_trigger_workflow_test.go │ ├── go.mod │ ├── go.sum │ ├── pubsub_event_arc_trigger_workflow │ │ └── pubsub_event_arc_trigger_workflow_test.go │ ├── schedule_workflow │ │ └── schedule_workflow_test.go │ ├── schedule_workflow_autocreate_sa │ │ └── schedule_workflow_autocreate_sa_test.go │ └── schedule_workflow_with_arguments │ │ └── schedule_workflow_with_arguments_test.go └── setup │ ├── .gitignore │ ├── iam.tf │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf ├── variables.tf └── versions.tf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/trusted-contribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.github/trusted-contribution.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/gcs_event_arc_trigger_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/gcs_event_arc_trigger_workflow/README.md -------------------------------------------------------------------------------- /examples/gcs_event_arc_trigger_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/gcs_event_arc_trigger_workflow/main.tf -------------------------------------------------------------------------------- /examples/gcs_event_arc_trigger_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/gcs_event_arc_trigger_workflow/outputs.tf -------------------------------------------------------------------------------- /examples/gcs_event_arc_trigger_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/gcs_event_arc_trigger_workflow/variables.tf -------------------------------------------------------------------------------- /examples/gcs_event_arc_trigger_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/gcs_event_arc_trigger_workflow/versions.tf -------------------------------------------------------------------------------- /examples/pubsub_event_arc_trigger_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/pubsub_event_arc_trigger_workflow/README.md -------------------------------------------------------------------------------- /examples/pubsub_event_arc_trigger_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/pubsub_event_arc_trigger_workflow/main.tf -------------------------------------------------------------------------------- /examples/pubsub_event_arc_trigger_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/pubsub_event_arc_trigger_workflow/outputs.tf -------------------------------------------------------------------------------- /examples/pubsub_event_arc_trigger_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/pubsub_event_arc_trigger_workflow/variables.tf -------------------------------------------------------------------------------- /examples/pubsub_event_arc_trigger_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/pubsub_event_arc_trigger_workflow/versions.tf -------------------------------------------------------------------------------- /examples/schedule_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow/README.md -------------------------------------------------------------------------------- /examples/schedule_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow/main.tf -------------------------------------------------------------------------------- /examples/schedule_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow/outputs.tf -------------------------------------------------------------------------------- /examples/schedule_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow/variables.tf -------------------------------------------------------------------------------- /examples/schedule_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow/versions.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_autocreate_sa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_autocreate_sa/README.md -------------------------------------------------------------------------------- /examples/schedule_workflow_autocreate_sa/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_autocreate_sa/main.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_autocreate_sa/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_autocreate_sa/outputs.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_autocreate_sa/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_autocreate_sa/variables.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_autocreate_sa/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_autocreate_sa/versions.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_with_arguments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_with_arguments/README.md -------------------------------------------------------------------------------- /examples/schedule_workflow_with_arguments/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_with_arguments/main.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_with_arguments/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_with_arguments/outputs.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_with_arguments/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_with_arguments/variables.tf -------------------------------------------------------------------------------- /examples/schedule_workflow_with_arguments/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/examples/schedule_workflow_with_arguments/versions.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/main.tf -------------------------------------------------------------------------------- /metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/metadata.yaml -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/outputs.tf -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | source.sh 2 | -------------------------------------------------------------------------------- /test/fixtures/gcs_event_arc_trigger_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/gcs_event_arc_trigger_workflow/README.md -------------------------------------------------------------------------------- /test/fixtures/gcs_event_arc_trigger_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/gcs_event_arc_trigger_workflow/main.tf -------------------------------------------------------------------------------- /test/fixtures/gcs_event_arc_trigger_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/gcs_event_arc_trigger_workflow/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/gcs_event_arc_trigger_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/gcs_event_arc_trigger_workflow/variables.tf -------------------------------------------------------------------------------- /test/fixtures/gcs_event_arc_trigger_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/gcs_event_arc_trigger_workflow/versions.tf -------------------------------------------------------------------------------- /test/fixtures/pubsub_event_arc_trigger_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/pubsub_event_arc_trigger_workflow/README.md -------------------------------------------------------------------------------- /test/fixtures/pubsub_event_arc_trigger_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/pubsub_event_arc_trigger_workflow/main.tf -------------------------------------------------------------------------------- /test/fixtures/pubsub_event_arc_trigger_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/pubsub_event_arc_trigger_workflow/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/pubsub_event_arc_trigger_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/pubsub_event_arc_trigger_workflow/variables.tf -------------------------------------------------------------------------------- /test/fixtures/pubsub_event_arc_trigger_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/pubsub_event_arc_trigger_workflow/versions.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow/README.md -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow/main.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow/variables.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow/versions.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_autocreate_sa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_autocreate_sa/README.md -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_autocreate_sa/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_autocreate_sa/main.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_autocreate_sa/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_autocreate_sa/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_autocreate_sa/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_autocreate_sa/variables.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_autocreate_sa/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_autocreate_sa/versions.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_with_arguments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_with_arguments/README.md -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_with_arguments/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_with_arguments/main.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_with_arguments/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_with_arguments/outputs.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_with_arguments/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_with_arguments/variables.tf -------------------------------------------------------------------------------- /test/fixtures/schedule_workflow_with_arguments/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/fixtures/schedule_workflow_with_arguments/versions.tf -------------------------------------------------------------------------------- /test/integration/discover_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/discover_test.go -------------------------------------------------------------------------------- /test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/gcs_event_arc_trigger_workflow/gcs_event_arc_trigger_workflow_test.go -------------------------------------------------------------------------------- /test/integration/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/go.mod -------------------------------------------------------------------------------- /test/integration/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/go.sum -------------------------------------------------------------------------------- /test/integration/pubsub_event_arc_trigger_workflow/pubsub_event_arc_trigger_workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/pubsub_event_arc_trigger_workflow/pubsub_event_arc_trigger_workflow_test.go -------------------------------------------------------------------------------- /test/integration/schedule_workflow/schedule_workflow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/schedule_workflow/schedule_workflow_test.go -------------------------------------------------------------------------------- /test/integration/schedule_workflow_autocreate_sa/schedule_workflow_autocreate_sa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/schedule_workflow_autocreate_sa/schedule_workflow_autocreate_sa_test.go -------------------------------------------------------------------------------- /test/integration/schedule_workflow_with_arguments/schedule_workflow_with_arguments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/integration/schedule_workflow_with_arguments/schedule_workflow_with_arguments_test.go -------------------------------------------------------------------------------- /test/setup/.gitignore: -------------------------------------------------------------------------------- 1 | terraform.tfvars 2 | source.sh 3 | -------------------------------------------------------------------------------- /test/setup/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/setup/iam.tf -------------------------------------------------------------------------------- /test/setup/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/setup/main.tf -------------------------------------------------------------------------------- /test/setup/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/setup/outputs.tf -------------------------------------------------------------------------------- /test/setup/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/setup/variables.tf -------------------------------------------------------------------------------- /test/setup/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/test/setup/versions.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/terraform-google-cloud-workflows/HEAD/versions.tf --------------------------------------------------------------------------------