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/worker/outputs.tf

23 lines
565 B

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
output "worker_ip" {
description = "The public IP of the Boundary worker"
value = aws_instance.worker.public_ip
}
output "worker_tags" {
description = "The tags used in the worker's configuration"
value = var.worker_type_tags
}
output "subnet_ids" {
description = "The ID of the subnet this worker resides in"
value = [aws_subnet.default.id]
}
output "pet_id" {
description = "The ID of the random_pet used in this module"
value = random_pet.worker.id
}