From e841cb563ed90e19412e3f2fa9983ffa005f184f Mon Sep 17 00:00:00 2001 From: Andrew Bonney Date: Sat, 23 Dec 2023 01:40:01 +0000 Subject: [PATCH] Use endpoint_type rather than interface to work around lib bug (#282) --- magnum_cluster_api/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magnum_cluster_api/resources.py b/magnum_cluster_api/resources.py index ec1116cf..7a3e0a15 100644 --- a/magnum_cluster_api/resources.py +++ b/magnum_cluster_api/resources.py @@ -514,7 +514,7 @@ def get_object(self) -> pykube.Secret: "clouds": { "default": { "region_name": self.region_name, - "interface": CONF.capi_client.endpoint_type.replace( + "endpoint_type": CONF.capi_client.endpoint_type.replace( "URL", "" ), "identity_api_version": 3,