Skip to content

Latest commit

 

History

History
127 lines (96 loc) · 2.73 KB

oci_vulnerability_scanning_host_scan_recipe.md

File metadata and controls

127 lines (96 loc) · 2.73 KB

oci_vulnerability_scanning_host_scan_recipe

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Datasource

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

top

Outputs

output "agent_settings" {
  description = "returns a list of object"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.agent_settings
}

output "compartment_id" {
  description = "returns a string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.compartment_id
}

output "defined_tags" {
  description = "returns a map of string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.defined_tags
}

output "display_name" {
  description = "returns a string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.display_name
}

output "freeform_tags" {
  description = "returns a map of string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.freeform_tags
}

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

output "port_settings" {
  description = "returns a list of object"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.port_settings
}

output "schedule" {
  description = "returns a list of object"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.schedule
}

output "state" {
  description = "returns a string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.state
}

output "system_tags" {
  description = "returns a map of string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.system_tags
}

output "time_created" {
  description = "returns a string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.time_created
}

output "time_updated" {
  description = "returns a string"
  value       = data.oci_vulnerability_scanning_host_scan_recipe.this.time_updated
}

output "this" {
  value = oci_vulnerability_scanning_host_scan_recipe.this
}

top