Fix list of log config attributes to be tested

This commit is contained in:
Aleksandr Averbukh 2020-09-01 15:00:16 +02:00
parent 931af3e943
commit aacb570ac8
1 changed files with 3 additions and 2 deletions

View File

@ -58,8 +58,9 @@ def test_subnet_log_configs(plan_runner):
for r in resources:
if r['type'] != 'google_compute_subnetwork':
continue
flow_logs[r['values']['name']] = {key: r['values']['log_config'][key] for key in r['values']['log_config'].keys()
& {'aggregation_interval', 'flow_sampling', 'metadata'}}
flow_logs[r['values']['name']] = [{key: config[key] for key in config.keys()
& {'aggregation_interval', 'flow_sampling', 'metadata'}}
for config in r['values']['log_config']]
assert flow_logs == {
# enable, override one default option
'a': [{