-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert to previous OD version of TF provider
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters