Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.04 KB

aws_eks_cluster_auth.md

File metadata and controls

78 lines (57 loc) · 1.04 KB

aws_eks_cluster_auth

back

Index

Terraform

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

top

Example Usage

module "aws_eks_cluster_auth" {
  source = "./modules/aws/d/aws_eks_cluster_auth"

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

top

Variables

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

top

Datasource

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

top

Outputs

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

output "token" {
  description = "returns a string"
  value       = data.aws_eks_cluster_auth.this.token
  sensitive   = true
}

output "this" {
  value = aws_eks_cluster_auth.this
}

top