forked from hashicorp/terraform-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_aws_batch_job_queue.go
110 lines (92 loc) · 2.43 KB
/
data_source_aws_batch_job_queue.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package aws
import (
"fmt"
"log"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/batch"
"github.com/hashicorp/terraform/helper/schema"
)
func dataSourceAwsBatchJobQueue() *schema.Resource {
return &schema.Resource{
Read: dataSourceAwsBatchJobQueueRead,
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"arn": {
Type: schema.TypeString,
Computed: true,
},
"status": {
Type: schema.TypeString,
Computed: true,
},
"status_reason": {
Type: schema.TypeString,
Computed: true,
},
"state": {
Type: schema.TypeString,
Computed: true,
},
"priority": {
Type: schema.TypeInt,
Computed: true,
},
"compute_environment_order": {
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"compute_environment": {
Type: schema.TypeString,
Computed: true,
},
"order": {
Type: schema.TypeInt,
Computed: true,
},
},
},
},
},
}
}
func dataSourceAwsBatchJobQueueRead(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*AWSClient).batchconn
params := &batch.DescribeJobQueuesInput{
JobQueues: []*string{aws.String(d.Get("name").(string))},
}
log.Printf("[DEBUG] Reading Batch Job Queue: %s", params)
desc, err := conn.DescribeJobQueues(params)
if err != nil {
return err
}
if len(desc.JobQueues) == 0 {
return fmt.Errorf("no matches found for name: %s", d.Get("name").(string))
}
if len(desc.JobQueues) > 1 {
return fmt.Errorf("multiple matches found for name: %s", d.Get("name").(string))
}
jobQueue := desc.JobQueues[0]
d.SetId(aws.StringValue(jobQueue.JobQueueArn))
d.Set("arn", jobQueue.JobQueueArn)
d.Set("name", jobQueue.JobQueueName)
d.Set("status", jobQueue.Status)
d.Set("status_reason", jobQueue.StatusReason)
d.Set("state", jobQueue.State)
d.Set("priority", jobQueue.Priority)
ceos := make([]map[string]interface{}, 0)
for _, v := range jobQueue.ComputeEnvironmentOrder {
ceo := map[string]interface{}{}
ceo["compute_environment"] = aws.StringValue(v.ComputeEnvironment)
ceo["order"] = int(aws.Int64Value(v.Order))
ceos = append(ceos, ceo)
}
if err := d.Set("compute_environment_order", ceos); err != nil {
return fmt.Errorf("error setting compute_environment_order: %s", err)
}
return nil
}