terraform-provider-jamfpro

command module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 3, 2024 License: MPL-2.0 Imports: 4 Imported by: 0

README

Terraform Provider for Jamf Pro

[!WARNING] This code is in preview and provided solely for evaluation purposes. It is NOT intended for production use and may contain bugs, incomplete features, or other issues. Use at your own risk, as it may undergo significant changes without notice until it reaches general availability, and no guarantees or support is provided. By using this code, you acknowledge and agree to these conditions. Consult the documentation or contact the maintainer if you have questions or concerns.

Introduction

This repository hosts the Jamf Pro Community Provider, built to integrate Jamf Pro's robust configuration management capabilities with Terraform's Infrastructure as Code (IaC) approach. Utilizing a comprehensive JAMF Pro SDK go-api-sdk-jamfpro, which serves as a cohesive abstraction layer over both Jamf Pro and Jamf Pro Classic APIs, this provider ensures seamless API interactions and brings a wide array of resources under Terraform's management umbrella. The jamfpro provider is engineered to enrich your CI/CD workflows with Jamf Pro's extensive device management functionalities, encompassing device enrollment, inventory tracking, security compliance, and streamlined software deployment. Its primary goal is to enhance the efficiency of managing, deploying, and maintaining Apple devices across your infrastructure, fostering a synchronized and effective IT ecosystem.

Demo Implementation

To help you get started and understand the practical implementation of this provider, we've created a comprehensive demo repository:

This demo repository showcases a real-world implementation of the Jamf Pro Terraform provider. It's designed to:

  1. Illustrate best practices for integrating Jamf Pro with Terraform.
  2. Demonstrate a GitLab-flow based workflow for multi environment setups, integrating with Terraform Cloud.
  3. Provide practical examples of managing Jamf Pro resources as code.
  4. Offer a starting point for your own infrastructure-as-code initiatives with Jamf Pro.

We encourage you to explore this repository to:

  • Understand how to structure your Terraform configurations for Jamf Pro.
  • See examples of defining and managing various Jamf Pro resources.
  • Learn how to integrate Terraform workflows with your CI/CD pipeline.
  • Get insights into version control strategies for your Jamf Pro configurations.

Whether you're new to Terraform or looking to enhance your existing Jamf Pro management, this demo repository serves as a valuable resource to kickstart your infrastructure-as-code journey with Jamf Pro.

Quick Start Guide

  • Minimum Requirements:
provider "jamfpro" {
  jamfpro_instance_fqdn = "https://yourserver.jamfcloud.com"
  auth_method     = "oauth2"
  client_id       = "your client id"
  client_secret   = "your client secret"
  jamfpro_load_balancer_lock = true
}
  • Full Configuration:

provider "jamfpro" {
  jamfpro_instance_fqdn = "https://yourserver.jamfcloud.com"
  auth_method     = "oauth2"
  client_id       = "your client id"
  client_secret   = "your client secret"
  enable_client_sdk_logs = false
  client_sdk_log_export_path = "/path/to/logfile.json"
  hide_sensitive_data = true
  custom_cookies {
    // Cookie URL is set to jamfpro_instance_fqdn
    name = "cookie name"
    value = "cookie value"
  }
  jamfpro_load_balancer_lock = true
  token_refresh_buffer_period_seconds = 300
  mandatory_request_delay_milliseconds = 100
  
}

The provider contains:

  • Resources and data sources for Jamf Pro entities (internal/provider/),
  • Examples examples directory for sample configurations and usage scenarios of the terraform-provider-jamfpro provider.
  • Documentation docs

Requirements

Community & Support

For further community support and to engage with other users of the Jamf Pro Terraform Provider, please join us on the Mac Admins Slack channel. You can ask questions, provide feedback, and share best practices with the community. Join us at:

Getting Started with Examples

Provider Configuration for Jamf Pro in Terraform

This documentation provides a detailed explanation of the configuration options available in the provider.tf file for setting up the Jamf Pro provider in Terraform.

