---
title: "Comments"
canonical: "https://docs.infoblox.com/space/DeploymentGuideTerraformNIOSProvider/807896477/Comments"
format: markdown
---
The comment field is used to add a comment or description to the object created. Comments can be viewed in the Grid Manager GUI or returned as part of an API call. The comment field takes a string value. The following is an example of a Network View resource with a comment:

```
resource "infoblox_network_view" "new_view" {
     name = "New-View" 
     comment = "This object is created by Terraform" 
}
```