diff --git a/terraform-provider-constellation/internal/provider/attestation_data_source.go b/terraform-provider-constellation/internal/provider/attestation_data_source.go index 2847ec7a10..531670e8b9 100644 --- a/terraform-provider-constellation/internal/provider/attestation_data_source.go +++ b/terraform-provider-constellation/internal/provider/attestation_data_source.go @@ -127,7 +127,8 @@ func (d *AttestationDataSource) Schema(_ context.Context, _ datasource.SchemaReq }, "attestation": schema.SingleNestedAttribute{ Computed: true, - MarkdownDescription: "Only relevant for Azure SEV-SNP.", + MarkdownDescription: "Only relevant for SEV-SNP.", + Description: "The values provide sensible defaults, but for fine-grained control, the advanced user could also provide the values themselves", Attributes: map[string]schema.Attribute{ "bootloader_version": schema.Int64Attribute{ Computed: true, @@ -157,7 +158,8 @@ func (d *AttestationDataSource) Schema(_ context.Context, _ datasource.SchemaReq }, }, "amd_root_key": schema.StringAttribute{ - Computed: true, + Computed: true, + Description: "The AMD Root Key provides a sensible default", }, }, },