back
terraform {
required_providers {
bigip = ">= 1.8.0"
}
}
top
module "bigip_ssl_certificate" {
source = "./modules/bigip/d/bigip_ssl_certificate"
# name - (required) is a type of string
name = null
# partition - (required) is a type of string
partition = null
}
top
variable "name" {
description = "(required) - Name of the certificate"
type = string
}
variable "partition" {
description = "(required) - partition of resource group"
type = string
}
top
data "bigip_ssl_certificate" "this" {
# name - (required) is a type of string
name = var.name
# partition - (required) is a type of string
partition = var.partition
}
top
output "certificate" {
description = "returns a string"
value = data.bigip_ssl_certificate.this.certificate
}
output "id" {
description = "returns a string"
value = data.bigip_ssl_certificate.this.id
}
output "this" {
value = bigip_ssl_certificate.this
}
top