diff --git a/octopus-samples-instances/terraform/main.tf b/octopus-samples-instances/terraform/main.tf index d3831eb..8d8b56b 100644 --- a/octopus-samples-instances/terraform/main.tf +++ b/octopus-samples-instances/terraform/main.tf @@ -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."