Skip to content

Latest commit

 

History

History
82 lines (60 loc) · 1.35 KB

oci_identity_authentication_policy.md

File metadata and controls

82 lines (60 loc) · 1.35 KB

oci_identity_authentication_policy

back

Index

Terraform

terraform {
  required_providers {
    oci = ">= 4.21.0"
  }
}

top

Example Usage

module "oci_identity_authentication_policy" {
  source = "./modules/oci/d/oci_identity_authentication_policy"

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "network_policy" {
  description = "returns a list of object"
  value       = data.oci_identity_authentication_policy.this.network_policy
}

output "password_policy" {
  description = "returns a list of object"
  value       = data.oci_identity_authentication_policy.this.password_policy
}

output "this" {
  value = oci_identity_authentication_policy.this
}

top