Skip to content

Instantly share code, notes, and snippets.

@asizikov
Created January 28, 2021 10:27
Show Gist options
  • Save asizikov/3c38307ef53cff53631edad17ece29a2 to your computer and use it in GitHub Desktop.
Save asizikov/3c38307ef53cff53631edad17ece29a2 to your computer and use it in GitHub Desktop.
Octopus Deploy Project configuration
# https://blog.cloud-eng.nl/2021/01/27/terraform-octopus-deploy/
resource "octopusdeploy_lifecycle" "default" {
name = "Default Lifecycle"
}
resource "octopusdeploy_project_group" "default" {
name = "Default Project Group"
description = "Azure Echo Function"
}
resource "octopusdeploy_project" "echo-api" {
name = "Echo Api"
lifecycle_id = octopusdeploy_lifecycle.default.id
project_group_id = octopusdeploy_project_group.default.id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment