fortios_dlp_fpsensitivity back Index Example Usage Variables Resource Outputs Terraform terraform { required_providers { fortios = ">= 1.11.0" } } top Example Usage module "fortios_dlp_fpsensitivity" { source = "./modules/fortios/r/fortios_dlp_fpsensitivity" # name - (optional) is a type of string name = null } top Variables variable "name" { description = "(optional)" type = string default = null } top Resource resource "fortios_dlp_fpsensitivity" "this" { # name - (optional) is a type of string name = var.name } top Outputs output "id" { description = "returns a string" value = fortios_dlp_fpsensitivity.this.id } output "name" { description = "returns a string" value = fortios_dlp_fpsensitivity.this.name } output "this" { value = fortios_dlp_fpsensitivity.this } top