npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@justworkflowit/terraform-gcs

v0.0.4

Published

JustWorkflowIt GCP Terraform module - sets up Workload Identity Federation, Cloud Function execution, and workflow definition deployment

Downloads

443

Readme

JustWorkflowIt GCS Terraform Module

Terraform module for integrating GCP infrastructure with the JustWorkflowIt workflow orchestration platform.

This module creates the GCP resources needed for JustWorkflowIt to execute workflow steps in your GCP project, including Workload Identity Federation, workflow definition deployment, and permission grants.

Usage

module "justworkflowit" {
  source  = "justworkflowit/justworkflowit/google"
  version = "~> 1.0"

  project_id           = "my-gcp-project"
  disambiguator        = "my-app-prod"
  organization_id      = "your-org-uuid-here"
  workflow_definitions = [file("workflows/my-workflow.json")]

  # Grant JustWorkflowIt permission to invoke your Cloud Functions
  cloud_function_urls = [google_cloudfunctions2_function.my_step_handler.name]
}

After applying, update the Secret Manager secret with your JustWorkflowIt API auth token:

echo -n "your-api-token-here" | gcloud secrets versions add \
  justworkflowit-api-authtoken-my-app-prod \
  --data-file=-

Resources Created

| Resource | Purpose | |----------|---------| | Secret Manager Secret | Stores your JustWorkflowIt API auth token | | GCS Bucket | Storage for workflow definition files | | Cloud Function (Gen2) | Deploys workflow definitions to JustWorkflowIt on terraform apply | | Service Account | Execution identity for JustWorkflowIt in your project | | Workload Identity Pool | Enables JustWorkflowIt's AWS backend to authenticate as GCP service account |

Inputs

| Name | Type | Required | Default | Description | |------|------|----------|---------|-------------| | project_id | string | yes | - | GCP project ID | | region | string | no | us-central1 | GCP region | | disambiguator | string | yes | - | Unique identifier for this module instance | | organization_id | string | yes | - | JustWorkflowIt organization ID (UUID) | | workflow_definitions | list(string) | yes | - | JSON workflow definitions to deploy | | ignore_deployer_failures | bool | no | false | Don't fail apply on definition registration errors | | cloud_function_urls | list(string) | no | [] | Cloud Function names to grant invoker role | | pubsub_topic_ids | list(string) | no | [] | Pub/Sub topic IDs to grant publisher role |

Outputs

| Name | Description | |------|-------------| | execution_service_account_email | Email of the execution service account | | execution_service_account_id | Full resource ID of the service account | | workload_identity_pool_provider | Workload Identity provider name (provide to JustWorkflowIt) | | auth_secret_id | ID of the Secret Manager secret | | definition_bucket_name | Name of the GCS bucket |

Parity with CDK Constructs

This module creates equivalent resources to the @justworkflowit/cdk-constructs npm package. A resource-contract.json file defines the shared contract, and CI validates that this module stays in sync.

License

MIT