public async Task <Variable> CreateVariableAsync(
     [Service] IVariableService variableService,
     string name,
     bool isSecret,
     string? @namespace,
     string?defaultValue,
     CancellationToken cancellationToken)
 => await variableService
 .CreateAsync(name, @namespace, isSecret, defaultValue, cancellationToken);