forked from apiman/apiman-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared-properties.yml
More file actions
36 lines (36 loc) · 927 Bytes
/
shared-properties.yml
File metadata and controls
36 lines (36 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Shared properties example
---
system:
gateways:
- name: "test-gw"
description: "Test Gateway"
type: "REST"
config:
endpoint: "http://localhost:8080/apiman-gateway-api"
username: "apimanager"
password: "apiman123!"
shared:
properties:
commonApiEndpoint: "http://example.com"
org:
name: "test"
description: "Test organisation"
apis:
- name: "example1"
description: "Example API 1"
version: "1.0"
published: true
config:
endpoint: "${commonApiEndpoint}"
endpointType: "rest"
public: true
gateway: "test-gw"
- name: "example2"
description: "Example API 2"
version: "1.0"
published: true
config:
endpoint: "${commonApiEndpoint}"
endpointType: "rest"
public: true
gateway: "test-gw"