The AWS::NetworkManager::Site type describes a site.
resource "awscc_networkmanager_site" "example" {
global_network_id = awscc_networkmanager_global_network.example.id
description = "example"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
resource "awscc_networkmanager_site" "example" {
global_network_id = awscc_networkmanager_global_network.example.id
description = "example"
location = {
address = "Antarctica"
latitude = "82.8628"
longitude = "135.0000"
}
}
global_network_id
(String) The ID of the global network.description
(String) The description of the site.location
(Attributes) The location of the site. (see below for nested schema)tags
(Attributes Set) The tags for the site. (see below for nested schema)created_at
(String) The date and time that the device was created.id
(String) Uniquely identifies the resource.site_arn
(String) The Amazon Resource Name (ARN) of the site.site_id
(String) The ID of the site.state
(String) The state of the site.location
Optional:
address
(String) The physical address.latitude
(String) The latitude.longitude
(String) The longitude.tags
Required:
key
(String) The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.value
(String) The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.Import is supported using the following syntax:
$ terraform import awscc_networkmanager_site.example <resource ID>