Skip to content

Commit

Permalink
Merge pull request #132 from cisco-open/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
obrigg authored Aug 5, 2024
2 parents f64fb0a + 2908b4e commit a097184
Show file tree
Hide file tree
Showing 108 changed files with 442 additions and 173 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.2.10-alpha (August 05, 2024)
BUGFIXES:
* Issue #117 Fixed.
* Issue #118 Fixed.
* Issue #120 Fixed.
* Issue #121 Fixed.
* Issue #122 Fixed.
* Issue #123 Fixed.
* Issue #124 Fixed.
* Issue #125 Fixed.
* Issue #126 Fixed.
* Issue #127 Fixed.
* Issue #128 Fixed.
* Issue #129 Fixed.
* Issue #130 Fixed.
* Issue #131 Fixed.

## 0.2.9-alpha (July 23, 2024)
BUGFIXES:
* meraki_networks_switch_stp - plugin crash when reading #114.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ HOSTNAME=hashicorp.com
NAMESPACE=edu
NAME=meraki
BINARY=terraform-provider-${NAME}
VERSION=0.2.9-alpha
VERSION=0.2.10-alpha
OS_ARCH=darwin_arm64
# OS_ARCH=darwin_amd64
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ terraform {
required_providers {
meraki = {
source = "cisco-open/meraki"
version = "0.2.9-alpha"
version = "0.2.10-alpha"
}
}
}
Expand Down Expand Up @@ -68,7 +68,7 @@ terraform {
required_providers {
meraki = {
source = "hashicorp.com/edu/meraki"
version = "0.2.9-alpha"
version = "0.2.10-alpha"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/devices_appliance_radio_settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "meraki_devices_appliance_radio_settings" "example" {
five_ghz_settings = {
channel = 149
channel_width = 20
channel_width = "20"
target_power = 15
}
rf_profile_id = "1234"
Expand Down Expand Up @@ -55,7 +55,7 @@ output "meraki_devices_appliance_radio_settings_example" {
Optional:

- `channel` (Number) Manual channel for 5 GHz
- `channel_width` (Number) Manual channel width for 5 GHz
- `channel_width` (String) Manual channel width for 5 GHz
- `target_power` (Number) Manual target power for 5 GHz


Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
terraform import meraki_networks_group_policies.example "group_policy_id,network_id"
terraform import meraki_networks_group_policies.example "network_id,group_policy_id"
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,37 @@ resource "meraki_networks_switch_port_schedules" "example" {
friday = {

active = true
from = "9:00"
from = "09:00"
to = "17:00"
}
monday = {

active = true
from = "9:00"
from = "09:00"
to = "17:00"
}
saturday = {

active = false
from = "0:00"
from = "00:00"
to = "24:00"
}
sunday = {

active = false
from = "0:00"
from = "00:00"
to = "24:00"
}
thursday = {

active = true
from = "9:00"
from = "09:00"
to = "17:00"
}
tuesday = {

active = true
from = "9:00"
from = "09:00"
to = "17:00"
}
wednesday = {
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/meraki_networks_vlan_profiles/import.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
terraform import meraki_networks_vlan_profiles.example "iname,network_id"
terraform import meraki_networks_vlan_profiles.example "network_id,iname"
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ resource "meraki_organizations_early_access_features_opt_ins" "example" {
limit_scope_to_networks = ["N_12345"]
organization_id = "string"
short_name = "has_magnetic_beta"
opt_in_id = "828099381482925914"
}

output "meraki_organizations_early_access_features_opt_ins_example" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
8 changes: 4 additions & 4 deletions examples/samples/data_sources/meraki_devices/data_source.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
}
}
provider "meraki" {
meraki_debug = "true"
}
# provider "meraki" {
# meraki_debug = "true"
# }
data "meraki_devices" "example" {

# organization_id = "828099381482762766"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
2 changes: 1 addition & 1 deletion examples/samples/resources/devices/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
2 changes: 1 addition & 1 deletion examples/samples/resources/gnerate_snapshot/resource.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
terraform import meraki_devices_wireless_radio_settings.example "serial"
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

resource "meraki_devices_wireless_radio_settings" "example" {

five_ghz_settings = {

channel = 149
channel_width = 20
target_power = 15
}
# rf_profile_id = "1234"
serial = "Q2FV-DJ6J-4QHD"
two_four_ghz_settings = {

channel = 11
target_power = 21
}
}

output "meraki_devices_wireless_radio_settings_example" {
value = meraki_devices_wireless_radio_settings.example
}
2 changes: 1 addition & 1 deletion examples/samples/resources/meraki_networks/resource.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
meraki = {
version = "0.2.9-alpha"
version = "0.2.10-alpha"
source = "hashicorp.com/edu/meraki"
# "hashicorp.com/edu/meraki" is the local built source, change to "cisco-en-programmability/meraki" to use downloaded version from registry
}
Expand Down
Loading

0 comments on commit a097184

Please sign in to comment.