Merge branch 'master' into sruffilli/spot-vm

This commit is contained in:
Ludovico Magnocavallo 2022-05-04 18:26:45 +02:00 committed by GitHub
commit fcfbcee136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
}