Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Terraform in Yandex Cloud
  • Getting started
  • Solution library
    • Overview
    • Release notes
          • organizationmanager_group
          • organizationmanager_idp_application_oauth_application
          • organizationmanager_idp_application_saml_application
          • organizationmanager_idp_application_saml_signature_certificate
          • organizationmanager_idp_user
          • organizationmanager_idp_userpool
          • organizationmanager_mfa_enforcement
          • organizationmanager_os_login_settings
          • organizationmanager_saml_federation
          • organizationmanager_user_ssh_key

In this article:

  • Example usage
  • Arguments & Attributes Reference
  1. Terraform reference
  2. Resources
  3. Identity Hub
  4. Data Sources
  5. organizationmanager_idp_application_saml_application

yandex_organizationmanager_idp_application_saml_application (DataSource)

Written by
Yandex Cloud
Updated at February 12, 2026
  • Example usage
  • Arguments & Attributes Reference

A SAML application resource.

Example usageExample usage

//
// Get information about existing OrganizationManager Idp SAML Application.
//
data "yandex_organizationmanager_idp_application_saml_application" "saml_app" {
  application_id = "some_application_id"
}

output "my_saml_app.name" {
  value = data.yandex_organizationmanager_idp_application_saml_application.saml_app.name
}

output "my_saml_app.organization_id" {
  value = data.yandex_organizationmanager_idp_application_saml_application.saml_app.organization_id
}

output "my_saml_app.status" {
  value = data.yandex_organizationmanager_idp_application_saml_application.saml_app.status
}

Arguments & Attributes ReferenceArguments & Attributes Reference

  • application_id (String). ID of the SAML application to return.
  • attribute_mapping [Block]. Attribute mapping configuration for the SAML application.
    • attributes [Block]. List of attribute mappings.
      • name (Required)(String). Name of the SAML attribute.
      • value (Required)(String). Value of the SAML attribute.
    • name_id [Block]. NameID configuration for the SAML application.
      • format (Required)(String). Format of the NameID.
      • value (Read-Only) (String). Value of the NameID.
  • created_at (Read-Only) (String). Creation timestamp.
  • description (String). Description of the SAML application.
  • group_claims_settings [Block]. Group claims settings for the SAML application.
    • group_attribute_name (String). Name of the SAML attribute that contains group information.
    • group_distribution_type (String). Distribution type for group claims.
  • id (String). ID of the SAML application to return.
  • identity_provider_metadata [Block]. Identity provider metadata for the SAML application.
    • issuer (Read-Only) (String). Identity provider issuer identifier.
    • metadata_url (Read-Only) (String). Identity provider metadata URL.
    • slo_url (Read-Only) (String). Identity provider Single Logout URL.
    • sso_url (Read-Only) (String). Identity provider Single Sign-On URL.
  • labels (Map Of String). Resource labels as key:value pairs.
  • name (Required)(String). Name of the SAML application.
  • organization_id (Required)(String). ID of the organization that the application belongs to.
  • security_settings [Block]. Security settings for the SAML application.
    • signature_certificate_id (String). ID of the signature certificate to use.
    • signature_mode (String). Signature mode for SAML messages.
  • service_provider [Block]. Service provider configuration for the SAML application.
    • acs_urls [Block]. Assertion Consumer Service URLs.
      • index (Number). Optional index for the assertion consumer service.
      • url (Required)(String). The URL where SAML responses are sent.
    • entity_id (Required)(String). Service provider entity ID.
    • slo_urls [Block]. Single Logout Service URLs.
      • protocol_binding (Required)(String). Protocol binding supported by the logout endpoint.
      • response_url (String). Optional separate URL for logout responses.
      • url (Required)(String). The URL where logout requests are sent.
  • status (Read-Only) (String). Current status of the SAML application.
  • updated_at (Read-Only) (String). Modification timestamp.

Was the article helpful?

Previous
organizationmanager_idp_application_oauth_application
Next
organizationmanager_idp_application_saml_signature_certificate
© 2026 Direct Cursus Technology L.L.C.