19 lines
375 B
HCL
19 lines
375 B
HCL
terraform {
|
|
required_providers {
|
|
nautobot = {
|
|
version = "0.0.1-beta"
|
|
source = "github.com/nautobot/nautobot"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "nautobot" {
|
|
url = "https://demo.nautobot.com/api/"
|
|
token = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
|
}
|
|
|
|
resource "nautobot_manufacturer" "new" {
|
|
description = "Created with Terraform"
|
|
name = "New Vendor"
|
|
}
|