fix: move profile to module
This commit is contained in:
@@ -27,6 +27,7 @@ variable "profiles" {
|
||||
type = list(string)
|
||||
description = "The profiles for this instance."
|
||||
nullable = false
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "network" {
|
||||
@@ -40,3 +41,15 @@ variable "ipv4_address" {
|
||||
description = "The IPv4 address for this instance."
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "cpu" {
|
||||
type = number
|
||||
description = "The number of CPUs for this instance."
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "memory" {
|
||||
type = string
|
||||
description = "The amount of memory allocated for this instance."
|
||||
nullable = false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user