1
2; Complete CSM profile
3[aws_csm]
4csm_enabled = true
5csm_host = bar
6csm_port = 1234
7csm_client_id = foo
8
9; CSM profile enable only
10[aws_csm_enabled]
11csm_enabled = true
12
13; CSM profile with no properties
14[aws_csm_empty]
15
16; CSM profile invalid port
17[aws_csm_invalidport]
18csm_enabled = true
19csm_port = onetwothreefour
20csm_client_id = foo
21
22; Multiple profiles with CSM properties
23[aws_csm_1]
24csm_enabled = true
25csm_host = bar1
26csm_port = 1234
27csm_client_id = foo
28
29[aws_csm_2]
30csm_enabled = false
31csm_host = bar2
32csm_port = 5678
33csm_client_id = bar
34