SamlServerProfile resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const scmSamlServerProfile1 = new scm.SamlServerProfile("scm_saml_server_profile_1", {
folder: "All",
name: "scm-saml-server-prof-1",
certificate: "Global Authentication Cookie Cert",
entityId: "123",
ssoUrl: "http://example.com",
ssoBindings: "post",
});
const scmSamlServerProfile2 = new scm.SamlServerProfile("scm_saml_server_profile_2", {
folder: "All",
name: "scm-saml-server-prof-2",
certificate: "Global Authentication Cookie Cert",
entityId: "test_id",
maxClockSkew: 100,
sloBindings: "redirect",
ssoBindings: "redirect",
ssoUrl: "http://target.com",
validateIdpCertificate: true,
});
const scmSamlServerProfile3 = new scm.SamlServerProfile("scm_saml_server_profile_3", {
folder: "All",
name: "scm-saml-server-prof-3",
certificate: "Global Authentication Cookie Cert",
entityId: "test_123",
maxClockSkew: 900,
sloBindings: "post",
ssoBindings: "redirect",
sloUrl: "http://auth.com",
ssoUrl: "http://okta.com",
validateIdpCertificate: false,
wantAuthRequestsSigned: false,
});
import pulumi
import pulumi_scm as scm
scm_saml_server_profile1 = scm.SamlServerProfile("scm_saml_server_profile_1",
folder="All",
name="scm-saml-server-prof-1",
certificate="Global Authentication Cookie Cert",
entity_id="123",
sso_url="http://example.com",
sso_bindings="post")
scm_saml_server_profile2 = scm.SamlServerProfile("scm_saml_server_profile_2",
folder="All",
name="scm-saml-server-prof-2",
certificate="Global Authentication Cookie Cert",
entity_id="test_id",
max_clock_skew=100,
slo_bindings="redirect",
sso_bindings="redirect",
sso_url="http://target.com",
validate_idp_certificate=True)
scm_saml_server_profile3 = scm.SamlServerProfile("scm_saml_server_profile_3",
folder="All",
name="scm-saml-server-prof-3",
certificate="Global Authentication Cookie Cert",
entity_id="test_123",
max_clock_skew=900,
slo_bindings="post",
sso_bindings="redirect",
slo_url="http://auth.com",
sso_url="http://okta.com",
validate_idp_certificate=False,
want_auth_requests_signed=False)
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.NewSamlServerProfile(ctx, "scm_saml_server_profile_1", &scm.SamlServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm-saml-server-prof-1"),
Certificate: pulumi.String("Global Authentication Cookie Cert"),
EntityId: pulumi.String("123"),
SsoUrl: pulumi.String("http://example.com"),
SsoBindings: pulumi.String("post"),
})
if err != nil {
return err
}
_, err = scm.NewSamlServerProfile(ctx, "scm_saml_server_profile_2", &scm.SamlServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm-saml-server-prof-2"),
Certificate: pulumi.String("Global Authentication Cookie Cert"),
EntityId: pulumi.String("test_id"),
MaxClockSkew: pulumi.Int(100),
SloBindings: pulumi.String("redirect"),
SsoBindings: pulumi.String("redirect"),
SsoUrl: pulumi.String("http://target.com"),
ValidateIdpCertificate: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = scm.NewSamlServerProfile(ctx, "scm_saml_server_profile_3", &scm.SamlServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scm-saml-server-prof-3"),
Certificate: pulumi.String("Global Authentication Cookie Cert"),
EntityId: pulumi.String("test_123"),
MaxClockSkew: pulumi.Int(900),
SloBindings: pulumi.String("post"),
SsoBindings: pulumi.String("redirect"),
SloUrl: pulumi.String("http://auth.com"),
SsoUrl: pulumi.String("http://okta.com"),
ValidateIdpCertificate: pulumi.Bool(false),
WantAuthRequestsSigned: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var scmSamlServerProfile1 = new Scm.SamlServerProfile("scm_saml_server_profile_1", new()
{
Folder = "All",
Name = "scm-saml-server-prof-1",
Certificate = "Global Authentication Cookie Cert",
EntityId = "123",
SsoUrl = "http://example.com",
SsoBindings = "post",
});
var scmSamlServerProfile2 = new Scm.SamlServerProfile("scm_saml_server_profile_2", new()
{
Folder = "All",
Name = "scm-saml-server-prof-2",
Certificate = "Global Authentication Cookie Cert",
EntityId = "test_id",
MaxClockSkew = 100,
SloBindings = "redirect",
SsoBindings = "redirect",
SsoUrl = "http://target.com",
ValidateIdpCertificate = true,
});
var scmSamlServerProfile3 = new Scm.SamlServerProfile("scm_saml_server_profile_3", new()
{
Folder = "All",
Name = "scm-saml-server-prof-3",
Certificate = "Global Authentication Cookie Cert",
EntityId = "test_123",
MaxClockSkew = 900,
SloBindings = "post",
SsoBindings = "redirect",
SloUrl = "http://auth.com",
SsoUrl = "http://okta.com",
ValidateIdpCertificate = false,
WantAuthRequestsSigned = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.SamlServerProfile;
import com.pulumi.scm.SamlServerProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var scmSamlServerProfile1 = new SamlServerProfile("scmSamlServerProfile1", SamlServerProfileArgs.builder()
.folder("All")
.name("scm-saml-server-prof-1")
.certificate("Global Authentication Cookie Cert")
.entityId("123")
.ssoUrl("http://example.com")
.ssoBindings("post")
.build());
var scmSamlServerProfile2 = new SamlServerProfile("scmSamlServerProfile2", SamlServerProfileArgs.builder()
.folder("All")
.name("scm-saml-server-prof-2")
.certificate("Global Authentication Cookie Cert")
.entityId("test_id")
.maxClockSkew(100)
.sloBindings("redirect")
.ssoBindings("redirect")
.ssoUrl("http://target.com")
.validateIdpCertificate(true)
.build());
var scmSamlServerProfile3 = new SamlServerProfile("scmSamlServerProfile3", SamlServerProfileArgs.builder()
.folder("All")
.name("scm-saml-server-prof-3")
.certificate("Global Authentication Cookie Cert")
.entityId("test_123")
.maxClockSkew(900)
.sloBindings("post")
.ssoBindings("redirect")
.sloUrl("http://auth.com")
.ssoUrl("http://okta.com")
.validateIdpCertificate(false)
.wantAuthRequestsSigned(false)
.build());
}
}
resources:
scmSamlServerProfile1:
type: scm:SamlServerProfile
name: scm_saml_server_profile_1
properties:
folder: All
name: scm-saml-server-prof-1
certificate: Global Authentication Cookie Cert
entityId: '123'
ssoUrl: http://example.com
ssoBindings: post
scmSamlServerProfile2:
type: scm:SamlServerProfile
name: scm_saml_server_profile_2
properties:
folder: All
name: scm-saml-server-prof-2
certificate: Global Authentication Cookie Cert
entityId: test_id
maxClockSkew: 100
sloBindings: redirect
ssoBindings: redirect
ssoUrl: http://target.com
validateIdpCertificate: true
scmSamlServerProfile3:
type: scm:SamlServerProfile
name: scm_saml_server_profile_3
properties:
folder: All
name: scm-saml-server-prof-3
certificate: Global Authentication Cookie Cert
entityId: test_123
maxClockSkew: 900
sloBindings: post
ssoBindings: redirect
sloUrl: http://auth.com
ssoUrl: http://okta.com
validateIdpCertificate: false
wantAuthRequestsSigned: false
Create SamlServerProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SamlServerProfile(name: string, args: SamlServerProfileArgs, opts?: CustomResourceOptions);@overload
def SamlServerProfile(resource_name: str,
args: SamlServerProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SamlServerProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
sso_bindings: Optional[str] = None,
sso_url: Optional[str] = None,
entity_id: Optional[str] = None,
certificate: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
slo_bindings: Optional[str] = None,
slo_url: Optional[str] = None,
snippet: Optional[str] = None,
max_clock_skew: Optional[int] = None,
device: Optional[str] = None,
validate_idp_certificate: Optional[bool] = None,
want_auth_requests_signed: Optional[bool] = None)func NewSamlServerProfile(ctx *Context, name string, args SamlServerProfileArgs, opts ...ResourceOption) (*SamlServerProfile, error)public SamlServerProfile(string name, SamlServerProfileArgs args, CustomResourceOptions? opts = null)
public SamlServerProfile(String name, SamlServerProfileArgs args)
public SamlServerProfile(String name, SamlServerProfileArgs args, CustomResourceOptions options)
type: scm:SamlServerProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SamlServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SamlServerProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SamlServerProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SamlServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SamlServerProfileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var samlServerProfileResource = new Scm.SamlServerProfile("samlServerProfileResource", new()
{
SsoBindings = "string",
SsoUrl = "string",
EntityId = "string",
Certificate = "string",
Folder = "string",
Name = "string",
SloBindings = "string",
SloUrl = "string",
Snippet = "string",
MaxClockSkew = 0,
Device = "string",
ValidateIdpCertificate = false,
WantAuthRequestsSigned = false,
});
example, err := scm.NewSamlServerProfile(ctx, "samlServerProfileResource", &scm.SamlServerProfileArgs{
SsoBindings: pulumi.String("string"),
SsoUrl: pulumi.String("string"),
EntityId: pulumi.String("string"),
Certificate: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
SloBindings: pulumi.String("string"),
SloUrl: pulumi.String("string"),
Snippet: pulumi.String("string"),
MaxClockSkew: pulumi.Int(0),
Device: pulumi.String("string"),
ValidateIdpCertificate: pulumi.Bool(false),
WantAuthRequestsSigned: pulumi.Bool(false),
})
var samlServerProfileResource = new SamlServerProfile("samlServerProfileResource", SamlServerProfileArgs.builder()
.ssoBindings("string")
.ssoUrl("string")
.entityId("string")
.certificate("string")
.folder("string")
.name("string")
.sloBindings("string")
.sloUrl("string")
.snippet("string")
.maxClockSkew(0)
.device("string")
.validateIdpCertificate(false)
.wantAuthRequestsSigned(false)
.build());
saml_server_profile_resource = scm.SamlServerProfile("samlServerProfileResource",
sso_bindings="string",
sso_url="string",
entity_id="string",
certificate="string",
folder="string",
name="string",
slo_bindings="string",
slo_url="string",
snippet="string",
max_clock_skew=0,
device="string",
validate_idp_certificate=False,
want_auth_requests_signed=False)
const samlServerProfileResource = new scm.SamlServerProfile("samlServerProfileResource", {
ssoBindings: "string",
ssoUrl: "string",
entityId: "string",
certificate: "string",
folder: "string",
name: "string",
sloBindings: "string",
sloUrl: "string",
snippet: "string",
maxClockSkew: 0,
device: "string",
validateIdpCertificate: false,
wantAuthRequestsSigned: false,
});
type: scm:SamlServerProfile
properties:
certificate: string
device: string
entityId: string
folder: string
maxClockSkew: 0
name: string
sloBindings: string
sloUrl: string
snippet: string
ssoBindings: string
ssoUrl: string
validateIdpCertificate: false
wantAuthRequestsSigned: false
SamlServerProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SamlServerProfile resource accepts the following input properties:
- Certificate string
- The identity provider certificate
- Entity
Id string - The identity provider ID
- Sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- Sso
Url string - Identity provider SSO URL
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Max
Clock intSkew - Maxiumum clock skew
- Name string
- The name of the SAML server profile
- Slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- Slo
Url string - Identity provider SLO URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Validate
Idp boolCertificate - Validate the identity provider certificate?
- Want
Auth boolRequests Signed - Sign SAML message to the identity provider?
- Certificate string
- The identity provider certificate
- Entity
Id string - The identity provider ID
- Sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- Sso
Url string - Identity provider SSO URL
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Max
Clock intSkew - Maxiumum clock skew
- Name string
- The name of the SAML server profile
- Slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- Slo
Url string - Identity provider SLO URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Validate
Idp boolCertificate - Validate the identity provider certificate?
- Want
Auth boolRequests Signed - Sign SAML message to the identity provider?
- certificate String
- The identity provider certificate
- entity
Id String - The identity provider ID
- sso
Bindings String - SAML HTTP binding for SSO requests to the identity provider
- sso
Url String - Identity provider SSO URL
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock IntegerSkew - Maxiumum clock skew
- name String
- The name of the SAML server profile
- slo
Bindings String - SAML HTTP binding for SLO requests to the identity provider
- slo
Url String - Identity provider SLO URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- validate
Idp BooleanCertificate - Validate the identity provider certificate?
- want
Auth BooleanRequests Signed - Sign SAML message to the identity provider?
- certificate string
- The identity provider certificate
- entity
Id string - The identity provider ID
- sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- sso
Url string - Identity provider SSO URL
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock numberSkew - Maxiumum clock skew
- name string
- The name of the SAML server profile
- slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- slo
Url string - Identity provider SLO URL
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- validate
Idp booleanCertificate - Validate the identity provider certificate?
- want
Auth booleanRequests Signed - Sign SAML message to the identity provider?
- certificate str
- The identity provider certificate
- entity_
id str - The identity provider ID
- sso_
bindings str - SAML HTTP binding for SSO requests to the identity provider
- sso_
url str - Identity provider SSO URL
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max_
clock_ intskew - Maxiumum clock skew
- name str
- The name of the SAML server profile
- slo_
bindings str - SAML HTTP binding for SLO requests to the identity provider
- slo_
url str - Identity provider SLO URL
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- validate_
idp_ boolcertificate - Validate the identity provider certificate?
- want_
auth_ boolrequests_ signed - Sign SAML message to the identity provider?
- certificate String
- The identity provider certificate
- entity
Id String - The identity provider ID
- sso
Bindings String - SAML HTTP binding for SSO requests to the identity provider
- sso
Url String - Identity provider SSO URL
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock NumberSkew - Maxiumum clock skew
- name String
- The name of the SAML server profile
- slo
Bindings String - SAML HTTP binding for SLO requests to the identity provider
- slo
Url String - Identity provider SLO URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- validate
Idp BooleanCertificate - Validate the identity provider certificate?
- want
Auth BooleanRequests Signed - Sign SAML message to the identity provider?
Outputs
All input properties are implicitly available as output properties. Additionally, the SamlServerProfile resource produces the following output properties:
Look up Existing SamlServerProfile Resource
Get an existing SamlServerProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SamlServerProfileState, opts?: CustomResourceOptions): SamlServerProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[str] = None,
device: Optional[str] = None,
entity_id: Optional[str] = None,
folder: Optional[str] = None,
max_clock_skew: Optional[int] = None,
name: Optional[str] = None,
slo_bindings: Optional[str] = None,
slo_url: Optional[str] = None,
snippet: Optional[str] = None,
sso_bindings: Optional[str] = None,
sso_url: Optional[str] = None,
tfid: Optional[str] = None,
validate_idp_certificate: Optional[bool] = None,
want_auth_requests_signed: Optional[bool] = None) -> SamlServerProfilefunc GetSamlServerProfile(ctx *Context, name string, id IDInput, state *SamlServerProfileState, opts ...ResourceOption) (*SamlServerProfile, error)public static SamlServerProfile Get(string name, Input<string> id, SamlServerProfileState? state, CustomResourceOptions? opts = null)public static SamlServerProfile get(String name, Output<String> id, SamlServerProfileState state, CustomResourceOptions options)resources: _: type: scm:SamlServerProfile get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Certificate string
- The identity provider certificate
- Device string
- The device in which the resource is defined
- Entity
Id string - The identity provider ID
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Max
Clock intSkew - Maxiumum clock skew
- Name string
- The name of the SAML server profile
- Slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- Slo
Url string - Identity provider SLO URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- Sso
Url string - Identity provider SSO URL
- Tfid string
- The Terraform ID.
- Validate
Idp boolCertificate - Validate the identity provider certificate?
- Want
Auth boolRequests Signed - Sign SAML message to the identity provider?
- Certificate string
- The identity provider certificate
- Device string
- The device in which the resource is defined
- Entity
Id string - The identity provider ID
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Max
Clock intSkew - Maxiumum clock skew
- Name string
- The name of the SAML server profile
- Slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- Slo
Url string - Identity provider SLO URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- Sso
Url string - Identity provider SSO URL
- Tfid string
- The Terraform ID.
- Validate
Idp boolCertificate - Validate the identity provider certificate?
- Want
Auth boolRequests Signed - Sign SAML message to the identity provider?
- certificate String
- The identity provider certificate
- device String
- The device in which the resource is defined
- entity
Id String - The identity provider ID
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock IntegerSkew - Maxiumum clock skew
- name String
- The name of the SAML server profile
- slo
Bindings String - SAML HTTP binding for SLO requests to the identity provider
- slo
Url String - Identity provider SLO URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- sso
Bindings String - SAML HTTP binding for SSO requests to the identity provider
- sso
Url String - Identity provider SSO URL
- tfid String
- The Terraform ID.
- validate
Idp BooleanCertificate - Validate the identity provider certificate?
- want
Auth BooleanRequests Signed - Sign SAML message to the identity provider?
- certificate string
- The identity provider certificate
- device string
- The device in which the resource is defined
- entity
Id string - The identity provider ID
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock numberSkew - Maxiumum clock skew
- name string
- The name of the SAML server profile
- slo
Bindings string - SAML HTTP binding for SLO requests to the identity provider
- slo
Url string - Identity provider SLO URL
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- sso
Bindings string - SAML HTTP binding for SSO requests to the identity provider
- sso
Url string - Identity provider SSO URL
- tfid string
- The Terraform ID.
- validate
Idp booleanCertificate - Validate the identity provider certificate?
- want
Auth booleanRequests Signed - Sign SAML message to the identity provider?
- certificate str
- The identity provider certificate
- device str
- The device in which the resource is defined
- entity_
id str - The identity provider ID
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max_
clock_ intskew - Maxiumum clock skew
- name str
- The name of the SAML server profile
- slo_
bindings str - SAML HTTP binding for SLO requests to the identity provider
- slo_
url str - Identity provider SLO URL
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- sso_
bindings str - SAML HTTP binding for SSO requests to the identity provider
- sso_
url str - Identity provider SSO URL
- tfid str
- The Terraform ID.
- validate_
idp_ boolcertificate - Validate the identity provider certificate?
- want_
auth_ boolrequests_ signed - Sign SAML message to the identity provider?
- certificate String
- The identity provider certificate
- device String
- The device in which the resource is defined
- entity
Id String - The identity provider ID
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- max
Clock NumberSkew - Maxiumum clock skew
- name String
- The name of the SAML server profile
- slo
Bindings String - SAML HTTP binding for SLO requests to the identity provider
- slo
Url String - Identity provider SLO URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- sso
Bindings String - SAML HTTP binding for SSO requests to the identity provider
- sso
Url String - Identity provider SSO URL
- tfid String
- The Terraform ID.
- validate
Idp BooleanCertificate - Validate the identity provider certificate?
- want
Auth BooleanRequests Signed - Sign SAML message to the identity provider?
Import
The following command can be used to import a resource not managed by Terraform:
terraform import scm_saml_server_profile.example folder:::id
or
terraform import scm_saml_server_profile.example :snippet::id
or
terraform import scm_saml_server_profile.example ::device:id
Note: Please provide just one of folder, snippet, or device for the import command.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
