All Projects → pulumi → circleci

pulumi / circleci

Licence: Apache-2.0 license
CircleCI Orbs for CI/CD using Pulumi.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to circleci

orbs
Swissknife! A set of useful commands / jobs in circle workflows
Stars: ✭ 27 (+68.75%)
Mutual labels:  circleci, circleci-orbs
docker-orb
Install/use various Docker-related tools on CircleCI
Stars: ✭ 18 (+12.5%)
Mutual labels:  circleci, circleci-orbs
circleci-ruby-orbs
CircleCI orb for ruby
Stars: ✭ 16 (+0%)
Mutual labels:  circleci-orb, circleci-orbs
orb-starter-kit
A starter kit for new orb authors
Stars: ✭ 27 (+68.75%)
Mutual labels:  circleci, circleci-orbs
shellcheck-orb
An orb for ShellCheck, a static analysis tool for shell scripts (https://shellcheck.net) — check all scripts in your repository on every commit
Stars: ✭ 18 (+12.5%)
Mutual labels:  circleci, circleci-orbs
compare-url
CircleCI 2.1 pipelines disable the CIRCLE_COMPARE_URL environment variable, useful when working with monorepo projects. This orb manually recreates (and improves!) it.
Stars: ✭ 31 (+93.75%)
Mutual labels:  circleci, circleci-orbs
circleci-ethereum
CI/CD for Ethereum Smart Contracts with CircleCI and Truffle
Stars: ✭ 21 (+31.25%)
Mutual labels:  circleci
terraform-aws-iam-system-user
Terraform Module to Provision a Basic IAM System User Suitable for CI/CD Systems (E.g. TravisCI, CircleCI)
Stars: ✭ 71 (+343.75%)
Mutual labels:  circleci
cypress-example-docker-circle-workflows
Cypress + Docker + CircleCI Workflows = ❤️
Stars: ✭ 29 (+81.25%)
Mutual labels:  circleci
create-react-app-circleci
create-react-app + CircleCI CI/CD workflow
Stars: ✭ 18 (+12.5%)
Mutual labels:  circleci
Orb-Project-Template
A starter template for orb projects. Build, test, and publish orbs automatically on CircleCI. Use the Orb Development Kit to get started.
Stars: ✭ 24 (+50%)
Mutual labels:  circleci-orb
neu ui
Prototype and build projects faster using Neu UI - an open source React component library designed to neumorphic style. Built using React, Styled Components, Jest and Storybook.
Stars: ✭ 23 (+43.75%)
Mutual labels:  circleci
ci-skip
CI skip comment
Stars: ✭ 35 (+118.75%)
Mutual labels:  circleci
sekoliko
Sekoliko | MySchool | MonEcole : School management Software.
Stars: ✭ 39 (+143.75%)
Mutual labels:  circleci
circleci-packer-example
Example: packer image builder on CircleCI
Stars: ✭ 20 (+25%)
Mutual labels:  circleci
cypress-slack-reporter
A home for various Cypress Plugins
Stars: ✭ 126 (+687.5%)
Mutual labels:  circleci
ng-charts
🎨📉 A fully functional Angular 14+ Chart.js library based from ng2-charts
Stars: ✭ 14 (-12.5%)
Mutual labels:  circleci
st2-packages
StackStorm deb/rpm packages (automated docker build pipeline)
Stars: ✭ 25 (+56.25%)
Mutual labels:  circleci
ci-minikube
run minikube on ci
Stars: ✭ 28 (+75%)
Mutual labels:  circleci
circleci-config-sdk-ts
Generate CircleCI Configuration YAML from JavaScript or TypeScript. Use Dynamic Configuration and the Config SDK together for live generative config.
Stars: ✭ 59 (+268.75%)
Mutual labels:  circleci

Pulumi Orbs for CircleCI

This repository contains Pulumi Orbs for use in CircleCI. Using these orbs will allow you to easily integrate stack updates and previews into your existing CI/CD workflow, without the need for writing custom scripts.

Usage

To use these orbs, simply include the pulumi/[email protected] orbs package, and then call the orb commands like pulumi/login or pulumi/update from your CircleCI configuration file.

version: 2.1
orbs:
  pulumi: pulumi/[email protected]
jobs:
  build:
    docker:
      - image: circleci/node:7.10
    working_directory: ~/repo
    steps:
      - checkout
      - pulumi/login
      - run:
          command: |
            npm install
            npm run build
      - pulumi/update:
          stack: website-prod

Orb Reference

pulumi/login

The login orb downloads the Pulumi CLI and authenticates with the Pulumi service.

It is recommended to omit the version and access-token parameters, and instead download the latest Pulumi CLI and provide the access token via a secure environment variable named PULUMI_ACCESS_TOKEN.

Parameter type default description
version string latest Version of the Pulumi CLI to install.
cloud-url string https://api.pulumi.com URL of the Pulumi service to log into.
access-token string ${PULUMI_ACCESS_TOKEN} The access token to use to log in.

pulumi/stack_init

The stack_init orb initializes a new Pulumi stack.

If the Pulumi.yaml file for your stack is in a different directory than the CircleCI job's current working directory, you will need to set the working_directory parameter.

Parameter type default description
stack string (none) Name of the stack to initialize.
secrets_provider string default The type of the provider that should be used to encrypt and decrypt secrets (possible choices: default, passphrase, awskms, azurekeyvault, gcpkms, hashivault).
working_directory string . The relative working directory to run pulumi from.
copy string "" The stack name from which to copy an existing stack's configuration

pulumi/stack_rm

The stack_rm orb removes a stack and its configuration..

Parameter type default description
stack string (none) Name of the stack to remove.
force boolean false Whether or not to force deletion of the stack, leaving behind any resources managed by the stack.
working_directory string . The relative working directory to run pulumi from.

pulumi/stack_output

The stack_output sets a stack's output property to an environment variable.

Parameter type default description
stack string (none) Name of the stack to read the output property from.
property_name string (none) Name of the output property to read.
env_var string (none) Name of the environment variable to set the output property's value to.
show_secrets boolean false Display stack outputs which are marked as secret in plaintext.
working_directory string . The relative working directory to run pulumi from.

pulumi/preview

The preview orb performs a preview of the update to a given Pulumi stack.

It is recommended to always run a preview in your CI/CD, as it will catch certain classes of errors that wouldn't otherwise be found in a standard build, test, lint setup.

Parameter type default description
stack string (none) Name of the Pulumi stack to preview.
working_directory string . The relative working directory to run pulumi from.

pulumi/update

The update orb performs an update to a given Pulumi stack.

Parameter type default description
stack string (none) Name of the Pulumi stack to update.
working_directory string . The relative working directory to run pulumi from.
skip-preview boolean false Whether or not to skip the preview step before the update.

pulumi/destroy

The destroy orb destroys a given Pulumi stack and its resources. After running to completion, all of this stack’s resources and associated state will be gone.

Warning: this command is generally irreversible and should be used with great care.

Parameter type default description
stack string (none) Name of the Pulumi stack to destroy.
working_directory string . The relative working directory to run pulumi from.
skip-preview boolean false Whether or not to skip the preview step before destroying the stack.

pulumi/refresh

The refresh orb performs a refresh to a given Pulumi stack. The stack’s resource state is compared to the current state known in the cloud provider, and the stack's resources are updated as necessary. No changes will be made to the resources on the cloud provider, but resources that can no longer be found will be removed from the stack.

Parameter type default description
stack string (none) Name of the Pulumi stack to refresh.
expect_no_changes boolean false If set, Pulumi will report an error if any resource changes are detected.
working_directory string . The relative working directory to run pulumi from.
skip-preview boolean false Whether or not to skip the preview step before the refresh.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].