Skip to content

Commit ffea775

Browse files
committed
Add synced and last_updated fields
1 parent ae97960 commit ffea775

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Diff for: src/terraform-provider-signalform/signalform/integration.go

+11
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ const (
1515
func integrationResource() *schema.Resource {
1616
return &schema.Resource{
1717
Schema: map[string]*schema.Schema{
18+
"synced": &schema.Schema{
19+
Type: schema.TypeBool,
20+
Optional: true,
21+
Default: true,
22+
Description: "Whether the resource in SignalForm and SignalFx are identical or not. Used internally for syncing.",
23+
},
24+
"last_updated": &schema.Schema{
25+
Type: schema.TypeFloat,
26+
Computed: true,
27+
Description: "Latest timestamp the resource was updated",
28+
},
1829
"name": &schema.Schema{
1930
Type: schema.TypeString,
2031
Required: true,

0 commit comments

Comments
 (0)