Validation workflow for GÉANT IP subscription objects.
validate_geant_ip()
Validate an existing Copernicus subscription.
Source code in gso/workflows/l3_core_service/geant_ip/validate_geant_ip.py
| @validate_workflow("Validate GÉANT IP")
def validate_geant_ip() -> StepList:
"""Validate an existing Copernicus subscription."""
return (
begin
>> build_fqdn_list
>> anonymous_lso_interaction(validate_sbp_config)
>> anonymous_lso_interaction(validate_bgp_peers)
>> validate_dns_records
)
|