aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/test/resources/system-flags-with-null-value/flags/my-test-flag/main.prod.us-west-1.json
blob: 75cffdea009d2b9da40a66491b97378bd0f62282 (plain) (blame)
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
{
    "id" : "my-test-flag",
    "rules" : [
        {
            "conditions": [
                {
                    "type": "whitelist",
                    "dimension": "application",
                    "values": ["a:b:c"]
                }
            ],
            "value" : null
        },
        {
            "conditions": [
                {
                    "type": "whitelist",
                    "dimension": "hostname",
                    "values": ["foo.com"]
                }
            ],
            "value" : true
        }
    ]
}