Announcing: Spinnaker Terraform Provider
Jan 8, 2019 by Armory
We are excited to announce the initial release of Spinnaker Resource Provider for HashiCorp Terraform, which enables management of Spinnaker applications and pipelines with Terraform.
https://github.com/armory-io/terraform-provider-spinnaker
We have been investing heavily in integrating Terraform with Spinnaker via a native Terraform stage. This new capability seeks to enable customers who extensively use Terraform to enjoy the benefits of interacting with Spinnaker through Terraform.
Available Resources:
spinnaker_application
resource "spinnaker_application" "my_app" { application = "terraformtest"
email = "[email protected]"
}
spinnaker_pipeline
resource "spinnaker_pipeline" "terraform_example" {
application = "${spinnaker_application.my_app.application}"
name = "Example Pipeline"
pipeline = file("pipelines/example.json")
}
The Spinnaker Terraform Provider is open-source and is being actively developed by Armory. We encourage and appreciate any feedback and pull requests.
Armory’s platform exists to help software teams ship better software faster. You can:
- Try installing our platform here
- Get trained on Spinnaker
- Want to become an Armory customer? Contact us here.
Enjoy!