mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-02 12:22:26 +02:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
23 lines
507 B
HCL
23 lines
507 B
HCL
# Copyright IBM Corp. 2016, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
output "id" {
|
|
description = "Created VPC ID"
|
|
value = aws_vpc.vpc.id
|
|
}
|
|
|
|
output "ipv4_cidr" {
|
|
description = "The VPC subnet CIDR for ipv4 mode"
|
|
value = var.ipv4_cidr
|
|
}
|
|
|
|
output "ipv6_cidr" {
|
|
description = "The VPC subnet CIDR for ipv6 mode"
|
|
value = aws_vpc.vpc.ipv6_cidr_block
|
|
}
|
|
|
|
output "cluster_id" {
|
|
description = "A unique string associated with the VPC"
|
|
value = random_string.cluster_id.result
|
|
}
|