Merge pull request 'feature/replace-deprecated-resources' (#1) from feature/replace-deprecated-resources into main

Reviewed-on: #1
This commit is contained in:
Bertrand Lanson 2024-02-24 13:08:39 +00:00
commit 1557619a6d
2 changed files with 5 additions and 10 deletions

13
main.tf
View File

@ -2,26 +2,24 @@
resource "nomad_job" "this" {
for_each = var.jobs
depends_on = [
nomad_external_volume.this,
nomad_csi_volume.this,
nomad_csi_volume_registration.this,
consul_key_prefix.this,
# consul_config_entry.this
consul_intention.this
]
jobspec = file("${each.value}")
jobspec = file(each.value)
purge_on_destroy = true
hcl2 {
enabled = true
allow_fs = true
}
}
resource "nomad_external_volume" "this" {
resource "nomad_csi_volume" "this" {
for_each = var.volumes
volume_id = each.key
name = each.key
type = each.value.type
plugin_id = each.value.plugin_id
namespace = each.value.namespace
capacity_min = each.value.capacity_min
@ -34,13 +32,12 @@ resource "nomad_external_volume" "this" {
secrets = sensitive(each.value.secrets)
}
resource "nomad_volume" "this" {
resource "nomad_csi_volume_registration" "this" {
for_each = var.nfs_volumes
volume_id = each.key
external_id = each.key
name = each.key
type = each.value.type
plugin_id = each.value.plugin_id
namespace = each.value.namespace
capability {

View File

@ -7,7 +7,6 @@ variable "jobs" {
variable "volumes" {
type = map(object({
type = string
plugin_id = string
namespace = string
capacity_min = string
@ -22,7 +21,6 @@ variable "volumes" {
variable "nfs_volumes" {
type = map(object({
type = string
plugin_id = string
namespace = string
capability = map(string)