You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data"kubernetes_service_account""this" {
dynamic"metadata" {
for_each=var.metadatacontent {
# annotations - (optional) is a type of map of stringannotations=metadata.value["annotations"]
# labels - (optional) is a type of map of stringlabels=metadata.value["labels"]
# name - (optional) is a type of stringname=metadata.value["name"]
# namespace - (optional) is a type of stringnamespace=metadata.value["namespace"]
}
}
}
output"automount_service_account_token" {
description="returns a bool"value=data.kubernetes_service_account.this.automount_service_account_token
}
output"default_secret_name" {
description="returns a string"value=data.kubernetes_service_account.this.default_secret_name
}
output"id" {
description="returns a string"value=data.kubernetes_service_account.this.id
}
output"image_pull_secret" {
description="returns a list of object"value=data.kubernetes_service_account.this.image_pull_secret
}
output"secret" {
description="returns a list of object"value=data.kubernetes_service_account.this.secret
}
output"this" {
value=kubernetes_service_account.this
}