-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename 'aws_msk_nodes' -> 'aws_msk_broker_nodes'.
- Loading branch information
Showing
9 changed files
with
217 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
```release-note:new-data-source | ||
aws_msk_nodes | ||
aws_msk_broker_nodes | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"sort" | ||
|
||
"github.com/aws/aws-sdk-go/aws" | ||
"github.com/aws/aws-sdk-go/service/kafka" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
) | ||
|
||
func dataSourceAwsMskBrokerNodes() *schema.Resource { | ||
return &schema.Resource{ | ||
Read: dataSourceAwsMskBrokerNodesRead, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"cluster_arn": { | ||
Type: schema.TypeString, | ||
Required: true, | ||
ValidateFunc: validateArn, | ||
}, | ||
|
||
"node_info_list": { | ||
Type: schema.TypeList, | ||
Computed: true, | ||
Elem: &schema.Resource{ | ||
Schema: map[string]*schema.Schema{ | ||
"attached_eni_id": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"broker_id": { | ||
Type: schema.TypeFloat, | ||
Computed: true, | ||
}, | ||
"client_subnet": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"client_vpc_ip_address": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
"endpoints": { | ||
Type: schema.TypeSet, | ||
Computed: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
"node_arn": { | ||
Type: schema.TypeString, | ||
Computed: true, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func dataSourceAwsMskBrokerNodesRead(d *schema.ResourceData, meta interface{}) error { | ||
conn := meta.(*AWSClient).kafkaconn | ||
|
||
clusterARN := d.Get("cluster_arn").(string) | ||
input := &kafka.ListNodesInput{ | ||
ClusterArn: aws.String(clusterARN), | ||
} | ||
var nodeInfos []*kafka.NodeInfo | ||
|
||
err := conn.ListNodesPages(input, func(page *kafka.ListNodesOutput, lastPage bool) bool { | ||
if page == nil { | ||
return !lastPage | ||
} | ||
|
||
nodeInfos = append(nodeInfos, page.NodeInfoList...) | ||
|
||
return !lastPage | ||
}) | ||
|
||
if err != nil { | ||
return fmt.Errorf("error listing MSK Cluster (%s) Broker Nodes: %w", clusterARN, err) | ||
} | ||
|
||
// node list is returned unsorted sort on broker id | ||
sort.Slice(nodeInfos, func(i, j int) bool { | ||
iBrokerId := aws.Float64Value(nodeInfos[i].BrokerNodeInfo.BrokerId) | ||
jBrokerId := aws.Float64Value(nodeInfos[j].BrokerNodeInfo.BrokerId) | ||
return iBrokerId < jBrokerId | ||
}) | ||
|
||
tfList := make([]interface{}, len(nodeInfos)) | ||
|
||
for i, apiObject := range nodeInfos { | ||
brokerNodeInfo := apiObject.BrokerNodeInfo | ||
tfMap := map[string]interface{}{ | ||
"attached_eni_id": aws.StringValue(brokerNodeInfo.AttachedENIId), | ||
"broker_id": aws.Float64Value(brokerNodeInfo.BrokerId), | ||
"client_subnet": aws.StringValue(brokerNodeInfo.ClientSubnet), | ||
"client_vpc_ip_address": aws.StringValue(brokerNodeInfo.ClientVpcIpAddress), | ||
"endpoints": aws.StringValueSlice(brokerNodeInfo.Endpoints), | ||
"node_arn": aws.StringValue(apiObject.NodeARN), | ||
} | ||
|
||
tfList[i] = tfMap | ||
} | ||
|
||
d.SetId(clusterARN) | ||
|
||
if err := d.Set("node_info_list", tfList); err != nil { | ||
return fmt.Errorf("error setting node_info_list: %w", err) | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package aws | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/aws/aws-sdk-go/service/kafka" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
) | ||
|
||
func TestAccAWSMskBrokerNodesDataSource_basic(t *testing.T) { | ||
rName := acctest.RandomWithPrefix("tf-acc-test") | ||
dataSourceName := "data.aws_msk_broker_nodes.test" | ||
resourceName := "aws_msk_cluster.test" | ||
|
||
resource.ParallelTest(t, resource.TestCase{ | ||
PreCheck: func() { testAccPreCheck(t); testAccPreCheckAWSMsk(t) }, | ||
ErrorCheck: testAccErrorCheck(t, kafka.EndpointsID), | ||
Providers: testAccProviders, | ||
CheckDestroy: testAccCheckMskClusterDestroy, | ||
Steps: []resource.TestStep{ | ||
{ | ||
Config: testAccMskBrokerNodesDataSourceConfig(rName), | ||
Check: resource.ComposeAggregateTestCheckFunc( | ||
resource.TestCheckResourceAttrPair(dataSourceName, "cluster_arn", resourceName, "arn"), | ||
resource.TestCheckResourceAttrPair(dataSourceName, "node_info_list.#", resourceName, "number_of_broker_nodes"), | ||
resource.TestCheckResourceAttr(dataSourceName, "node_info_list.0.broker_id", "1"), | ||
resource.TestCheckResourceAttr(dataSourceName, "node_info_list.1.broker_id", "2"), | ||
resource.TestCheckResourceAttr(dataSourceName, "node_info_list.2.broker_id", "3"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
func testAccMskBrokerNodesDataSourceConfig(rName string) string { | ||
return composeConfig(testAccMskClusterBaseConfig(rName), fmt.Sprintf(` | ||
resource "aws_msk_cluster" "test" { | ||
cluster_name = %[1]q | ||
kafka_version = "2.2.1" | ||
number_of_broker_nodes = 3 | ||
broker_node_group_info { | ||
client_subnets = [aws_subnet.example_subnet_az1.id, aws_subnet.example_subnet_az2.id, aws_subnet.example_subnet_az3.id] | ||
ebs_volume_size = 10 | ||
instance_type = "kafka.t3.small" | ||
security_groups = [aws_security_group.example_sg.id] | ||
} | ||
tags = { | ||
foo = "bar" | ||
} | ||
} | ||
data "aws_msk_broker_nodes" "test" { | ||
cluster_arn = aws_msk_cluster.test.arn | ||
} | ||
`, rName)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.