```resource_group = pulumi_azure_native.resources....
# getting-started
n
Copy code
resource_group = pulumi_azure_native.resources.ResourceGroup(
    'xyzzy',
    resource_group_name='xyzzy'
)
export('debug1', resource_group.resource_group_name)
I'm baffled, must be some really silly mistake but I just don't see it ??? The above code does NOT produce the "debug1" output. I would expect it to produce Output "debug1" with value "xyzzy" because: The docs state "ResourceGroup resource accepts the following input properties: ..., resource_group_name, ..." and "All input properties are implicitly available as output properties." https://www.pulumi.com/docs/reference/pkg/azure-native/resources/resourcegroup/