community/modules/internal/slurm-gcp/internal_instance_template/variables.tf (308 lines of code) (raw):
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
variable "project_id" {
type = string
description = "The GCP project ID"
default = null
}
variable "name_prefix" {
description = "Name prefix for the instance template"
type = string
}
variable "machine_type" {
description = "Machine type to create, e.g. n1-standard-1"
type = string
default = "n1-standard-1"
}
variable "min_cpu_platform" {
description = "Specifies a minimum CPU platform. Applicable values are the friendly names of CPU platforms, such as Intel Haswell or Intel Skylake. See the complete list: https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform"
type = string
default = null
}
variable "can_ip_forward" {
description = "Enable IP forwarding, for NAT instances for example"
type = string
default = "false"
}
variable "tags" {
type = list(string)
description = "Network tags, provided as a list"
default = []
}
variable "labels" {
type = map(string)
description = "Labels, provided as a map"
default = {}
}
variable "preemptible" {
type = bool
description = "Allow the instance to be preempted"
default = false
}
variable "spot" {
description = <<-EOD
Provision as a SPOT preemptible instance.
See https://cloud.google.com/compute/docs/instances/spot for more details.
EOD
type = bool
default = false
}
variable "instance_termination_action" {
description = <<-EOD
Which action to take when Compute Engine preempts the VM. Value can be: 'STOP', 'DELETE'. The default value is 'STOP'.
See https://cloud.google.com/compute/docs/instances/spot for more details.
EOD
type = string
default = null
}
variable "automatic_restart" {
type = bool
description = "(Optional) Specifies whether the instance should be automatically restarted if it is terminated by Compute Engine (not terminated by a user)."
default = true
}
variable "on_host_maintenance" {
type = string
description = "Instance availability Policy"
default = "MIGRATE"
}
variable "region" {
type = string
description = "Region where the instance template should be created."
default = null
}
variable "advanced_machine_features" {
description = "See https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_instance_template#nested_advanced_machine_features"
type = object({
enable_nested_virtualization = optional(bool)
threads_per_core = optional(number)
turbo_mode = optional(string)
visible_core_count = optional(number)
performance_monitoring_unit = optional(string)
enable_uefi_networking = optional(bool)
})
}
variable "resource_manager_tags" {
description = "(Optional) A set of key/value resource manager tag pairs to bind to the instances. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456."
type = map(string)
default = {}
validation {
condition = alltrue([for value in var.resource_manager_tags : can(regex("tagValues/[0-9]+", value))])
error_message = "All Resource Manager tag values should be in the format 'tagValues/[0-9]+'"
}
validation {
condition = alltrue([for value in keys(var.resource_manager_tags) : can(regex("tagKeys/[0-9]+", value))])
error_message = "All Resource Manager tag keys should be in the format 'tagKeys/[0-9]+'"
}
}
#######
# disk
#######
variable "source_image" {
description = "Source disk image. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image."
type = string
default = ""
}
variable "source_image_family" {
description = "Source image family. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image."
type = string
default = "centos-7"
}
variable "source_image_project" {
description = "Project where the source image comes from. The default project contains CentOS images."
type = string
default = "centos-cloud"
}
variable "disk_size_gb" {
description = "Boot disk size in GB"
type = string
default = "100"
}
variable "disk_type" {
description = "Boot disk type, can be either pd-ssd, local-ssd, or pd-standard"
type = string
default = "pd-standard"
}
variable "disk_labels" {
description = "Labels to be assigned to boot disk, provided as a map"
type = map(string)
default = {}
}
variable "disk_encryption_key" {
description = "The id of the encryption key that is stored in Google Cloud KMS to use to encrypt all the disks on this instance"
type = string
default = null
}
variable "auto_delete" {
description = "Whether or not the boot disk should be auto-deleted"
type = string
default = "true"
}
variable "disk_resource_manager_tags" {
description = "(Optional) A set of key/value resource manager tag pairs to bind to the instance disks. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456."
type = map(string)
default = {}
validation {
condition = alltrue([for value in var.disk_resource_manager_tags : can(regex("tagValues/[0-9]+", value))])
error_message = "All Resource Manager tag values should be in the format 'tagValues/[0-9]+'"
}
validation {
condition = alltrue([for value in keys(var.disk_resource_manager_tags) : can(regex("tagKeys/[0-9]+", value))])
error_message = "All Resource Manager tag keys should be in the format 'tagKeys/[0-9]+'"
}
}
variable "additional_disks" {
description = "List of maps of additional disks. See https://www.terraform.io/docs/providers/google/r/compute_instance_template#disk_name"
type = list(object({
source = optional(string)
disk_name = optional(string)
device_name = string
auto_delete = bool
boot = bool
disk_size_gb = optional(number)
disk_type = optional(string)
disk_labels = map(string)
disk_resource_manager_tags = map(string)
}))
default = []
}
####################
# network_interface
####################
variable "network" {
description = "The name or self_link of the network to attach this interface to. Use network attribute for Legacy or Auto subnetted networks and subnetwork for custom subnetted networks."
type = string
default = ""
}
variable "nic_type" {
description = "The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET."
type = string
default = null
}
variable "subnetwork" {
description = "The name of the subnetwork to attach this interface to. The subnetwork must exist in the same region this instance will be created in. Either network or subnetwork must be provided."
type = string
default = ""
}
variable "subnetwork_project" {
description = "The ID of the project in which the subnetwork belongs. If it is not provided, the provider project is used."
type = string
default = null
}
variable "network_ip" {
description = "Private IP address to assign to the instance if desired."
type = string
default = ""
}
variable "stack_type" {
description = "The stack type for this network interface to identify whether the IPv6 feature is enabled or not. Values are `IPV4_IPV6` or `IPV4_ONLY`. Default behavior is equivalent to IPV4_ONLY."
type = string
default = null
}
variable "additional_networks" {
description = "Additional network interface details for GCE, if any."
default = []
type = list(object({
network = string
subnetwork = string
subnetwork_project = string
network_ip = string
nic_type = string
access_config = list(object({
nat_ip = string
network_tier = string
}))
ipv6_access_config = list(object({
network_tier = string
}))
}))
}
variable "total_egress_bandwidth_tier" {
description = <<EOF
Network bandwidth tier. Note: machine_type must be a supported type. Values are 'TIER_1' or 'DEFAULT'.
See https://cloud.google.com/compute/docs/networking/configure-vm-with-high-bandwidth-configuration for details.
EOF
type = string
default = "DEFAULT"
}
###########
# metadata
###########
variable "startup_script" {
description = "User startup script to run when instances spin up"
type = string
default = ""
}
variable "metadata" {
type = map(string)
description = "Metadata, provided as a map"
default = {}
}
##################
# service_account
##################
variable "service_account" {
type = object({
email = optional(string)
scopes = set(string)
})
description = "Service account to attach to the instance. See https://www.terraform.io/docs/providers/google/r/compute_instance_template#service_account."
}
###########################
# Shielded VMs
###########################
variable "enable_shielded_vm" {
type = bool
default = false
description = "Whether to enable the Shielded VM configuration on the instance. Note that the instance image must support Shielded VMs. See https://cloud.google.com/compute/docs/images"
}
variable "shielded_instance_config" {
description = "Not used unless enable_shielded_vm is true. Shielded VM configuration for the instance."
type = object({
enable_secure_boot = bool
enable_vtpm = bool
enable_integrity_monitoring = bool
})
default = {
enable_secure_boot = true
enable_vtpm = true
enable_integrity_monitoring = true
}
}
###########################
# Confidential Compute VMs
###########################
variable "enable_confidential_vm" {
type = bool
default = false
description = "Whether to enable the Confidential VM configuration on the instance. Note that the instance image must support Confidential VMs. See https://cloud.google.com/compute/docs/images"
}
###########################
# Public IP
###########################
variable "access_config" {
description = "Access configurations, i.e. IPs via which the VM instance can be accessed via the Internet."
type = list(object({
nat_ip = string
network_tier = string
}))
default = []
}
variable "ipv6_access_config" {
description = "IPv6 access configurations. Currently a max of 1 IPv6 access configuration is supported. If not specified, the instance will have no external IPv6 Internet access."
type = list(object({
network_tier = string
}))
default = []
}
###########################
# Guest Accelerator (GPU)
###########################
variable "gpu" {
description = "GPU information. Type and count of GPU to attach to the instance template. See https://cloud.google.com/compute/docs/gpus more details"
type = object({
type = string
count = number
})
default = null
}
##################
# alias IP range
##################
variable "alias_ip_range" {
description = <<EOF
An array of alias IP ranges for this network interface. Can only be specified for network interfaces on subnet-mode networks.
ip_cidr_range: The IP CIDR range represented by this alias IP range. This IP CIDR range must belong to the specified subnetwork and cannot contain IP addresses reserved by system or used by other network interfaces. At the time of writing only a netmask (e.g. /24) may be supplied, with a CIDR format resulting in an API error.
subnetwork_range_name: The subnetwork secondary range name specifying the secondary range from which to allocate the IP CIDR range for this alias IP range. If left unspecified, the primary range of the subnetwork will be used.
EOF
type = object({
ip_cidr_range = string
subnetwork_range_name = string
})
default = null
}
variable "max_run_duration" {
description = "The duration (in whole seconds) of the instance. Instance will run and be terminated after then."
type = number
default = null
}
variable "provisioning_model" {
description = "The provisioning model of the instance"
type = string
default = null
}
variable "reservation_affinity" {
description = "Specifies the reservations that this instance can consume from."
type = object({ type = string })
default = null
}