def enable_secrets_engine()

in modular_cli_sdk/client/ssm_client.py [0:0]


    def enable_secrets_engine(self, mount_point=None) -> bool:
        try:
            self.client.sys.enable_secrets_engine(
                backend_type='kv',
                path=(mount_point or self.mount_point),
                options={'version': 2}
            )
            return True
        except Exception:  # hvac.exceptions.InvalidRequest
            return False  # already exists