add service_attachment to Apigee instance outputs

This commit is contained in:
Daniel Strebel 2022-05-03 17:02:57 +02:00
parent e8e26f6866
commit 1a53c16365
2 changed files with 6 additions and 0 deletions

View File

@ -64,5 +64,6 @@ module "apigee-x-instance" {
| [id](outputs.tf#L22) | Apigee instance ID. | |
| [instance](outputs.tf#L27) | Apigee instance. | |
| [port](outputs.tf#L32) | Port number of the internal endpoint of the Apigee instance. | |
| [service_attachment](outputs.tf#L37) | Resource name of the service attachment created for this Apigee instance. | |
<!-- END TFDOC -->

View File

@ -33,3 +33,8 @@ output "port" {
description = "Port number of the internal endpoint of the Apigee instance."
value = google_apigee_instance.apigee_instance.port
}
output "service_attachment" {
description = "Resource name of the service attachment created for this Apigee instance."
value = google_apigee_instance.apigee_instance.service_attachment
}