Skip to content

Commit

Permalink
Update field.html.markdown
Browse files Browse the repository at this point in the history
revised examples to reflect removed data_type argument
  • Loading branch information
jeff-d committed Jul 25, 2024
1 parent f4d7a6e commit dadc115
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions website/docs/r/field.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ Provides a [Sumologic Field][1].
```hcl
resource "sumologic_field" "field" {
field_name = "mystring"
data_type = "String"
}
resource "sumologic_field" "field" {
field_name = "myinteger"
data_type = "Int"
field_name = "my_other_string"
state = "Disabled"
}
```
Expand All @@ -27,7 +25,6 @@ resource "sumologic_field" "field" {
The following arguments are supported:

- `field_name` - (Required) Name of the field.
- 'data_type' - (Required) Field type. Possible values are `String`, `Long`, `Int`, `Double`, and `Boolean`.
- `state` - (Optional) State of the field. Possible values are `Enabled` or `Disabled` (default: `Enabled`).

## Import
Expand Down

0 comments on commit dadc115

Please sign in to comment.