Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 961 Bytes

checkpoint_hostname.md

File metadata and controls

72 lines (52 loc) · 961 Bytes

checkpoint_hostname

back

Index

Terraform

terraform {
  required_providers {
    checkpoint = ">= 1.4.0"
  }
}

top

Example Usage

module "checkpoint_hostname" {
  source = "./modules/checkpoint/r/checkpoint_hostname"

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

top

Variables

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

top

Resource

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

top

Outputs

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

output "this" {
  value = checkpoint_hostname.this
}

top