terraform-provider-gocd

command module
v0.0.0-...-78ffa20 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 30, 2020 License: Apache-2.0 Imports: 2 Imported by: 0

README

terraform-provider-gocd 1.0.0

GoDoc Build Status codecov codebeat badge FOSSA Status Go Report Card

Terraform provider for GoCD Server

Installation

$ brew tap beamly/tap
$ brew install terraform-provider-gocd
$ tf-install-provider gocd

NOTE: terraform does not currently provide a way to easily install 3rd party providers. Until this is implemented, the tf-install-provider utility can be used to copy the provider binary to the correct location.

NOTE: Given the requirements by hashicorp for SLA's to be set for importing providers into the hashicorp-provider github organisation, and as I am but one person on this, there's little chance this will become an officially sanctioned terraform provider. See Terraform Provider Development Program:

The expectation is to resolve all critical issues within 48 hours and all other issues within 5 business days.

Migration

This provider uses Semantic Versioning where significant breaking changes are introduced in new major versions. For details on such breaking changes and how to migrate your Terraform configuration, please consult MIGRATION.md.

Components

Data

gocd_stage_definition

Generates json strings for GoCD stage definitions for use in Pipelines or Pipeline Templates.

Example Usage
data "gocd_stage_definition" "my-stage" {
  name = "plan"
  jobs = [
  <<JOB
 {
  "name": "plan",
  "tasks": [{
    "type": "exec",
    "attributes": {
      "run_if": ["passed"],
      "command": "terraform",
      "arguments": ["plan"]
    }
  }]
 }
  JOB
  ]
}

output "my-stage" {
  value = "${data.gocd_stage_definition.my-stage.json}"
}
Argument Reference

Stage definition as defined in the GoCD API.

  • name - (Required) The name of the stage.
  • jobs - (Required) The list of JSON encoded job definitions.
  • fetch_materials - (Optional) Whether to perform material update/checkout.
  • clean_working_directory - (Optional) Whether to delete the working directory every time.
  • never_cleanup_artifacts - (Optional) Never cleanup artifacts for this stage, if purging artifacts is configured at the Server Level.
  • approval - (Optional) An approval block, see below.
  • environment_variables - (Optional) The list of environment variables that will be passed to all tasks (commands) that are part of this pipeline. Each environment_variables block supports fields documented below.

The approval block supports:

Approval definition as defined in the GoCD API.

  • type - (Required) The type of the approval on which stage will trigger. Can be one of success or manual.
  • authorization - (Required) An authorization block, see below.

The authorization block supports:

Authorization definition as defined in the GoCD API.

  • users - (Optional) The list of users authorized to operate (run) on this stage.
  • roles - (Optional) The list of roles authorized to operate (run) on this stage.

The environment_variables block supports:

  • name - (Required) The name of the environment variable.
  • value - (Optional) The value of the environment variable. One of value or encrypted_value must be set.
  • encrypted_value - (Optional) The encrypted value of the environment variable. One of value or encrypted_value must be set.
  • secure - Whether environment variable is secure or not. When set to true, encrypts the value if one is specified. The default value is false.
Attributes Reference
  • json - JSON encoded string of the stage definition
gocd_task_definition

Generates json strings for GoCD task definitions

Example Usage
data "gocd_task_definition" "my-task" {
  type = "exec"
  command = "terraform"
  arguments = ["init"]
}

output "my-task" {
  value = "${data.gocd_task_definition.my-task.json}"
}
Argument Reference

Task definition as defined in the GoCD API.

  • type - (Required) The type of a task. Can be one of exec, ant, nant, rake, fetch, pluggable_task.
  • run_if - (Optional) The run_if condition specifies when a task should be allowed to run. Can be one of passed, failed, any.
Task type = "exec"
  • command - (Required) The name of the executable. If the executable is not on PATH, you may also specify the full path.
  • arguments- (Optional) The list of arguments to be passed to the executable.
  • working_directory - (Optional) The directory in which the executable is to be executed.
Task type = "ant"
  • build_file - (Required) The path to Ant build file.
  • target - (Required) The Ant target(s) to run.
  • working_directory - (Optional) The directory in which the executable is to be executed.