Concurrency
  • You can adjust paralellism by setting the Terraform parallelism count using terraform apply -parallelism=X (the default is 10). HashiCorp Docs
  • The provider remains stable using paralellism of up to 50, going beyond is at your own risk!
  • The cookie jar has been removed as it is redundant with Terraform's parallelism.
  • Please use the cookie lock (which enforces a single cookie across all parallel instances of Terraform) or set a custom cookie (also remains consistent across all instances of Terraform).

Configuration Schema

jamfpro_instance_fqdn
  • Type: String
  • Required: Yes
  • Default: Fetched from environment variable envKeyJamfProUrlRoot if not provided
  • Description: The base URL for the Jamf Pro instance. Example: https://mycompany.jamfcloud.com. This URL is used to interact with the Jamf Pro API.
auth_method
  • Type: String
  • Required: Yes
  • Description: The authentication method to use for connecting to Jamf Pro.
  • Valid Values:
    • basic: Use basic authentication with a username and password.
    • oauth2: Use OAuth2 for authentication.
  • Validation: Ensures the value is one of the specified valid values.
client_id
  • Type: String
  • Optional: Yes
  • Default: Fetched from environment variable envKeyOAuthClientSecret if not provided
  • Description: The OAuth2 Client ID used for authentication with Jamf Pro. Required if auth_method is oauth2.
client_secret
  • Type: String
  • Optional: Yes
  • Sensitive: Yes
  • Default: Fetched from environment variable envKeyOAuthClientSecret if not provided
  • Description: The OAuth2 Client Secret used for authentication with Jamf Pro. This field is sensitive and required if auth_method is oauth2.
basic_auth_username
  • Type: String
  • Optional: Yes
  • Default: Fetched from environment variable envKeyBasicAuthUsername if not provided
  • Description: The username for basic authentication with Jamf Pro. Required if auth_method is basic.
basic_auth_password
  • Type: String
  • Optional: Yes
  • Sensitive: Yes
  • Default: Fetched from environment variable envKeyBasicAuthPassword if not provided
  • Description: The password for basic authentication with Jamf Pro. This field is sensitive and required if auth_method is basic.
enable_client_sdk_logs
  • Type: bool
  • Optional: Yes
  • Default: false
  • Description: Enables Client and SDK logs to appear in the tf output.
client_sdk_log_export_path
  • Type: String
  • Optional: Yes
  • Default: ""
  • Description: The file path to export HTTP client logs to. If set, logs will be saved to this path. If omitted, logs will not be exported.
hide_sensitive_data
  • Type: Boolean
  • Optional: Yes
  • Default: true
  • Description: Determines whether sensitive information (like passwords) should be hidden in logs. Defaults to hiding sensitive data for security reasons.
custom_cookies
  • Type: List of Objects
  • Optional: Yes
  • Default: nil
  • Description: A list of custom cookies to be included in HTTP requests. Each cookie object should have a name and a value.
    • name:
      • Type: String
      • Required: Yes
      • Description: The name of the cookie.
    • value:
      • Type: String
      • Required: Yes
      • Description: The value of the cookie.
jamf_load_balancer_lock
  • Type: Boolean
  • Optional: Yes
  • Default: false
  • Description: Temporarily locks all HTTP client instances to a specific web app member in the load balancer for faster execution. This is a temporary solution until Jamf provides an official load balancing solution.
token_refresh_buffer_period_seconds
  • Type: Integer
  • Optional: Yes
  • Default: 300
  • Description: The buffer period in seconds before the token expires during which the token will be refreshed. Helps ensure continuous authentication.
mandatory_request_delay_milliseconds
  • Type: Integer
  • Optional: Yes
  • Default: 100
  • Description: A mandatory delay after each request before returning to reduce high volume of requests in a short time.

For those new to using Terraform with Jamf Pro, we provide a comprehensive demo example that serves as an excellent starting point. This demo implementation utilizes:

  • Terraform Cloud as the remote backend
  • GitHub Actions pipelines
  • A simple PR process for managing changes
  • Sample hcl files for creating and managing Jamf Pro resources

