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 ac4c99e..f86be52 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/external-feeds.tf @@ -18,4 +18,6 @@ resource "octopusdeploy_feed" "docker" { is_enhanced_mode = false download_attempts = 0 download_retry_backoff_seconds = 0 + username = var.octopus_feed_dockerhub_username + password = var.octopus_feed_dockerhub_password } \ No newline at end of file diff --git a/octopus-samples-instances/octopus-space-standards-terraform/variables.tf b/octopus-samples-instances/octopus-space-standards-terraform/variables.tf index e6ce2db..e8be9ac 100644 --- a/octopus-samples-instances/octopus-space-standards-terraform/variables.tf +++ b/octopus-samples-instances/octopus-space-standards-terraform/variables.tf @@ -198,4 +198,13 @@ variable "octopus_aws_mariadb_admin_username" { variable "octopus_aws_mariadb_admin_password" { type = string sensitive = true +} + +variable "octopus_feed_dockerhub_username" { + type = string +} + +variable "octopus_feed_dockerhub_password" { + type = string + sensitive = true } \ No newline at end of file