Juniper Mist v0.1.1 published on Monday, Nov 4, 2024 by Pulumi
Juniper Mist
The Juniper Mist Provider allows Pulumi to manage Juniper Mist Organizations.
The Juniper Mist provider must be configured with credentials to deploy and update resources; see Installation & Configuration for instructions.
Example
import * as junipermist from "@pulumi/juniper-mist";
new junipermist.site.Wlan("wlan-one", {
ssid: "wlan_one",
siteId: site.id,
});
import pulumi_juniper_mist as junipermist
wlan = junipermist.site.Wlan(
"wlan-one", site_id=site.id, ssid="wlan_one"
)