Question on formattting

Hi,
New to Terraform and trying to understand what “RG-Terraform” the simple peice of code means, or is used for. I understand the “azurerm_resource_group” but the second part not so much
Thanks

resource “azurerm_resource_group” “RG-Terraform” {
name = “simple-resource-group”
location = “uksouth”
}

Terraform uses the concept of resource addresses. RG-Terraform is the name you give to a resource of type azurerm_resource_group. It is a trivial question, you might ask many more that would be best answered by looking at the tutorials. I suggest starting with Create Resource Dependencies | Terraform - HashiCorp Learn

Its not a trivial question at all for someone who is new to Terraform. but thanks for your reply