Skip to content

Commit 1c2603f

Browse files
add: Route53 RecordSet 정보에서 type A일경우 일부 데이터에서 Value가 없는 이슈 => 처리 다양성 개선
Signed-off-by: jinyoungmoonDEV <[email protected]>
1 parent 3518334 commit 1c2603f

File tree

1 file changed

+1
-1
lines changed
  • src/spaceone/inventory/connector/aws_route53_connector

1 file changed

+1
-1
lines changed

src/spaceone/inventory/connector/aws_route53_connector/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def describe_record_sets(self, host_zone_id):
109109
else:
110110
_records = raw.get('ResourceRecords', [])
111111
for _r in _records:
112-
display_values.append(_r.get('value'))
112+
display_values.append(_r.get('Value'))
113113

114114
if len(display_values) > 0:
115115
raw.update({'display_values': display_values})

0 commit comments

Comments
 (0)