This message was deleted.
# getting-started
s
This message was deleted.
h
Its pretty difficult to find some of these options as it relates to what in the CSP's api etc. Especially for native provider i Pulumi BUT i think waht you are looking fir is this :
Copy code
// the following firewall rule sets "Allow Azure services and resources to access this server" = Yes
        var sqlFwRuleAllowAll = new Sql.FirewallRule("sqlFwRuleAllowAll", new Sql.FirewallRuleArgs
        {
            EndIpAddress = "0.0.0.0",
            FirewallRuleName = "AllowAllWindowsAzureIps", // required
            ResourceGroupName = resourceGroupName,
            ServerName = autobotsSqlServer.Name,
            StartIpAddress = "0.0.0.0",
        });
h
amazing, thank you!