Skip to content

Commit

Permalink
Adding back in the feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
BobJWalker committed Jan 11, 2022
1 parent 5c16000 commit 2f3293f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions octopus-samples-instances/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,24 @@ provider "octopusdeploy" {
space_id = var.octopus_space_id
}

resource "octopusdeploy_feed" "github" {
name = "GitHub Feed TF"
feed_type = "GitHub"
feed_uri = "https://api.github.com"
}

resource "octopusdeploy_feed" "feedz" {
name = "Feedz Feed TF"
feed_type = "NuGet"
feed_uri = "https://f.feedz.io/octopus-deploy-samples/octopus-samples/nuget/index.json"
}

resource "octopusdeploy_feed" "docker" {
name = "Docker Feed TF"
feed_type = "Docker"
feed_uri = "https://index.docker.io"
}

resource "octopusdeploy_static_worker_pool" "aws_worker_pool" {
name = "AWS Worker Pool TF"
description = "Worker pool to access AWS resources. This is managed by the Octopus Terraform Provider. Please do not make changes in the UI, update the TF file instead."
Expand Down

0 comments on commit 2f3293f

Please sign in to comment.