In the following code snippet, the block type is identified by which string?
1. resource "aws_instance" "db" {
2. ami = "ami-123456"
3. instance_type = "t2.micro"
4. }
"db"
resource
"aws_instance"
instance_type
The format of resource block configurations is as follows:
"" ""
Submit