62 lines
2.0 KiB
HCL
62 lines
2.0 KiB
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
terraform {
|
|
required_providers {
|
|
enos = {
|
|
source = "app.terraform.io/hashicorp-qti/enos"
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
vault_instances = toset([for idx in range(var.vault_instance_count) : tostring(idx)])
|
|
}
|
|
|
|
# Get the date from the vault status command - status_date
|
|
# Format the original status output with ISO-8601 - formatted_date
|
|
# Format the original status output with awk - awk_date
|
|
# Compare the formatted outputs - date_comparison
|
|
resource "enos_remote_exec" "status_date" {
|
|
for_each = local.vault_instances
|
|
|
|
transport = {
|
|
kubernetes = {
|
|
kubeconfig_base64 = var.kubeconfig_base64
|
|
context_name = var.context_name
|
|
pod = var.vault_pods[each.key].name
|
|
namespace = var.vault_pods[each.key].namespace
|
|
}
|
|
}
|
|
|
|
inline = ["${var.vault_bin_path} status -format=json | grep build_date | cut -d \\\" -f 4"]
|
|
}
|
|
|
|
resource "enos_remote_exec" "formatted_date" {
|
|
for_each = local.vault_instances
|
|
|
|
transport = {
|
|
kubernetes = {
|
|
kubeconfig_base64 = var.kubeconfig_base64
|
|
context_name = var.context_name
|
|
pod = var.vault_pods[each.key].name
|
|
namespace = var.vault_pods[each.key].namespace
|
|
}
|
|
}
|
|
|
|
inline = ["date -d \"${enos_remote_exec.status_date[each.key].stdout}\" -D '%Y-%m-%dT%H:%M:%SZ' -I"]
|
|
}
|
|
|
|
resource "enos_local_exec" "awk_date" {
|
|
for_each = local.vault_instances
|
|
|
|
inline = ["echo ${enos_remote_exec.status_date[each.key].stdout} | awk -F\"T\" '{printf $1}'"]
|
|
}
|
|
|
|
resource "enos_local_exec" "date_comparison" {
|
|
for_each = local.vault_instances
|
|
|
|
inline = ["[[ ${enos_local_exec.awk_date[each.key].stdout} == ${enos_remote_exec.formatted_date[each.key].stdout} ]] && echo \"Verification for build date format ${enos_remote_exec.status_date[each.key].stdout} succeeded\" || \"invalid build_date, must be formatted as RFC 3339: ${enos_remote_exec.status_date[each.key].stdout}\""]
|
|
}
|