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/aws_vault/main.tf

22 lines
385 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
terraform {
required_providers {
enos = {
source = "registry.terraform.io/hashicorp-forge/enos"
version = ">= 0.4.2"
}
}
}
data "enos_environment" "localhost" {}
resource "random_string" "cluster_id" {
length = 8
lower = true
upper = false
numeric = false
special = false
}