1. Packages
  2. Cisco ISE Provider
Cisco ISE v0.2.0 published on Friday, Jan 17, 2025 by Pulumi

Cisco ISE Provider

ise logo
Cisco ISE v0.2.0 published on Friday, Jan 17, 2025 by Pulumi

    Installation

    The Cisco ISE provider is available as a package in all Pulumi languages:

    Overview

    The ISE provider provides resources to interact with a Cisco ISE (Identity Service Engine) instance. It communicates with ISE via the REST API.

    This provider uses both, the ERS and Open API. Instructions on how to enable API access can be found here: https://developer.cisco.com/docs/identity-services-engine/latest/#!cisco-ise-api-framework

    All resources and functions have been tested with the following releases.

    PlatformVersion
    ISE3.2.0 Patch 4
    ISE3.3.0

    Example Usage

    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: nodejs
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    
    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: python
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    
    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: dotnet
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    
    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: go
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    
    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: yaml
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    
    # Pulumi.yaml provider configuration file
    name: configuration-example
    runtime: java
    config:
        ise:password:
            value: password
        ise:url:
            value: https://10.1.1.1
        ise:username:
            value: admin
    

    Configuration Reference

    • insecure (Boolean) Allow insecure HTTPS client. This can also be set as the ISE_INSECURE environment variable. Defaults to true.
    • password (String, Sensitive) Password for the ISE instance. This can also be set as the ISE_PASSWORD environment variable.
    • retries (Number) Number of retries for REST API calls. This can also be set as the ISE_RETRIES environment variable. Defaults to 3.
    • url (String) URL of the Cisco ISE instance. This can also be set as the ISE_URL environment variable.
    • username (String) Username for the ISE instance. This can also be set as the ISE_USERNAME environment variable.
    ise logo
    Cisco ISE v0.2.0 published on Friday, Jan 17, 2025 by Pulumi