feat: terraform configuration for classic VPS
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
variable "ovh_endpoint" {
|
||||
type = string
|
||||
description = "The OVH API endpoint"
|
||||
default = "ovh-eu"
|
||||
}
|
||||
|
||||
variable "ovh_application_key" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "ovh_application_secret" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "ovh_consumer_key" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "ovh_project_id" {
|
||||
type = string
|
||||
description = "The OVH Public Cloud Project ID (Service Name)"
|
||||
}
|
||||
|
||||
variable "ssh_public_key" {
|
||||
type = string
|
||||
description = "The public SSH key to install on the VM"
|
||||
}
|
||||
Reference in New Issue
Block a user