We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae97960 commit ffea775Copy full SHA for ffea775
src/terraform-provider-signalform/signalform/integration.go
@@ -15,6 +15,17 @@ const (
15
func integrationResource() *schema.Resource {
16
return &schema.Resource{
17
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
29
"name": &schema.Schema{
30
Type: schema.TypeString,
31
Required: true,
0 commit comments