Skip to content

Commit

Permalink
fix: Don't provide defaults for public repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
frmrm committed Jul 25, 2024
1 parent 10a591a commit 23c2f58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -102,25 +102,25 @@ variable "remote_repository_config" {
}), null)
}), null)
docker_repository = optional(object({
public_repository = optional(string, "DOCKER_HUB")
public_repository = optional(string)
custom_repository = optional(object({
uri = string
}), null)
}), null)
maven_repository = optional(object({
public_repository = optional(string, "MAVEN_CENTRAL")
public_repository = optional(string)
custom_repository = optional(object({
uri = string
}), null)
}), null)
npm_repository = optional(object({
public_repository = optional(string, "NPMJS")
public_repository = optional(string)
custom_repository = optional(object({
uri = string
}), null)
}), null)
python_repository = optional(object({
public_repository = optional(string, "PYPI")
public_repository = optional(string)
custom_repository = optional(object({
uri = string
}), null)
Expand Down

0 comments on commit 23c2f58

Please sign in to comment.