terraform-provider-woodpecker/docs/resources/secret.md

1.4 KiB

page_title subcategory description
woodpecker_secret Resource - terraform-provider-woodpecker This resource allows you to add/remove global secrets. When applied, a new secret will be created. When destroyed, that secret will be removed. For more information see the Woodpecker docs https://woodpecker-ci.org/docs/usage/secrets.

woodpecker_secret (Resource)

This resource allows you to add/remove global secrets. When applied, a new secret will be created. When destroyed, that secret will be removed. For more information see the Woodpecker docs.

Example Usage

# Create a secret
resource "woodpecker_secret" "test" {
  name   = "test"
  value  = "test"
  events = ["cron", "deployment"]
}

Schema

Required

  • events (Set of String) events for which the secret is available (push, tag, pull_request, pull_request_closed, deployment, cron, manual, release)
  • name (String) the name of the secret
  • value (String, Sensitive) the value of the secret

Optional

  • images (Set of String) list of Docker images for which this secret is available, leave blank to allow all images

Read-Only

  • id (Number) the secret's id

Import

Import is supported using the following syntax:

terraform import woodpecker_secret.test "<name>"