Skip to content

Commit

Permalink
[AV-77464] fix export schema (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
l0n3star authored May 6, 2024
1 parent 3c22a1b commit f91e3da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/resources/audit_log_export_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import (
func AuditLogExportSchema() schema.Schema {
return schema.Schema{
Attributes: map[string]schema.Attribute{
"id": stringAttribute([]string{required}),
"id": stringAttribute([]string{computed, useStateForUnknown}),
"organization_id": stringAttribute([]string{required}),
"project_id": stringAttribute([]string{required}),
"cluster_id": stringAttribute([]string{required}),
"audit_log_download_url": stringAttribute([]string{required}),
"expiration": stringAttribute([]string{required}),
"audit_log_download_url": stringAttribute([]string{computed}),
"expiration": stringAttribute([]string{computed}),
"start": stringAttribute([]string{required}),
"end": stringAttribute([]string{required}),
"created_at": stringAttribute([]string{required}),
"status": stringAttribute([]string{required}),
"created_at": stringAttribute([]string{computed}),
"status": stringAttribute([]string{computed}),
},
}
}

0 comments on commit f91e3da

Please sign in to comment.