Skip to content

Latest commit

 

History

History
157 lines (125 loc) · 2.96 KB

aws_cloudhsm_v2_cluster.md

File metadata and controls

157 lines (125 loc) · 2.96 KB

aws_cloudhsm_v2_cluster

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_cloudhsm_v2_cluster" {
  source = "./modules/aws/r/aws_cloudhsm_v2_cluster"

  # hsm_type - (required) is a type of string
  hsm_type = null
  # source_backup_identifier - (optional) is a type of string
  source_backup_identifier = null
  # subnet_ids - (required) is a type of set of string
  subnet_ids = []
  # tags - (optional) is a type of map of string
  tags = {}

  timeouts = [{
    create = null
    delete = null
    update = null
  }]
}

top

Variables

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

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

variable "subnet_ids" {
  description = "(required)"
  type        = set(string)
}

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

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      create = string
      delete = string
      update = string
    }
  ))
  default = []
}

top

Resource

resource "aws_cloudhsm_v2_cluster" "this" {
  # hsm_type - (required) is a type of string
  hsm_type = var.hsm_type
  # source_backup_identifier - (optional) is a type of string
  source_backup_identifier = var.source_backup_identifier
  # subnet_ids - (required) is a type of set of string
  subnet_ids = var.subnet_ids
  # tags - (optional) is a type of map of string
  tags = var.tags

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # create - (optional) is a type of string
      create = timeouts.value["create"]
      # delete - (optional) is a type of string
      delete = timeouts.value["delete"]
      # update - (optional) is a type of string
      update = timeouts.value["update"]
    }
  }

}

top

Outputs

output "cluster_certificates" {
  description = "returns a list of object"
  value       = aws_cloudhsm_v2_cluster.this.cluster_certificates
}

output "cluster_id" {
  description = "returns a string"
  value       = aws_cloudhsm_v2_cluster.this.cluster_id
}

output "cluster_state" {
  description = "returns a string"
  value       = aws_cloudhsm_v2_cluster.this.cluster_state
}

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

output "security_group_id" {
  description = "returns a string"
  value       = aws_cloudhsm_v2_cluster.this.security_group_id
}

output "vpc_id" {
  description = "returns a string"
  value       = aws_cloudhsm_v2_cluster.this.vpc_id
}

output "this" {
  value = aws_cloudhsm_v2_cluster.this
}

top