cloud-foundation-fabric/modules/apigee-x-instance
Daniel Strebel 24b5e03c80 initial scaffold for an Apigee tf module 2021-08-04 17:09:44 +02:00
..
README.md initial scaffold for an Apigee tf module 2021-08-04 17:09:44 +02:00
main.tf initial scaffold for an Apigee tf module 2021-08-04 17:09:44 +02:00
outputs.tf initial scaffold for an Apigee tf module 2021-08-04 17:09:44 +02:00
variables.tf initial scaffold for an Apigee tf module 2021-08-04 17:09:44 +02:00

README.md

Apigee Module

This module allows managing a single Apigee X instance and its environment attachments.

TODO

  • N/A

Examples

Apigee X Evaluation Instance

module "apigee-x-instance" {
  source             = "./modules/apigee-x-instance"
  name               = "my-us-instance"
  region             = "us-central1"
  cidr_mask          = 22

  apigee_org_id      = "my-project"
  apigee_environments = [
    "eval1",
    "eval2"
  ]
}
# tftest:modules=1:resources=3