FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
function-aws-query/aws.go at main · upbound/function-aws-query · GitHub
upbound
/
function-aws-query
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Issues
0
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
function-aws-query
/
aws.go
Copy path
More file actions
More file actions
Latest commit
History
History
History
830 lines (780 loc) · 29.6 KB
Breadcrumbs
function-aws-query
/
aws.go
Copy path
File metadata and controls
830 lines (780 loc) · 29.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
package
main
import
(
"context"
"encoding/json"
"fmt"
"slices"
"strconv"
"strings"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/aws/retry"
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/credentials"
"github.com/aws/aws-sdk-go-v2/credentials/stscreds"
"github.com/aws/aws-sdk-go-v2/service/cloudcontrol"
"github.com/aws/aws-sdk-go-v2/service/ec2"
ec2types
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi"
rgttypes
"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi/types"
"github.com/aws/aws-sdk-go-v2/service/servicequotas"
sqtypes
"github.com/aws/aws-sdk-go-v2/service/servicequotas/types"
"github.com/aws/aws-sdk-go-v2/service/sts"
ststypes
"github.com/aws/aws-sdk-go-v2/service/sts/types"
"github.com/upbound/function-aws-query/input/v1beta1"
ini
"gopkg.in/ini.v1"
"github.com/crossplane/function-sdk-go/errors"
"github.com/crossplane/function-sdk-go/logging"
)
// credentialsSecretName is the name of the function credentials block that
// carries the AWS credentials (shared-credentials INI under key "credentials",
// and an optional web identity token under key "token").
const
credentialsSecretName
=
"aws-creds"
// AWSQueryInterface is the mockable seam between RunFunction and the real AWS
// calls. creds holds the decoded "aws-creds" credentials block: key
// "credentials" (shared-credentials INI) and optional key "token" (WebIdentity).
// It is empty/absent for IRSA and PodIdentity.
type
AWSQueryInterface
interface
{
awsQuery
(
ctx
context.
Context
,
creds
map
[
string
][]
byte
,
in
*
v1beta1.
Input
) (
any
,
error
)
}
// AWSQuery is the concrete AWSQueryInterface implementation.
type
AWSQuery
struct
{
log
logging.
Logger
}
// handler executes one AWS read operation against a resolved config and returns
// JSON-ready (structpb-safe) data.
type
handler
func
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
)
func
(
q
*
AWSQuery
)
registry
()
map
[
string
]
handler
{
return
map
[
string
]
handler
{
"GetCallerIdentity"
:
q
.
getCallerIdentity
,
"DescribeRegions"
:
q
.
describeRegions
,
"DescribeAvailabilityZones"
:
q
.
describeAvailabilityZones
,
"DescribeImages"
:
q
.
describeImages
,
"DescribeRouteTables"
:
q
.
describeRouteTables
,
"DescribeSubnets"
:
q
.
describeSubnets
,
"DescribeSecurityGroupRules"
:
q
.
describeSecurityGroupRules
,
"ListServiceQuotas"
:
q
.
listServiceQuotas
,
"GetServiceQuota"
:
q
.
getServiceQuota
,
"ListResources"
:
q
.
listResources
,
"GetResources"
:
q
.
getResources
,
}
}
// awsQuery resolves credentials, then dispatches to the handler for QueryType.
func
(
q
*
AWSQuery
)
awsQuery
(
ctx
context.
Context
,
creds
map
[
string
][]
byte
,
in
*
v1beta1.
Input
) (
any
,
error
) {
cfg
,
err
:=
buildAWSConfig
(
ctx
,
creds
,
in
)
if
err
!=
nil
{
return
nil
,
err
}
h
,
ok
:=
q
.
registry
()[
in
.
QueryType
]
if
!
ok
{
return
nil
,
errors
.
Errorf
(
"unsupported queryType: %s"
,
in
.
QueryType
)
}
return
h
(
ctx
,
cfg
,
in
)
}
// buildAWSConfig resolves a base credentials provider per Identity.Source
// (mirroring provider-upjet-aws), then layers the assumeRoleChain on top.
func
buildAWSConfig
(
ctx
context.
Context
,
creds
map
[
string
][]
byte
,
in
*
v1beta1.
Input
) (aws.
Config
,
error
) {
//nolint:gocyclo // straight-line credential-source selection; splitting hurts readability
opts
:=
[]
func
(
*
config.
LoadOptions
)
error
{
config
.
WithRetryer
(
func
() aws.
Retryer
{
return
retry
.
AddWithMaxAttempts
(
retry
.
NewStandard
(),
5
) }),
}
if
region
:=
resolveRegion
(
creds
,
in
);
region
!=
""
{
opts
=
append
(
opts
,
config
.
WithRegion
(
region
))
}
source
:=
v1beta1
.
IdentitySourceSecret
var
webIdentity
*
v1beta1.
WebIdentity
var
chain
[]v1beta1.
AssumeRole
if
in
.
Identity
!=
nil
{
if
in
.
Identity
.
Source
!=
""
{
source
=
in
.
Identity
.
Source
}
webIdentity
=
in
.
Identity
.
WebIdentity
chain
=
in
.
Identity
.
AssumeRoleChain
}
switch
source
{
case
v1beta1
.
IdentitySourceSecret
:
// Shared-credentials INI, byte-identical to provider-upjet-aws Secret source.
ak
,
sk
,
st
,
_
,
err
:=
parseSharedCredsINI
(
creds
[
"credentials"
])
if
err
!=
nil
{
return
aws.
Config
{},
err
}
opts
=
append
(
opts
,
config
.
WithCredentialsProvider
(
credentials
.
NewStaticCredentialsProvider
(
ak
,
sk
,
st
)))
case
v1beta1
.
IdentitySourceIRSA
,
v1beta1
.
IdentitySourcePodIdentity
:
// No secret: the SDK default credential chain resolves the web identity
// token file (IRSA) or the container credentials endpoint (Pod Identity).
// The function pod's ServiceAccount carries the role.
case
v1beta1
.
IdentitySourceWebIdentity
:
if
webIdentity
==
nil
||
webIdentity
.
RoleARN
==
""
{
return
aws.
Config
{},
errors
.
New
(
"identity.webIdentity.roleARN is required for the WebIdentity source"
)
}
base
,
err
:=
config
.
LoadDefaultConfig
(
ctx
,
opts
...
)
if
err
!=
nil
{
return
aws.
Config
{},
errors
.
Wrap
(
err
,
"cannot load base AWS config for WebIdentity"
)
}
retriever
,
err
:=
webIdentityTokenRetriever
(
creds
[
"token"
],
webIdentity
)
if
err
!=
nil
{
return
aws.
Config
{},
err
}
provider
:=
stscreds
.
NewWebIdentityRoleProvider
(
sts
.
NewFromConfig
(
base
),
webIdentity
.
RoleARN
,
retriever
,
func
(
o
*
stscreds.
WebIdentityRoleOptions
) {
if
webIdentity
.
RoleSessionName
!=
""
{
o
.
RoleSessionName
=
webIdentity
.
RoleSessionName
}
})
opts
=
append
(
opts
,
config
.
WithCredentialsProvider
(
aws
.
NewCredentialsCache
(
provider
)))
default
:
return
aws.
Config
{},
errors
.
Errorf
(
"unsupported identity source: %s"
,
source
)
}
cfg
,
err
:=
config
.
LoadDefaultConfig
(
ctx
,
opts
...
)
if
err
!=
nil
{
return
aws.
Config
{},
errors
.
Wrap
(
err
,
"cannot load AWS config"
)
}
// assumeRoleChain: assume each role in order, each using the previous step's credentials.
for
_
,
r
:=
range
chain
{
prev
:=
cfg
role
:=
r
cfg
.
Credentials
=
aws
.
NewCredentialsCache
(
stscreds
.
NewAssumeRoleProvider
(
sts
.
NewFromConfig
(
prev
),
role
.
RoleARN
,
func
(
o
*
stscreds.
AssumeRoleOptions
) {
if
role
.
ExternalID
!=
nil
{
o
.
ExternalID
=
role
.
ExternalID
}
if
role
.
RoleSessionName
!=
nil
{
o
.
RoleSessionName
=
*
role
.
RoleSessionName
}
o
.
Tags
=
toSTSTags
(
role
.
Tags
)
o
.
TransitiveTagKeys
=
role
.
TransitiveTagKeys
}))
}
return
cfg
,
nil
}
// staticIdentityToken is an in-memory stscreds.IdentityTokenRetriever backed by
// token bytes delivered through the function credentials block.
type
staticIdentityToken
[]
byte
// GetIdentityToken returns the token bytes.
func
(
t
staticIdentityToken
)
GetIdentityToken
() ([]
byte
,
error
) {
return
t
,
nil
}
func
webIdentityTokenRetriever
(
tokenSecret
[]
byte
,
wi
*
v1beta1.
WebIdentity
) (stscreds.
IdentityTokenRetriever
,
error
) {
source
:=
"Secret"
if
wi
.
TokenConfig
!=
nil
&&
wi
.
TokenConfig
.
Source
!=
""
{
source
=
wi
.
TokenConfig
.
Source
}
switch
source
{
case
"Secret"
:
if
len
(
tokenSecret
)
==
0
{
return
nil
,
errors
.
New
(
"WebIdentity token is empty (expected key
\"
token
\"
in the aws-creds credentials block)"
)
}
return
staticIdentityToken
(
tokenSecret
),
nil
case
"Filesystem"
:
if
wi
.
TokenConfig
==
nil
||
wi
.
TokenConfig
.
FSPath
==
nil
||
*
wi
.
TokenConfig
.
FSPath
==
""
{
return
nil
,
errors
.
New
(
"identity.webIdentity.tokenConfig.fsPath is required for the Filesystem token source"
)
}
return
stscreds
.
IdentityTokenFile
(
*
wi
.
TokenConfig
.
FSPath
),
nil
}
return
nil
,
errors
.
Errorf
(
"unsupported tokenConfig.source: %s"
,
source
)
}
// resolveRegion picks the region: Input.Region (RegionRef is resolved into it by
// fn.go) -> credential profile region -> AWS_REGION env (handled by the SDK when
// we leave it unset) -> us-east-1 for global-ish calls.
func
resolveRegion
(
creds
map
[
string
][]
byte
,
in
*
v1beta1.
Input
)
string
{
if
in
.
Region
!=
nil
&&
*
in
.
Region
!=
""
{
return
*
in
.
Region
}
if
r
:=
iniRegion
(
creds
[
"credentials"
]);
r
!=
""
{
return
r
}
// AWS_REGION / AWS_DEFAULT_REGION are picked up automatically by
// LoadDefaultConfig when WithRegion is not supplied.
if
isGlobalQuery
(
in
.
QueryType
) {
return
"us-east-1"
}
return
""
}
func
isGlobalQuery
(
queryType
string
)
bool
{
switch
queryType
{
case
"GetCallerIdentity"
,
"DescribeRegions"
:
return
true
}
return
false
}
// getCallerIdentity returns the AWS account, ARN, and user ID (STS).
func
(
q
*
AWSQuery
)
getCallerIdentity
(
ctx
context.
Context
,
cfg
aws.
Config
,
_
*
v1beta1.
Input
) (
any
,
error
) {
out
,
err
:=
sts
.
NewFromConfig
(
cfg
).
GetCallerIdentity
(
ctx
,
&
sts.
GetCallerIdentityInput
{})
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"GetCallerIdentity failed"
)
}
return
map
[
string
]
any
{
"account"
:
aws
.
ToString
(
out
.
Account
),
"arn"
:
aws
.
ToString
(
out
.
Arn
),
"userId"
:
aws
.
ToString
(
out
.
UserId
),
},
nil
}
// describeRegions lists AWS regions (EC2).
func
(
q
*
AWSQuery
)
describeRegions
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
input
:=
&
ec2.
DescribeRegionsInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)}
if
b
,
_
:=
strconv
.
ParseBool
(
in
.
Parameters
[
"allRegions"
]);
b
{
input
.
AllRegions
=
aws
.
Bool
(
true
)
}
out
,
err
:=
ec2
.
NewFromConfig
(
cfg
).
DescribeRegions
(
ctx
,
input
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeRegions failed"
)
}
res
:=
[]
any
{}
for
_
,
r
:=
range
out
.
Regions
{
res
=
append
(
res
,
map
[
string
]
any
{
"name"
:
aws
.
ToString
(
r
.
RegionName
),
"endpoint"
:
aws
.
ToString
(
r
.
Endpoint
),
"optInStatus"
:
aws
.
ToString
(
r
.
OptInStatus
),
})
}
return
res
,
nil
}
// describeAvailabilityZones lists AZs in the target region (EC2).
func
(
q
*
AWSQuery
)
describeAvailabilityZones
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"DescribeAvailabilityZones"
)
}
input
:=
&
ec2.
DescribeAvailabilityZonesInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)}
if
b
,
_
:=
strconv
.
ParseBool
(
in
.
Parameters
[
"allAvailabilityZones"
]);
b
{
input
.
AllAvailabilityZones
=
aws
.
Bool
(
true
)
}
out
,
err
:=
ec2
.
NewFromConfig
(
cfg
).
DescribeAvailabilityZones
(
ctx
,
input
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeAvailabilityZones failed"
)
}
res
:=
[]
any
{}
for
_
,
z
:=
range
out
.
AvailabilityZones
{
res
=
append
(
res
,
map
[
string
]
any
{
"name"
:
aws
.
ToString
(
z
.
ZoneName
),
"zoneId"
:
aws
.
ToString
(
z
.
ZoneId
),
"state"
:
string
(
z
.
State
),
"regionName"
:
aws
.
ToString
(
z
.
RegionName
),
"zoneType"
:
aws
.
ToString
(
z
.
ZoneType
),
"groupName"
:
aws
.
ToString
(
z
.
GroupName
),
})
}
return
res
,
nil
}
// describeImages looks up AMIs (EC2). Requires owners, filters, or imageIds.
func
(
q
*
AWSQuery
)
describeImages
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"DescribeImages"
)
}
owners
:=
csv
(
in
.
Parameters
[
"owners"
])
imageIDs
:=
csv
(
in
.
Parameters
[
"imageIds"
])
if
len
(
owners
)
==
0
&&
len
(
in
.
Filters
)
==
0
&&
len
(
imageIDs
)
==
0
{
return
nil
,
errors
.
New
(
"DescribeImages requires parameters.owners, filters, or parameters.imageIds to avoid returning all public AMIs"
)
}
input
:=
&
ec2.
DescribeImagesInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)}
if
len
(
owners
)
>
0
{
input
.
Owners
=
owners
}
if
len
(
imageIDs
)
>
0
{
input
.
ImageIds
=
imageIDs
}
out
,
err
:=
ec2
.
NewFromConfig
(
cfg
).
DescribeImages
(
ctx
,
input
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeImages failed"
)
}
res
:=
[]
any
{}
for
_
,
im
:=
range
out
.
Images
{
res
=
append
(
res
,
map
[
string
]
any
{
"imageId"
:
aws
.
ToString
(
im
.
ImageId
),
"name"
:
aws
.
ToString
(
im
.
Name
),
"ownerId"
:
aws
.
ToString
(
im
.
OwnerId
),
"creationDate"
:
aws
.
ToString
(
im
.
CreationDate
),
"architecture"
:
string
(
im
.
Architecture
),
"state"
:
string
(
im
.
State
),
"rootDeviceType"
:
string
(
im
.
RootDeviceType
),
"description"
:
aws
.
ToString
(
im
.
Description
),
})
}
return
res
,
nil
}
// ec2Client validates the shared preconditions for the direct EC2 describes and
// returns a client. The filter guard is not optional hygiene: these calls are
// paginated and unbounded, so an empty filter set pages an entire region into XR
// status. It is reachable without a user typo - toFilters returns a non-nil
// empty slice, so a filtersRef that resolves to [] arrives here as len 0.
// describeImages guards the same way for the same reason.
//
// hint names the filters that operation actually accepts; they differ per
// operation and an unrecognised filter NAME is fatal, so a generic message
// would send the reader in the wrong direction.
func
ec2Client
(
cfg
aws.
Config
,
in
*
v1beta1.
Input
,
queryType
,
hint
string
) (
*
ec2.
Client
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
queryType
)
}
if
len
(
in
.
Filters
)
==
0
{
return
nil
,
errors
.
Errorf
(
"%s requires filters to avoid an unbounded region-wide read (e.g. %s)"
,
queryType
,
hint
)
}
return
ec2
.
NewFromConfig
(
cfg
),
nil
}
// describeRouteTables lists route tables with their associations (EC2,
// paginated). The main association ID is not in the CloudFormation schema.
func
(
q
*
AWSQuery
)
describeRouteTables
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
client
,
err
:=
ec2Client
(
cfg
,
in
,
"DescribeRouteTables"
,
"vpc-id, route-table-id, association.subnet-id, tag:<key>"
)
if
err
!=
nil
{
return
nil
,
err
}
p
:=
ec2
.
NewDescribeRouteTablesPaginator
(
client
,
&
ec2.
DescribeRouteTablesInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)})
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeRouteTables failed"
)
}
for
_
,
rt
:=
range
page
.
RouteTables
{
res
=
append
(
res
,
map
[
string
]
any
{
"routeTableId"
:
aws
.
ToString
(
rt
.
RouteTableId
),
"vpcId"
:
aws
.
ToString
(
rt
.
VpcId
),
"ownerId"
:
aws
.
ToString
(
rt
.
OwnerId
),
"associations"
:
routeTableAssociations
(
rt
.
Associations
),
"routes"
:
routeTableRoutes
(
rt
.
Routes
),
"tags"
:
ec2TagsToMap
(
rt
.
Tags
),
})
}
}
return
res
,
nil
}
func
routeTableAssociations
(
associations
[]ec2types.
RouteTableAssociation
) []
any
{
out
:=
make
([]
any
,
0
,
len
(
associations
))
for
_
,
a
:=
range
associations
{
state
:=
""
if
a
.
AssociationState
!=
nil
{
state
=
string
(
a
.
AssociationState
.
State
)
}
out
=
append
(
out
,
map
[
string
]
any
{
"routeTableAssociationId"
:
aws
.
ToString
(
a
.
RouteTableAssociationId
),
"routeTableId"
:
aws
.
ToString
(
a
.
RouteTableId
),
"subnetId"
:
aws
.
ToString
(
a
.
SubnetId
),
"gatewayId"
:
aws
.
ToString
(
a
.
GatewayId
),
"main"
:
aws
.
ToBool
(
a
.
Main
),
"state"
:
state
,
})
}
return
out
}
func
routeTableRoutes
(
routes
[]ec2types.
Route
) []
any
{
out
:=
make
([]
any
,
0
,
len
(
routes
))
for
_
,
r
:=
range
routes
{
out
=
append
(
out
,
map
[
string
]
any
{
// All three destination forms: aws_route's external name is
// {route_table_id}_{destination}, so omitting any of them makes that
// route unidentifiable.
"destinationCidrBlock"
:
aws
.
ToString
(
r
.
DestinationCidrBlock
),
"destinationIpv6CidrBlock"
:
aws
.
ToString
(
r
.
DestinationIpv6CidrBlock
),
"destinationPrefixListId"
:
aws
.
ToString
(
r
.
DestinationPrefixListId
),
"carrierGatewayId"
:
aws
.
ToString
(
r
.
CarrierGatewayId
),
"coreNetworkArn"
:
aws
.
ToString
(
r
.
CoreNetworkArn
),
"egressOnlyInternetGatewayId"
:
aws
.
ToString
(
r
.
EgressOnlyInternetGatewayId
),
"gatewayId"
:
aws
.
ToString
(
r
.
GatewayId
),
"instanceId"
:
aws
.
ToString
(
r
.
InstanceId
),
"localGatewayId"
:
aws
.
ToString
(
r
.
LocalGatewayId
),
"natGatewayId"
:
aws
.
ToString
(
r
.
NatGatewayId
),
"networkInterfaceId"
:
aws
.
ToString
(
r
.
NetworkInterfaceId
),
"transitGatewayId"
:
aws
.
ToString
(
r
.
TransitGatewayId
),
"vpcPeeringConnectionId"
:
aws
.
ToString
(
r
.
VpcPeeringConnectionId
),
"origin"
:
string
(
r
.
Origin
),
"state"
:
string
(
r
.
State
),
})
}
return
out
}
// describeSecurityGroupRules lists security group rules (EC2, paginated).
// Note the filter names: this operation does NOT accept vpc-id.
func
(
q
*
AWSQuery
)
describeSecurityGroupRules
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
client
,
err
:=
ec2Client
(
cfg
,
in
,
"DescribeSecurityGroupRules"
,
"group-id, security-group-rule-id, tag:<key>"
)
if
err
!=
nil
{
return
nil
,
err
}
p
:=
ec2
.
NewDescribeSecurityGroupRulesPaginator
(
client
,
&
ec2.
DescribeSecurityGroupRulesInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)})
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeSecurityGroupRules failed"
)
}
for
_
,
r
:=
range
page
.
SecurityGroupRules
{
m
:=
map
[
string
]
any
{
"securityGroupRuleId"
:
aws
.
ToString
(
r
.
SecurityGroupRuleId
),
"securityGroupRuleArn"
:
aws
.
ToString
(
r
.
SecurityGroupRuleArn
),
"groupId"
:
aws
.
ToString
(
r
.
GroupId
),
"groupOwnerId"
:
aws
.
ToString
(
r
.
GroupOwnerId
),
"isEgress"
:
aws
.
ToBool
(
r
.
IsEgress
),
"ipProtocol"
:
aws
.
ToString
(
r
.
IpProtocol
),
"cidrIpv4"
:
aws
.
ToString
(
r
.
CidrIpv4
),
"cidrIpv6"
:
aws
.
ToString
(
r
.
CidrIpv6
),
"prefixListId"
:
aws
.
ToString
(
r
.
PrefixListId
),
"description"
:
aws
.
ToString
(
r
.
Description
),
"tags"
:
ec2TagsToMap
(
r
.
Tags
),
}
// The full referenced-group identity, not just the id: a
// cross-account rule is otherwise indistinguishable from a local
// one, since sg-abc in another account is a different group.
if
r
.
ReferencedGroupInfo
!=
nil
{
m
[
"referencedGroupId"
]
=
aws
.
ToString
(
r
.
ReferencedGroupInfo
.
GroupId
)
m
[
"referencedGroupUserId"
]
=
aws
.
ToString
(
r
.
ReferencedGroupInfo
.
UserId
)
m
[
"referencedGroupVpcId"
]
=
aws
.
ToString
(
r
.
ReferencedGroupInfo
.
VpcId
)
}
putInt32
(
m
,
"fromPort"
,
r
.
FromPort
)
putInt32
(
m
,
"toPort"
,
r
.
ToPort
)
res
=
append
(
res
,
m
)
}
}
return
res
,
nil
}
// describeSubnets lists subnets (EC2, paginated). Returns only live subnets,
// unlike the Tagging API.
func
(
q
*
AWSQuery
)
describeSubnets
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
client
,
err
:=
ec2Client
(
cfg
,
in
,
"DescribeSubnets"
,
"vpc-id, subnet-id, availability-zone, tag:<key>"
)
if
err
!=
nil
{
return
nil
,
err
}
p
:=
ec2
.
NewDescribeSubnetsPaginator
(
client
,
&
ec2.
DescribeSubnetsInput
{
Filters
:
toEC2Filters
(
in
.
Filters
)})
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"DescribeSubnets failed"
)
}
for
_
,
s
:=
range
page
.
Subnets
{
m
:=
map
[
string
]
any
{
"subnetId"
:
aws
.
ToString
(
s
.
SubnetId
),
"subnetArn"
:
aws
.
ToString
(
s
.
SubnetArn
),
"vpcId"
:
aws
.
ToString
(
s
.
VpcId
),
"ownerId"
:
aws
.
ToString
(
s
.
OwnerId
),
"availabilityZone"
:
aws
.
ToString
(
s
.
AvailabilityZone
),
"availabilityZoneId"
:
aws
.
ToString
(
s
.
AvailabilityZoneId
),
"cidrBlock"
:
aws
.
ToString
(
s
.
CidrBlock
),
"state"
:
string
(
s
.
State
),
"defaultForAz"
:
aws
.
ToBool
(
s
.
DefaultForAz
),
"mapPublicIpOnLaunch"
:
aws
.
ToBool
(
s
.
MapPublicIpOnLaunch
),
"tags"
:
ec2TagsToMap
(
s
.
Tags
),
}
// IPv6 addressing. An IPv6-only subnet has no CidrBlock at all, so
// without these it projects cidrBlock:"" and is indistinguishable
// from a projection failure. AWS::EC2::Subnet models Ipv6CidrBlock,
// so omitting it would make this query strictly worse than the
// Cloud Control alternative it is meant to replace.
m
[
"ipv6Native"
]
=
aws
.
ToBool
(
s
.
Ipv6Native
)
ipv6
:=
make
([]
any
,
0
,
len
(
s
.
Ipv6CidrBlockAssociationSet
))
for
_
,
a
:=
range
s
.
Ipv6CidrBlockAssociationSet
{
state
:=
""
if
a
.
Ipv6CidrBlockState
!=
nil
{
state
=
string
(
a
.
Ipv6CidrBlockState
.
State
)
}
ipv6
=
append
(
ipv6
,
map
[
string
]
any
{
"associationId"
:
aws
.
ToString
(
a
.
AssociationId
),
"ipv6CidrBlock"
:
aws
.
ToString
(
a
.
Ipv6CidrBlock
),
"state"
:
state
,
})
}
m
[
"ipv6CidrBlockAssociationSet"
]
=
ipv6
putInt32
(
m
,
"availableIpAddressCount"
,
s
.
AvailableIpAddressCount
)
res
=
append
(
res
,
m
)
}
}
return
res
,
nil
}
// listServiceQuotas lists quotas for a service (ServiceQuotas, paginated).
func
(
q
*
AWSQuery
)
listServiceQuotas
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"ListServiceQuotas"
)
}
serviceCode
:=
in
.
Parameters
[
"serviceCode"
]
if
serviceCode
==
""
{
return
nil
,
errors
.
New
(
"ListServiceQuotas requires parameters.serviceCode (e.g.
\"
ec2
\"
)"
)
}
client
:=
servicequotas
.
NewFromConfig
(
cfg
)
p
:=
servicequotas
.
NewListServiceQuotasPaginator
(
client
,
&
servicequotas.
ListServiceQuotasInput
{
ServiceCode
:
aws
.
String
(
serviceCode
)})
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"ListServiceQuotas failed"
)
}
for
_
,
quota
:=
range
page
.
Quotas
{
res
=
append
(
res
,
quotaToMap
(
quota
))
}
}
return
res
,
nil
}
// getServiceQuota gets a single quota (ServiceQuotas).
func
(
q
*
AWSQuery
)
getServiceQuota
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"GetServiceQuota"
)
}
serviceCode
,
quotaCode
:=
in
.
Parameters
[
"serviceCode"
],
in
.
Parameters
[
"quotaCode"
]
if
serviceCode
==
""
||
quotaCode
==
""
{
return
nil
,
errors
.
New
(
"GetServiceQuota requires parameters.serviceCode and parameters.quotaCode"
)
}
out
,
err
:=
servicequotas
.
NewFromConfig
(
cfg
).
GetServiceQuota
(
ctx
,
&
servicequotas.
GetServiceQuotaInput
{
ServiceCode
:
aws
.
String
(
serviceCode
),
QuotaCode
:
aws
.
String
(
quotaCode
),
})
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"GetServiceQuota failed"
)
}
if
out
.
Quota
==
nil
{
return
map
[
string
]
any
{},
nil
}
return
quotaToMap
(
*
out
.
Quota
),
nil
}
func
quotaToMap
(
quota
sqtypes.
ServiceQuota
)
map
[
string
]
any
{
m
:=
map
[
string
]
any
{
"quotaCode"
:
aws
.
ToString
(
quota
.
QuotaCode
),
"quotaName"
:
aws
.
ToString
(
quota
.
QuotaName
),
"unit"
:
aws
.
ToString
(
quota
.
Unit
),
"adjustable"
:
quota
.
Adjustable
,
"globalQuota"
:
quota
.
GlobalQuota
,
}
if
quota
.
Value
!=
nil
{
m
[
"value"
]
=
*
quota
.
Value
}
return
m
}
// listResources lists resources of a CloudFormation-modeled type (Cloud Control,
// paginated) and applies client-side filters. ListResources itself returns only
// the primary identifier (plus a thin subset of properties) for most types, so
// by default each resource is hydrated with GetResource to obtain the full model
// (including Tags). Set parameters.hydrate=false to skip hydration and return
// just the listed identifiers — faster, but tag/attribute filters won't match.
func
(
q
*
AWSQuery
)
listResources
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"ListResources"
)
}
typeName
:=
in
.
Parameters
[
"typeName"
]
if
typeName
==
""
{
return
nil
,
errors
.
New
(
"ListResources requires parameters.typeName (e.g.
\"
AWS::EC2::VPC
\"
)"
)
}
roleArn
:=
in
.
Parameters
[
"roleArn"
]
hydrate
:=
true
if
v
,
ok
:=
in
.
Parameters
[
"hydrate"
];
ok
{
if
b
,
err
:=
strconv
.
ParseBool
(
v
);
err
==
nil
{
hydrate
=
b
}
}
client
:=
cloudcontrol
.
NewFromConfig
(
cfg
)
input
:=
&
cloudcontrol.
ListResourcesInput
{
TypeName
:
aws
.
String
(
typeName
)}
if
rm
:=
in
.
Parameters
[
"resourceModel"
];
rm
!=
""
{
input
.
ResourceModel
=
aws
.
String
(
rm
)
}
if
roleArn
!=
""
{
input
.
RoleArn
=
aws
.
String
(
roleArn
)
}
p
:=
cloudcontrol
.
NewListResourcesPaginator
(
client
,
input
)
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"ListResources failed"
)
}
for
_
,
rd
:=
range
page
.
ResourceDescriptions
{
id
:=
aws
.
ToString
(
rd
.
Identifier
)
props
:=
parseCloudControlProps
(
rd
.
Properties
,
q
.
log
)
if
hydrate
{
props
,
err
=
q
.
getCloudControlResource
(
ctx
,
client
,
typeName
,
id
,
roleArn
)
if
err
!=
nil
{
return
nil
,
err
}
}
if
!
matchesClientFilters
(
props
,
in
.
Filters
) {
continue
}
res
=
append
(
res
,
map
[
string
]
any
{
"identifier"
:
id
,
"properties"
:
props
,
})
}
}
return
res
,
nil
}
// getCloudControlResource fetches the full property model for a single resource.
func
(
q
*
AWSQuery
)
getCloudControlResource
(
ctx
context.
Context
,
client
*
cloudcontrol.
Client
,
typeName
,
identifier
,
roleArn
string
) (
map
[
string
]
any
,
error
) {
in
:=
&
cloudcontrol.
GetResourceInput
{
TypeName
:
aws
.
String
(
typeName
),
Identifier
:
aws
.
String
(
identifier
)}
if
roleArn
!=
""
{
in
.
RoleArn
=
aws
.
String
(
roleArn
)
}
out
,
err
:=
client
.
GetResource
(
ctx
,
in
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrapf
(
err
,
"GetResource %s %s failed"
,
typeName
,
identifier
)
}
if
out
.
ResourceDescription
==
nil
{
return
map
[
string
]
any
{},
nil
}
return
parseCloudControlProps
(
out
.
ResourceDescription
.
Properties
,
q
.
log
),
nil
}
// parseCloudControlProps unmarshals a Cloud Control Properties JSON string into a
// structpb-safe map.
func
parseCloudControlProps
(
properties
*
string
,
log
logging.
Logger
)
map
[
string
]
any
{
props
:=
map
[
string
]
any
{}
if
properties
!=
nil
{
if
err
:=
json
.
Unmarshal
([]
byte
(
*
properties
),
&
props
);
err
!=
nil
{
log
.
Debug
(
"cannot parse Cloud Control resource properties"
,
"error"
,
err
)
}
}
return
props
}
// getResources finds resources by tag/type (Resource Groups Tagging API,
// paginated), returning ARN + tags.
func
(
q
*
AWSQuery
)
getResources
(
ctx
context.
Context
,
cfg
aws.
Config
,
in
*
v1beta1.
Input
) (
any
,
error
) {
if
cfg
.
Region
==
""
{
return
nil
,
errRegionRequired
(
"GetResources"
)
}
input
:=
&
resourcegroupstaggingapi.
GetResourcesInput
{
TagFilters
:
toTagFilters
(
in
.
Filters
),
ResourceTypeFilters
:
csv
(
in
.
Parameters
[
"resourceTypeFilters"
]),
}
p
:=
resourcegroupstaggingapi
.
NewGetResourcesPaginator
(
resourcegroupstaggingapi
.
NewFromConfig
(
cfg
),
input
)
res
:=
[]
any
{}
for
p
.
HasMorePages
() {
page
,
err
:=
p
.
NextPage
(
ctx
)
if
err
!=
nil
{
return
nil
,
errors
.
Wrap
(
err
,
"GetResources failed"
)
}
for
_
,
m
:=
range
page
.
ResourceTagMappingList
{
tags
:=
map
[
string
]
any
{}
for
_
,
t
:=
range
m
.
Tags
{
tags
[
aws
.
ToString
(
t
.
Key
)]
=
aws
.
ToString
(
t
.
Value
)
}
res
=
append
(
res
,
map
[
string
]
any
{
"arn"
:
aws
.
ToString
(
m
.
ResourceARN
),
"tags"
:
tags
,
})
}
}
return
res
,
nil
}
// matchesClientFilters applies Input.Filters client-side to a Cloud Control
// resource's properties. Filters AND together; values within a filter OR. A
// filter name of "tag:Key" matches against the resource's Tags property.
func
matchesClientFilters
(
props
map
[
string
]
any
,
filters
[]v1beta1.
Filter
)
bool
{
for
_
,
f
:=
range
filters
{
var
actual
string
var
found
bool
switch
{
case
strings
.
HasPrefix
(
f
.
Name
,
"tag:"
):
actual
,
found
=
tagFromProps
(
props
,
strings
.
TrimPrefix
(
f
.
Name
,
"tag:"
))
default
:
if
v
,
ok
:=
props
[
f
.
Name
];
ok
{
actual
,
found
=
fmt
.
Sprintf
(
"%v"
,
v
),
true
}
}
if
!
found
||
!
contains
(
f
.
Values
,
actual
) {
return
false
}
}
return
true
}
// tagFromProps reads a tag value from a Cloud Control properties map, where Tags
// are typically modeled as an array of {Key, Value} objects.
func
tagFromProps
(
props
map
[
string
]
any
,
key
string
) (
string
,
bool
) {
raw
,
ok
:=
props
[
"Tags"
]
if
!
ok
{
return
""
,
false
}
arr
,
ok
:=
raw
.([]
any
)
if
!
ok
{
return
""
,
false
}
for
_
,
e
:=
range
arr
{
m
,
ok
:=
e
.(
map
[
string
]
any
)
if
!
ok
{
continue
}
if
fmt
.
Sprintf
(
"%v"
,
m
[
"Key"
])
==
key
{
return
fmt
.
Sprintf
(
"%v"
,
m
[
"Value"
]),
true
}
}
return
""
,
false
}
func
toEC2Filters
(
filters
[]v1beta1.
Filter
) []ec2types.
Filter
{
if
len
(
filters
)
==
0
{
return
nil
}
out
:=
make
([]ec2types.
Filter
,
0
,
len
(
filters
))
for
_
,
f
:=
range
filters
{
out
=
append
(
out
, ec2types.
Filter
{
Name
:
aws
.
String
(
f
.
Name
),
Values
:
f
.
Values
})
}
return
out
}
// ec2TagsToMap flattens EC2 tags, matching the shape getResources returns.
func
ec2TagsToMap
(
tags
[]ec2types.
Tag
)
map
[
string
]
any
{
out
:=
map
[
string
]
any
{}
for
_
,
t
:=
range
tags
{
out
[
aws
.
ToString
(
t
.
Key
)]
=
aws
.
ToString
(
t
.
Value
)
}
return
out
}
// putInt32 sets key only when v is set, so an absent value is not a real zero.
func
putInt32
(
m
map
[
string
]
any
,
key
string
,
v
*
int32
) {
if
v
!=
nil
{
m
[
key
]
=
int64
(
*
v
)
}
}
func
toTagFilters
(
filters
[]v1beta1.
Filter
) []rgttypes.
TagFilter
{
if
len
(
filters
)
==
0
{
return
nil
}
out
:=
make
([]rgttypes.
TagFilter
,
0
,
len
(
filters
))
for
_
,
f
:=
range
filters
{
out
=
append
(
out
, rgttypes.
TagFilter
{
Key
:
aws
.
String
(
f
.
Name
),
Values
:
f
.
Values
})
}
return
out
}
func
toSTSTags
(
tags
map
[
string
]
string
) []ststypes.
Tag
{
if
len
(
tags
)
==
0
{
return
nil
}
out
:=
make
([]ststypes.
Tag
,
0
,
len
(
tags
))
for
k
,
v
:=
range
tags
{
out
=
append
(
out
, ststypes.
Tag
{
Key
:
aws
.
String
(
k
),
Value
:
aws
.
String
(
v
)})
}
return
out
}
// parseSharedCredsINI parses an AWS shared-credentials INI from bytes (no temp
// file), reading the [default] profile. Compatible with provider-upjet-aws.
func
parseSharedCredsINI
(
b
[]
byte
) (
accessKeyID
,
secretAccessKey
,
sessionToken
,
region
string
,
err
error
) {
if
len
(
b
)
==
0
{
return
""
,
""
,
""
,
""
,
errors
.
New
(
"aws-creds secret is empty (expected key
\"
credentials
\"
with a shared-credentials INI)"
)
}
f
,
err
:=
ini
.
Load
(
b
)
if
err
!=
nil
{
return
""
,
""
,
""
,
""
,
errors
.
Wrap
(
err
,
"cannot parse shared-credentials INI"
)
}
s
:=
f
.
Section
(
"default"
)
accessKeyID
=
s
.
Key
(
"aws_access_key_id"
).
String
()
secretAccessKey
=
s
.
Key
(
"aws_secret_access_key"
).
String
()
sessionToken
=
s
.
Key
(
"aws_session_token"
).
String
()
region
=
s
.
Key
(
"region"
).
String
()
if
accessKeyID
==
""
||
secretAccessKey
==
""
{
return
""
,
""
,
""
,
""
,
errors
.
New
(
"shared-credentials INI [default] is missing aws_access_key_id or aws_secret_access_key"
)
}
return
accessKeyID
,
secretAccessKey
,
sessionToken
,
region
,
nil
}
func
iniRegion
(
b
[]
byte
)
string
{
if
len
(
b
)
==
0
{
return
""
}
f
,
err
:=
ini
.
Load
(
b
)
if
err
!=
nil
{
return
""
}
return
f
.
Section
(
"default"
).
Key
(
"region"
).
String
()
}
func
csv
(
s
string
) []
string
{
if
strings
.
TrimSpace
(
s
)
==
""
{
return
nil
}
parts
:=
strings
.
Split
(
s
,
","
)
out
:=
make
([]
string
,
0
,
len
(
parts
))
for
_
,
p
:=
range
parts
{
if
t
:=
strings
.
TrimSpace
(
p
);
t
!=
""
{
out
=
append
(
out
,
t
)
}
}
return
out
}
func
contains
(
values
[]
string
,
v
string
)
bool
{
return
slices
.
Contains
(
values
,
v
)
}
func
errRegionRequired
(
op
string
)
error
{
return
errors
.
Errorf
(
"%s requires a region; set spec.region, regionRef, the credential profile region, or AWS_REGION"
,
op
)
}
Back
|
FazBrowse Home
|
New Git URL