Skip to content

Latest commit

 

History

History
122 lines (92 loc) · 2.09 KB

File metadata and controls

122 lines (92 loc) · 2.09 KB

fortios_user_saml

back

Index

Terraform

terraform {
  required_providers {
    fortios = ">= 1.11.0"
  }
}

top

Example Usage

module "fortios_user_saml" {
  source = "./modules/fortios/d/fortios_user_saml"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "fortios_user_saml" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "cert" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.cert
}

output "entity_id" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.entity_id
}

output "group_name" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.group_name
}

output "id" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.id
}

output "idp_cert" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.idp_cert
}

output "idp_entity_id" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.idp_entity_id
}

output "idp_single_logout_url" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.idp_single_logout_url
}

output "idp_single_sign_on_url" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.idp_single_sign_on_url
}

output "single_logout_url" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.single_logout_url
}

output "single_sign_on_url" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.single_sign_on_url
}

output "user_name" {
  description = "returns a string"
  value       = data.fortios_user_saml.this.user_name
}

output "this" {
  value = fortios_user_saml.this
}

top