Skip to content

Commit

Permalink
Adding credentials for docker hub feed
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Sep 8, 2022
1 parent dcabc05 commit c4dc6c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit c4dc6c4

Please sign in to comment.