diff --git a/cloudcafe/networking/networks/common/config.py b/cloudcafe/networking/networks/common/config.py index c7b279cd..7f447be0 100644 --- a/cloudcafe/networking/networks/common/config.py +++ b/cloudcafe/networking/networks/common/config.py @@ -127,3 +127,17 @@ class NetworkingBaseConfig(ConfigSectionInterface): at: networking.networks.common.tools.resources """ return json.loads(self.get("delete_resources", '{}')) + + @property + def fixed_ips_to_add(self): + """ + Adding fixed ip's to server + """ + return int(self.get("fixed_ips_to_add", 2)) + + @property + def multiple_fixed_ips_to_add(self): + """ + Adding multiple fixed ip's to server + """ + return int(self.get('multiple_fixed_ips_to_add', 4))