This repository is specifically designed to kickstart your Terraform projects by providing practical, easy-to-follow examples of how to configure and deploy resources within Jamf Pro using Terraform.

Supported Jamf Pro Resources

Supported Resources

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
internal
provider
providers.go
providers.go
resources/accountgroups
accountgroups_object.go
accountgroups_object.go
resources/accounts
accounts_object.go
accounts_object.go
resources/activationcode
activationcode_object.go
activationcode_object.go
resources/advancedcomputersearches
advancedcomputersearches_resource.go
advancedcomputersearches_resource.go
resources/advancedmobiledevicesearches
advancedmobiledevicesearches_object.go
advancedmobiledevicesearches_object.go
resources/advancedusersearches
advancedusersearches_object.go
advancedusersearches_object.go
resources/allowedfileextensions
allowedfileextensions_object.go
allowedfileextensions_object.go
resources/apiintegrations
apiintegrations_data_object.go
apiintegrations_data_object.go
resources/apiroles
apiroles_data_source.go
apiroles_data_source.go
state.go
resources/buildings
buildings_object.go
buildings_object.go
resources/categories
categories_data_object.go
categories_data_object.go
resources/common
hash.go This package contains shared / common hash functions
hash.go This package contains shared / common hash functions
resources/common/configurationprofiles/datavalidators
common/configurationprofiles/datavalidators/helpers.go
common/configurationprofiles/datavalidators/helpers.go
resources/common/configurationprofiles/plist
common/configurationprofiles/plist/plistdiffsuppression.go contains the functions to process configuration profiles for diff suppression.
common/configurationprofiles/plist/plistdiffsuppression.go contains the functions to process configuration profiles for diff suppression.
resources/common/sharedschemas
common/constructobject.go
common/constructobject.go
resources/computercheckin
computercheckin_object.go
computercheckin_object.go
resources/computerextensionattributes
computerextensionattributes_object.go
computerextensionattributes_object.go
resources/computerinventory
computerinventory_data_source.go
computerinventory_data_source.go
resources/computerinventorycollection
computerinventorycollection_object.go
computerinventorycollection_object.go
resources/computerprestageenrollments
computerprestageenrollments_object.go
computerprestageenrollments_object.go
resources/departments
department_data_object.go
department_data_object.go
resources/diskencryptionconfigurations
diskencryptionconfigurations_object.go
diskencryptionconfigurations_object.go
resources/dockitems
dockitems_data_object.go
dockitems_data_object.go
resources/filesharedistributionpoints
filesharedistributionpoints_object.go
filesharedistributionpoints_object.go
resources/macosconfigurationprofilesplist
macosconfigurationprofilesplist_object.go
macosconfigurationprofilesplist_object.go
resources/macosconfigurationprofilesplistgenerator
macosconfigurationprofilesplistgenerator_constructor.go
macosconfigurationprofilesplistgenerator_constructor.go
resources/mobiledeviceconfigurationprofilesplist
mobiledeviceconfigurationprofilesplist_object.go
mobiledeviceconfigurationprofilesplist_object.go
resources/networksegments
networksegments_object.go
networksegments_object.go
resources/packages
packages_constructor.go
packages_constructor.go
resources/policies
packages_data_source.go
packages_data_source.go
resources/printers
printers_data_object.go
printers_data_object.go
resources/restrictedsoftware
restrictedsoftware_object.go
restrictedsoftware_object.go
resources/scripts
scripts_object.go
scripts_object.go
resources/sites
sites_data_object.go
sites_data_object.go
resources/smartcomputergroups
smartcomputergroup_object.go
smartcomputergroup_object.go
resources/staticcomputergroups
staticcomputergroup_object.go
staticcomputergroup_object.go
resources/usergroups
usergroups_object.go
usergroups_object.go
resources/webhooks
webhooks_object.go
webhooks_object.go
scripts

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL