From 19b3999bc11492f714ee87b640ec2847f12c7e80 Mon Sep 17 00:00:00 2001 From: twerthi Date: Mon, 15 Aug 2022 15:48:34 -0700 Subject: [PATCH] Revert to previous OD version of TF provider --- .../external-feeds.tf | 20 +++++++++---------- .../octopus-space-standards-terraform/main.tf | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf b/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf index c81e99f..ac4c99e 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf @@ -1,21 +1,21 @@ -resource "octopusdeploy_github_repository_feed" "github" { +resource "octopusdeploy_feed" "github" { name = "GitHub Feed TF" - #feed_type = "GitHub" + feed_type = "GitHub" feed_uri = "https://api.github.com" - #is_enhanced_mode = false + is_enhanced_mode = false } -resource "octopusdeploy_nuget_feed" "feedz" { +resource "octopusdeploy_feed" "feedz" { name = "Feedz Feed TF" - #feed_type = "NuGet" + feed_type = "NuGet" feed_uri = "https://f.feedz.io/octopus-deploy-samples/octopus-samples/nuget/index.json" } -resource "octopusdeploy_docker_container_registry" "docker" { +resource "octopusdeploy_feed" "docker" { name = "Docker Feed TF" - #feed_type = "Docker" + feed_type = "Docker" feed_uri = "https://index.docker.io" - #is_enhanced_mode = false - #download_attempts = 0 - #download_retry_backoff_seconds = 0 + is_enhanced_mode = false + download_attempts = 0 + download_retry_backoff_seconds = 0 } \ No newline at end of file diff --git a/octopus-samples-instances/octopus-space-standards-terraform/main.tf b/octopus-samples-instances/octopus-space-standards-terraform/main.tf index 4ec2957..a843606 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/main.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { octopusdeploy = { source = "OctopusDeployLabs/octopusdeploy" - version = ">= 0.7.64" # example: 0.7.62 + version = "0.7.73" # example: 0.7.62 } }