mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-24 10:21:08 +01:00
feat!: Removed support for launch configuration and replace count with for_each (#1680)
This commit is contained in:
89
examples/user_data/outputs.tf
Normal file
89
examples/user_data/outputs.tf
Normal file
@@ -0,0 +1,89 @@
|
||||
# EKS managed node group - linux
|
||||
output "eks_mng_linux_no_op" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_linux_no_op.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_linux_additional" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_linux_additional.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_linux_custom_ami" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_linux_custom_ami.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_linux_custom_template" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_linux_custom_template.user_data)
|
||||
}
|
||||
|
||||
# EKS managed node group - bottlerocket
|
||||
output "eks_mng_bottlerocket_no_op" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_bottlerocket_no_op.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_bottlerocket_additional" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_bottlerocket_additional.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_bottlerocket_custom_ami" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_bottlerocket_custom_ami.user_data)
|
||||
}
|
||||
|
||||
output "eks_mng_bottlerocket_custom_template" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.eks_mng_bottlerocket_custom_template.user_data)
|
||||
}
|
||||
|
||||
# Self managed node group - linux
|
||||
output "self_mng_linux_no_op" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_linux_no_op.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_linux_bootstrap" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_linux_bootstrap.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_linux_custom_template" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_linux_custom_template.user_data)
|
||||
}
|
||||
|
||||
# Self managed node group - bottlerocket
|
||||
output "self_mng_bottlerocket_no_op" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_bottlerocket_no_op.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_bottlerocket_bootstrap" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_bottlerocket_bootstrap.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_bottlerocket_custom_template" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_bottlerocket_custom_template.user_data)
|
||||
}
|
||||
|
||||
# Self managed node group - windows
|
||||
output "self_mng_windows_no_op" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_windows_no_op.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_windows_bootstrap" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_windows_bootstrap.user_data)
|
||||
}
|
||||
|
||||
output "self_mng_windows_custom_template" {
|
||||
description = "Base64 decoded user data rendered for the provided inputs"
|
||||
value = base64decode(module.self_mng_windows_custom_template.user_data)
|
||||
}
|
||||
Reference in New Issue
Block a user