Adding Apigee Environments as output for apigee-organization module

This commit is contained in:
Daniel Strebel 2021-11-24 18:50:38 +01:00
parent ce2d0976e6
commit c484f052ec
2 changed files with 6 additions and 0 deletions

View File

@ -118,6 +118,7 @@ module "apigee-organization" {
| name | description | sensitive |
|---|---|:---:|
| envs | Apigee Environments. | |
| org | Apigee Organization. | |
| org_ca_certificate | Apigee organization CA certificate. | |
| org_id | Apigee Organization ID. | |

View File

@ -14,6 +14,11 @@
* limitations under the License.
*/
output "envs" {
description = "Apigee Environments."
value = google_apigee_environment.apigee_env
}
output "org" {
description = "Apigee Organization."
value = google_apigee_organization.apigee_org