Skip to content

Latest commit

 

History

History
87 lines (65 loc) · 1.34 KB

File metadata and controls

87 lines (65 loc) · 1.34 KB

fortios_fmg_jsonrpc_request

back

Index

Terraform

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

top

Example Usage

module "fortios_fmg_jsonrpc_request" {
  source = "./modules/fortios/r/fortios_fmg_jsonrpc_request"

  # comment - (optional) is a type of string
  comment = null
  # json_content - (required) is a type of string
  json_content = null
}

top

Variables

variable "comment" {
  description = "(optional)"
  type        = string
  default     = null
}

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

top

Resource

resource "fortios_fmg_jsonrpc_request" "this" {
  # comment - (optional) is a type of string
  comment = var.comment
  # json_content - (required) is a type of string
  json_content = var.json_content
}

top

Outputs

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

output "response" {
  description = "returns a string"
  value       = fortios_fmg_jsonrpc_request.this.response
}

output "this" {
  value = fortios_fmg_jsonrpc_request.this
}

top