update var to skip_delete per feedback

This commit is contained in:
Christopher Avila
2021-11-01 11:32:37 -05:00
parent 3663151465
commit e42383eab9
3 changed files with 8 additions and 8 deletions

View File

@@ -162,12 +162,6 @@ variable "project_create" {
default = true
}
variable "project_skip_delete" {
description = "Allows the underlying resources to be destroyed without destroying the project itself."
type = bool
default = false
}
variable "service_config" {
description = "Configure service API activation."
type = object({
@@ -227,3 +221,9 @@ variable "shared_vpc_service_config" {
host_project = ""
}
}
variable "skip_delete" {
description = "Allows the underlying resources to be destroyed without destroying the project itself."
type = bool
default = false
}