diff --git a/cloudcafe/compute/config.py b/cloudcafe/compute/config.py index fbb50824..cd76f436 100644 --- a/cloudcafe/compute/config.py +++ b/cloudcafe/compute/config.py @@ -38,6 +38,11 @@ class ComputeEndpointConfig(ConfigSectionInterface): def compute_endpoint_name(self): return self.get("compute_endpoint_name") + @property + def compute_endpoint_url(self): + """Optional override of the Compute url""" + return self.get("compute_endpoint_url") + class ComputeAdminEndpointConfig(ComputeEndpointConfig):