A Terraform module to configure Cisco Meraki.
This module supports an inventory driven approach, where a complete Meraki configuration or parts of it are either modeled in one or more YAML files or natively using Terraform variables.
Configuring an organization administrator using YAML:
meraki:
domains:
- name: EMEA
administrator:
name: Dev CX Provider Admin
organizations:
- name: Dev
admins:
- name: Dev CX Provider Admin
email: [email protected]
authentication_method: Email
org_access: full
module "meraki" {
source = "netascode/nac-meraki/meraki"
version = ">= 0.1.0"
yaml_files = ["organizations_admins.yaml"]
}
Name | Version |
---|---|
terraform | >= 0.1.0 |
local | >= 2.5.1 |
meraki | 0.1.3 |
utils | >= 0.2.5 |
Name | Description | Type | Default | Required |
---|---|---|---|---|
model | As an alternative to YAML files, a native Terraform data structure can be provided as well. | map(any) |
{} |
no |
write_default_values_file | Write all default values to a YAML file. Value is a path pointing to the file to be created. | string |
"" |
no |
write_merged_yaml_file | The path where the merged YAML output should be written | string |
"" |
no |
yaml_directories | List of paths to YAML directories. | list(string) |
[] |
no |
yaml_files | List of paths to YAML files. | list(string) |
[] |
no |
Name | Description |
---|---|
default_values | All default values. |
model | Full model. |
No modules.