Skip to content

Commit

Permalink
Revert to previous OD version of TF provider
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 15, 2022
1 parent dbaf01e commit 19b3999
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -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
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down

0 comments on commit 19b3999

Please sign in to comment.