forked from altran/_Whydah-SecurityTokenService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_hazelcast.xml
29 lines (27 loc) · 1.16 KB
/
test_hazelcast.xml
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
<hazelcast xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.hazelcast.com/schema/config
http://www.hazelcast.com/schema/config/hazelcast-config-4.2.xsd"
xmlns="http://www.hazelcast.com/schema/config">
<network>
<join>
<!-- default configuration = hazelcast = OFF -->
<multicast enabled="false">
<multicast-group>224.2.2.3</multicast-group>
<multicast-port>54327</multicast-port>
</multicast>
<tcp-ip enabled="false">
<interface>192.168.1.2</interface>
</tcp-ip>
<aws enabled="false">
<access-key>my-access-key</access-key>
<secret-key>my-secret-key</secret-key>
<region>us-east-1</region>
<!-- AWS security group -->
<security-group-name>peter</security-group-name>
<!-- EC2 AMI/server tags to match against -->
<tag-key>type</tag-key>
<tag-value>hz-nodes</tag-value>
</aws>
</join>
</network>
</hazelcast>