Resource: aws_service_discovery_http_namespace

Example Usage

resource "aws_service_discovery_http_namespace" "example" {
  name        = "development"
  description = "example"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Service Discovery HTTP Namespace using the namespace ID. For example:

import {
  to = aws_service_discovery_http_namespace.example
  id = "ns-1234567890"
}

Using terraform import, import Service Discovery HTTP Namespace using the namespace ID. For example:

% terraform import aws_service_discovery_http_namespace.example ns-1234567890