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
When running terraform plan, the root password is visible for new hosts. The field should be marked as sensitive using Sensitive: true, so the output will show "(sensitive value)" instead of the actual value. Any other resource types with a password should have the same thing done to them as well.
without "Sensitive: true":
resource "ovirt_host" "host" {
address = "host_addr"
cluster_id = "cluster_id"
id = (known after apply)
name = "host_name"
root_password = "YourSecurePassword"
}
with "Sensitive: true":
resource "ovirt_host" "host" {
address = "host_addr"
cluster_id = "cluster_id"
id = (known after apply)
name = "host_name"
root_password = (sensitive value)
}
The text was updated successfully, but these errors were encountered:
When running
terraform plan
, the root password is visible for new hosts. The field should be marked as sensitive usingSensitive: true,
so the output will show "(sensitive value)" instead of the actual value. Any other resource types with a password should have the same thing done to them as well.without "Sensitive: true":
resource "ovirt_host" "host" {
address = "host_addr"
cluster_id = "cluster_id"
id = (known after apply)
name = "host_name"
root_password = "YourSecurePassword"
}
with "Sensitive: true":
resource "ovirt_host" "host" {
address = "host_addr"
cluster_id = "cluster_id"
id = (known after apply)
name = "host_name"
root_password = (sensitive value)
}
The text was updated successfully, but these errors were encountered: