You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/enos/modules/build_boundary_docker_crt/main.tf

20 lines
380 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
terraform {
required_providers {
enos = {
source = "app.terraform.io/hashicorp-qti/enos"
}
}
}
variable "path" {
description = "Path of boundary docker image file to load"
type = string
}
resource "enos_local_exec" "load_docker_image" {
inline = ["docker load -i ${var.path}"]
}