Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* 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>
2025-10-21 15:20:20 -06:00

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
}