Bump provider versions to v5.0.0 (#1724)
* bump provider versions to 5.0.0 * fix cloud run, logging and vpc-sc * Fix secret manager * fix gke nodepool * fix gke multitenant stage and blueprint * Moving alloydb module to experimental. * Add project to bare resources in examples * tfdoc * fix svpc blueprint test * Revert "fix svpc blueprint test" This reverts commit 14f02659098070136e64ead600580dd52c23c339. * Fix GKE peering project * Disable tests in alloydb module * Bring back secret ids in secret manager tests * Remove duplicate key * last push --------- Co-authored-by: Julio Castillo <jccb@google.com>
This commit is contained in:
committed by
GitHub
parent
88fb331280
commit
789328ff5a
@@ -186,10 +186,17 @@ variable "tags" {
|
||||
|
||||
variable "taints" {
|
||||
description = "Kubernetes taints applied to all nodes."
|
||||
type = list(object({
|
||||
key = string
|
||||
type = map(object({
|
||||
value = string
|
||||
effect = string
|
||||
}))
|
||||
default = null
|
||||
nullable = false
|
||||
default = {}
|
||||
validation {
|
||||
condition = alltrue([
|
||||
for k, v in var.taints :
|
||||
contains(["NO_SCHEDULE", "PREFER_NO_SCHEDULE", "NO_EXECUTE"], v.effect)
|
||||
])
|
||||
error_message = "Invalid taint effect."
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user