1. Packages
  2. Strata Cloud Manager
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

Strata Cloud Manager

scm logo
Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi

    The Strata Cloud Manager Resource Provider lets you manage Strata Cloud Manager resources. This is a bridged provider from the terraform SCM provider, located at github.com/PaloAltoNetworks/terraform-provider-scm.

    Please note that, due to how Strata Cloud Manager works, any changes made using the Strata Cloud Manager Resource provider will only be applied to the candidate configuration. For these changes to take effect, you must manually push the candidate configuration to become the running configuration. This can be done either through the Strata Cloud Manager GUI or via the Strata Cloud Manager API.

    Please see Strata Cloud Manager Manage: Push Config for more details.

    Example

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const example = new scm.Service("example", {});
    
    import pulumi
    import pulumi_scm as scm
    
    example = scm.Service("example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    
    )
    
    func main() {
        pulumi.Run(func(ctx *pulumi.Context) error {
            _, err := scm.NewService(ctx, "example", nil)
            if err != nil {
                return err
            }
            return nil
        })
    }
    
    using System.Collections.Generic;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() =>
    {
        var example = new Scm.Service("example");
    });
    
    scm logo
    Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi