18 lines
361 B
HCL
18 lines
361 B
HCL
terraform {
|
|
required_providers {
|
|
nautobot = {
|
|
version = "0.3.2"
|
|
source = "github.com/nleiva/nautobot"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "nautobot" {
|
|
url = "https://demo.nautobot.com/api/"
|
|
token = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
}
|
|
|
|
resource "nautobot_manufacturer" "new" {
|
|
description = "Created with Terraform"
|
|
name = "New Vendor"
|
|
} |