I expected to get it from the request GET API: https://app.terraform.io/api/registry/v1/modules/dev-software-one/virtual-machine/azure/9.0.0
Although I can see this sensitive field in the desired variable in the source code (Github), it can’t be seen either in the deployed module in TFC or in the API response.
Is this sensitive field available at all from terraform cloud?
Example:
From Terraform Cloud
### vm_admin_password `string`
Description: Virtual Machine Admin Pwd
From /variables.tf
variable "vm_admin_password" {
type = string
sensitive = true
description = "Virtual Machine Admin Pwd"
}