Skip to content

Latest commit

 

History

History
102 lines (78 loc) · 1.71 KB

aws_emr_security_configuration.md

File metadata and controls

102 lines (78 loc) · 1.71 KB

aws_emr_security_configuration

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

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

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

top

Resource

resource "aws_emr_security_configuration" "this" {
  # configuration - (required) is a type of string
  configuration = var.configuration
  # name - (optional) is a type of string
  name = var.name
  # name_prefix - (optional) is a type of string
  name_prefix = var.name_prefix
}

top

Outputs

output "creation_date" {
  description = "returns a string"
  value       = aws_emr_security_configuration.this.creation_date
}

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

output "name" {
  description = "returns a string"
  value       = aws_emr_security_configuration.this.name
}

output "this" {
  value = aws_emr_security_configuration.this
}

top