mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-26 15:27:26 +00:00
* Fix licensing on various files * Update packaging to use BUSL-1.1 * Update offset within config_test_helpers.go - Fix a test the same way it's been fixed on main/1.15
18 lines
361 B
HCL
18 lines
361 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
output "id" {
|
|
description = "Created VPC ID"
|
|
value = aws_vpc.vpc.id
|
|
}
|
|
|
|
output "cidr" {
|
|
description = "CIDR for whole VPC"
|
|
value = var.cidr
|
|
}
|
|
|
|
output "cluster_id" {
|
|
description = "A unique string associated with the VPC"
|
|
value = random_string.cluster_id.result
|
|
}
|