azurerm_orbital_spacecraft

Manages a Spacecraft.

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "rg-example"
  location = "West Europe"
}

resource "azurerm_orbital_spacecraft" "example" {
  name                = "example-spacecraft"
  resource_group_name = azurerm_resource_group.example.name
  location            = "westeurope"
  norad_id            = "12345"

  links {
    bandwidth_mhz        = 30
    center_frequency_mhz = 2050
    direction            = "Uplink"
    polarization         = "LHCP"
    name                 = "examplename"
  }

  two_line_elements = ["1 23455U 94089A   97320.90946019  .00000140  00000-0  10191-3 0  2621", "2 23455  99.0090 272.6745 0008546 223.1686 136.8816 14.11711747148495"]
  title_line        = "AQUA"

  tags = {
    aks-managed-cluster-name = "9a57225d-a405-4d40-aa46-f13d2342abef"
  }
}

Arguments Reference

The following arguments are supported:


A links block supports the following:


Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Spacecraft can be imported using the resource id, e.g.

terraform import azurerm_orbital_spacecraft.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Orbital/spacecrafts/spacecraft1