Task type = "fetch"
  • pipeline - (Optional) The name of direct upstream pipeline or ancestor pipeline of one of the upstream pipelines on which the pipeline of the job depends on. .
  • stage - (Required) The name of the stage to fetch artifacts from.
  • job - (Required) The name of the job to fetch artifacts from.
  • source - (Required) The path of the artifact directory or file of a specific job, relative to the sandbox directory. If the directory or file does not exist, the job is failed.
  • artifact_origin - (Required from version 18.7.0 of GoCD Server) The origin of the fetched artifact, can be set to "gocd" or "external".
  • is_source_a_file - (Optional) Whether source is a file or directory.
  • destination - (Optional) The path of the directory where the artifact is fetched to.
Attributes Reference
  • json - JSON encoded string of the task definition
gocd_job_definition

Generates json strings for GoCD job definitions

Example Usage
data "gocd_job_definition" "my-job" {
  name = "my-job"
  tasks = []
  environment_variables = [{
    name = "HOME"
    value = "/home/go"
  }]
}

output "my-job" {
  value = "${data.gocd_job_definition.my-job.json}"
}
Argument Reference
  • name - (Required) The name of the job.
  • tasks - (Required) A list of json strings defining a task definition for this job
  • run_instance_count - (Optional) The number of jobs to run. If set to null (default), one job will be created. If set to the literal string all, the job will be run on all agents. If set to a positive integer, the specified number of jobs will be created. Can be one of null, Integer, all.
  • timeout - (Optional) The time period(in minute) after which the job will be terminated by go if it has not generated any output.
  • environment_variables - (Optional) The list of environment variables defined here are set on the agents and can be used within your tasks. Each environment_variables block supports fields documented below.
  • resources - (Optional) The list of (String) resources that specifies the resource which the job requires to build. MUST NOT be specified along with elastic_profile_id.
  • tabs - (Optional) The list of tabs which let you add custom tabs within the job details page. Each tabs block supports fields documented below.
  • artifacts - (Optional) The list of artifacts specifies what files the agent will publish to the server. Each artifacts block supports fields documented below.
  • properties - (Optional) The list of properties of the build from XML files or artifacts created during your build. Each properties block supports fields documented below.
  • elastic_profile_id - (Optional) The id of the elastic profile, specifying this attribute would run the job on an elastic agent asociated with this profile. MUST NOT be specified along with resources. Since v16.10.0.

The environment_variables block supports:

  • name - (Required) The name of the environment variable.
  • value - (Optional) The value of the environment variable. One of value or encrypted_value must be set.
  • encrypted_value - (Optional) The encrypted value of the environment variable. One of value or encrypted_value must be set.
  • secure - Whether environment variable is secure or not. When set to true, encrypts the value if one is specified. The default value is false.

The tabs block supports:

  • name - (Required) The name of the tab which will appear in the Job detail page.
  • path - (Required) The relative path of a file in the server artifact destination directory of the job that will be render in the tab.

The artifacts block supports:

  • type - (Required) The type of the artifact. Can be one of test, build.
  • source - (Required) The file or folder to publish to the server.
  • destination - (Optional) The destination is relative to the artifacts folder of the current job instance on the server side. If it is not specified, the artifact will be stored in the root of the artifacts directory.

The properties block supports:

  • name - (Required) The name of the property.
  • source - (Optional) The relative path to the XML file containing the data that you want to use to create the property.
  • xpath - (Optional) The xpath that will be used to create property.
Attributes Reference
  • json - JSON encoded string of the job definition

Resources

gocd_pipeline

Provides support for creating pipelines in GoCD.

Example Usage
resource "gocd_pipeline" "build" {
  name = "build"
  group = "terraform-provider-gocd"
  label_template = "0.0.$${COUNT}"
  materials = [
    {
      type = "git"
      attributes {
        name = "terraform-provider-gocd"
        url = "https://github.com/beamly/terraform-provider-gocd.git"
        filter = ["file1", "file2"]
      }
    }
  ]
  stages = []
}
Argument Reference
  • name - (Required) The name of the pipeline.
  • group - (Required) The name of the pipeline group to deploy into.
  • materials - (Required) The list of materials to be used by pipeline. At least one material must be specified. Each materials block supports fields documented below.
  • stages - (Required unless template is specified) The list of JSON encoded stage definitions.
  • label_template - (Optional) The label template to customise the pipeline instance label.
  • enable_pipeline_locking - (Optional, Deprecated) Whether pipeline is locked to run single instance or not. See notes below.
  • lock_behavior - (Optional) Whether pipeline is locked to run single instance. none (never lock), lockOnFailure (only lock after a failure) or unlockWhenFinished (lock whilst running, then always unlock). See notes below.
  • template - (Optional) The name of the template used by pipeline. Conflicts with stages.
  • parameters - (Optional) A map of parameters to be used for substitution in a pipeline or pipeline template.
  • environment_variables - (Optional) The list of environment variables that will be passed to all tasks (commands) that are part of this pipeline. Each environment_variables block supports fields documented below.

