Skip to content

Commit 7dacde4

Browse files
committed
Updates for provider version 1.0.50
1 parent b824ff8 commit 7dacde4

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ A Terraform module to configure Intersight Infrastructure Pools.
1717
| Name | Version |
1818
|------|---------|
1919
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >=1.3.0 |
20-
| <a name="requirement_intersight"></a> [intersight](#requirement\_intersight) | >=1.0.47 |
20+
| <a name="requirement_intersight"></a> [intersight](#requirement\_intersight) | >=1.0.50 |
2121
## Providers
2222

2323
| Name | Version |
2424
|------|---------|
25-
| <a name="provider_intersight"></a> [intersight](#provider\_intersight) | >=1.0.47 |
25+
| <a name="provider_intersight"></a> [intersight](#provider\_intersight) | 1.0.50 |
2626
## Modules
2727

2828
No modules.

ip.tf

+14-14
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ resource "intersight_ippool_pool" "map" {
1313
for_each = { for v in each.value.ipv4_blocks : v.from => v }
1414
content {
1515
from = ip_v4_blocks.value.from
16-
#ip_v4_config {
17-
# gateway = ip_v4_blocks.value.gateway
18-
# netmask = ip_v4_blocks.value.netmask
19-
# object_type = "ippool.IpV4Config"
20-
# primary_dns = ip_v4_blocks.value.primary_dns
21-
# secondary_dns = ip_v4_blocks.value.secondary_dns
22-
#}
16+
ip_v4_config {
17+
gateway = ip_v4_blocks.value.gateway
18+
netmask = ip_v4_blocks.value.netmask
19+
object_type = "ippool.IpV4Config"
20+
primary_dns = ip_v4_blocks.value.primary_dns
21+
secondary_dns = ip_v4_blocks.value.secondary_dns
22+
}
2323
size = ip_v4_blocks.value.size
2424
to = ip_v4_blocks.value.to
2525
}
@@ -37,13 +37,13 @@ resource "intersight_ippool_pool" "map" {
3737
for_each = { for v in each.value.ipv6_blocks : v.from => v }
3838
content {
3939
from = ip_v6_blocks.value.from
40-
#ip_v6_config {
41-
# gateway = ip_v6_blocks.value.gateway
42-
# object_type = "ippool.IpV6Config"
43-
# prefix = ip_v6_blocks.value.prefix
44-
# primary_dns = ip_v6_blocks.value.primary_dns
45-
# secondary_dns = ip_v6_blocks.value.secondary_dns
46-
#}
40+
ip_v6_config {
41+
gateway = ip_v6_blocks.value.gateway
42+
object_type = "ippool.IpV6Config"
43+
prefix = ip_v6_blocks.value.prefix
44+
primary_dns = ip_v6_blocks.value.primary_dns
45+
secondary_dns = ip_v6_blocks.value.secondary_dns
46+
}
4747
size = ip_v6_blocks.value.size
4848
to = ip_v6_blocks.value.to
4949
}

provider.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
required_providers {
99
intersight = {
1010
source = "CiscoDevNet/intersight"
11-
version = ">=1.0.47"
11+
version = ">=1.0.50"
1212
}
1313
}
1414
required_version = ">=1.3.0"

0 commit comments

Comments
 (0)