Skip to content

Latest commit

 

History

History
91 lines (69 loc) · 1.45 KB

bigip_ssl_key.md

File metadata and controls

91 lines (69 loc) · 1.45 KB

bigip_ssl_key

back

Index

Terraform

terraform {
  required_providers {
    bigip = ">= 1.8.0"
  }
}

top

Example Usage

module "bigip_ssl_key" {
  source = "./modules/bigip/r/bigip_ssl_key"

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

top

Variables

variable "content" {
  description = "(required) - Content of SSL certificate key present on local Disk"
  type        = string
}

variable "name" {
  description = "(required) - Name of SSL Certificate key with .key extension"
  type        = string
}

variable "partition" {
  description = "(optional) - Partition of ssl certificate key"
  type        = string
  default     = null
}

top

Resource

resource "bigip_ssl_key" "this" {
  # content - (required) is a type of string
  content = var.content
  # name - (required) is a type of string
  name = var.name
  # partition - (optional) is a type of string
  partition = var.partition
}

top

Outputs

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

output "this" {
  value = bigip_ssl_key.this
}

top