The environment_variables block supports:

  • name - (Required) The name of the environment variable.
  • value - (Optional) The value of the environment variable. One of value or encrypted_value must be set.
  • encrypted_value - (Optional) The encrypted value of the environment variable. One of value or encrypted_value must be set.
  • secure - Whether environment variable is secure or not. When set to true, encrypts the value if one is specified. The default value is false.

Type materials block supports:

  • type (Required) The type of a material. Can be one of git, dependency.
  • attributes (Required) A map of attributes for each material type. See the GoCD API Documentation for each material type attributes. Note: any filter should be specified as a list of files to ignore (rather than an map containing an ignore attribute).
Locking

Locking behaviour is now controlled by 2 properties: lock_behavior and enable_pipeline_locking. A plan may not include both.

The GoCD Pipeline API changed from v17.12.0 to use a 3-state lock_behaviour property instead of the old boolean enable_pipeline_locking. You may still use enable_pipeline_locking in your plan, this will be mapped to lock_behaviour = 'none' or 'lockOnFailure' if you use a later version of GoCD.

You may also use lock_behaviour = 'lockOnFailure' or 'none' in plans run on older versions of GoCD. These will be mapped back to enable_pipeline_locking = true or false. You will however not be able to use lock_behavior = 'unlockWhenFinished' on older versions; this value will not be persisted, and you will find replanning will always give you a diff.

Attributes Reference
  • version - The current version of the resource configuration in GoCD.
Import

Pipelines can be imported using the pipeline name, e.g.

$ terraform import gocd_pipeline.pipeline pipeline-name
gocd_pipeline_template

Provides support for creating pipeline templates in GoCD.

Example Usage
resource "gocd_pipeline_template" "terraform-builder" {
  name = "terraform-build-template"
}
Argument Reference
  • name - (Required) The name of the pipeline template.
Attributes Reference
  • version - The current version of the resource configuration in GoCD.
Import

Pipeline Templates can be imported using the pipeline template name, e.g.

$ terraform import gocd_pipeline_template.pipeline-template pipeline-template-name
gocd_environment

Provides support for creating environments in GoCD.

Example Usage
resource "gocd_environment" "testing" {
  name = "testing"
}
Argument Rference
  • name - (Required) Name of the environment to create.
Attributes Reference
  • version - The current version of the resource configuration in GoCD.
Import

Environments can be imported using the environment name, e.g.

$ terraform import gocd_environment.environment-name environment-name
gocd_environment_association

Provides support for associating pipelines and environments in GoCD.

NOTE: There is an intention to support agents and environment variables in the future.

Example Usage
resource "gocd_environment_association" "build-in-testing" {
  environment = "${gocd_environment.testing.name}"
  pipeline = "${gocd_pipeline.build.name}"
}

resource "gocd_environment" "testing" {
  name = "testing"
}

resource "gocd_pipeline" "build" {
  name = "build"
  # ...
}
Argument Reference
  • environment - (Required) The name of the environment which the resource is being associated to.
  • pipeline - (Required) The name of the pipeline to associate to the environment
Attributes Reference
  • version - The current version of the resource configuration in GoCD.
Import

Environment Associations can be imported using the environment name, a type identifier, and type value, e.g.

$ terraform import gocd_environment_association.association-name environment-name/p/pipeline-name

NOTE: Currently only pipeline (p) type identifiers are supported.

Development Setup

Get project and install dependencies using glide:

$ go get github.com/beamly/terraform-provider-gocd
$ cd $GOPATH/src/github.com/beamly/terraform-provider-gocd/
$ make before_install

Then you can run tests as follows:

$ make testacc

Demo

You will need docker and terraform >= 0.10.0 installed for this demo to work.

Either build the provider with go build or download it from the gihub repository. If you download it, make sure the binary is in the current folder.

$ go build

Spin up the test gocd server, with endpoint at http://127.0.0.1:8153/go/

$ make provision-test-gocd && sh ./scripts/wait-for-test-server.sh

Then initialise and apply the configuration.

$ terraform init
$ terraform apply

When you're finished, run:

$ make teardown-test-gocd

License

FOSSA Status

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL