Skip to content

Commit

Permalink
Update interpolation syntax (#7361)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebader committed Jun 17, 2020
1 parent cf905c6 commit 02626df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/sql_active_directory_administrator.markdown
Expand Up @@ -33,8 +33,8 @@ resource "azurerm_sql_active_directory_administrator" "example" {
server_name = azurerm_sql_server.example.name
resource_group_name = azurerm_resource_group.example.name
login = "sqladmin"
tenant_id = "${data.azurerm_client_config.current.tenant_id}"
object_id = "${data.azurerm_client_config.current.object_id}"
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = data.azurerm_client_config.current.object_id
}
```

Expand Down

0 comments on commit 02626df

Please sign in to comment.