-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c8d6db
commit 6da5560
Showing
41 changed files
with
421 additions
and
19 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
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 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,62 @@ | ||
package pike | ||
|
||
import ( | ||
_ "embed" // required for embed | ||
) | ||
|
||
//go:embed mapping/aws/resource/dataexchange/aws_dataexchange_data_set.json | ||
var awsDataexchangeDataSet []byte | ||
|
||
//go:embed mapping/aws/resource/dataexchange/aws_dataexchange_revision.json | ||
var awsDataexchangeRevision []byte | ||
|
||
//go:embed mapping/aws/resource/devops-guru/aws_devopsguru_event_sources_config.json | ||
var awsDevopsguruEventSourcesConfig []byte | ||
|
||
//go:embed mapping/aws/resource/devops-guru/aws_devopsguru_service_integration.json | ||
var awsDevopsguruServiceIntegration []byte | ||
|
||
//go:embed mapping/aws/resource/drs/aws_drs_replication_configuration_template.json | ||
var awsDrsReplicationConfigurationTemplate []byte | ||
|
||
//go:embed mapping/aws/resource/elastictranscoder/aws_elastictranscoder_pipeline.json | ||
var awsElastictranscoderPipeline []byte | ||
|
||
//go:embed mapping/aws/resource/elastictranscoder/aws_elastictranscoder_preset.json | ||
var awsElastictranscoderPreset []byte | ||
|
||
//go:embed mapping/aws/resource/kinesisanalytics/aws_kinesis_analytics_application.json | ||
var awsKinesisanalyticsApplication []byte | ||
|
||
//go:embed mapping/aws/resource/kinesisanalytics/aws_kinesisanalyticsv2_application_snapshot.json | ||
var awsKinesisanalyticsv2ApplicationSnapshot []byte | ||
|
||
//go:embed mapping/aws/resource/lakeformation/aws_lakeformation_lf_tag.json | ||
var awsLakeformationLfTag []byte | ||
|
||
//go:embed mapping/aws/resource/lakeformation/aws_lakeformation_resource_lf_tags.json | ||
var awsLakeformationResourceLfTags []byte | ||
|
||
//go:embed mapping/aws/resource/lambda/aws_lambda_function_recursion_config.json | ||
var awsLambdaFunctionRecursionConfig []byte | ||
|
||
//go:embed mapping/aws/resource/lambda/aws_lambda_runtime_management_config.json | ||
var awsLambdaRuntimeManagementConfig []byte | ||
|
||
//go:embed mapping/aws/resource/license-manager/aws_licensemanager_association.json | ||
var awsLicensemanagerAssociation []byte | ||
|
||
//go:embed mapping/aws/resource/license-manager/aws_licensemanager_grant_accepter.json | ||
var awsLicensemanagerGrantAccepter []byte | ||
|
||
//go:embed mapping/aws/resource/mediapackagev2/aws_media_packagev2_channel_group.json | ||
var awsMediaPackagev2ChannelGroup []byte | ||
|
||
//go:embed mapping/aws/resource/mediastore/aws_media_store_container.json | ||
var awsMediaStoreContainer []byte | ||
|
||
//go:embed mapping/aws/resource/mediastore/aws_media_store_container_policy.json | ||
var awsMediaStoreContainerPolicy []byte | ||
|
||
//go:embed mapping/aws/resource/medialive/aws_medialive_channel.json | ||
var awsMedialiveChannel []byte |
16 changes: 16 additions & 0 deletions
16
src/mapping/aws/resource/dataexchange/aws_dataexchange_data_set.json
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,16 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"dataexchange:GetDataSet", | ||
"dataexchange:CreateDataSet", | ||
"dataexchange:DeleteDataSet", | ||
"dataexchange:UpdateDataSet" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
16 changes: 16 additions & 0 deletions
16
src/mapping/aws/resource/dataexchange/aws_dataexchange_revision.json
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,16 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"dataexchange:GetRevision", | ||
"dataexchange:CreateRevision", | ||
"dataexchange:DeleteRevision", | ||
"dataexchange:UpdateRevision" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/mapping/aws/resource/devops-guru/aws_devopsguru_event_sources_config.json
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,14 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"devops-guru:DescribeEventSourcesConfig", | ||
"devops-guru:UpdateEventSourcesConfig" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/mapping/aws/resource/devops-guru/aws_devopsguru_service_integration.json
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,14 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"devops-guru:UpdateServiceIntegration", | ||
"devops-guru:DescribeServiceIntegration" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
src/mapping/aws/resource/drs/aws_drs_replication_configuration_template.json
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,20 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"drs:CreateReplicationConfigurationTemplate", | ||
"drs:DescribeReplicationConfigurationTemplates", | ||
"drs:DeleteReplicationConfigurationTemplate", | ||
"drs:UpdateReplicationConfigurationTemplate", | ||
"drs:ListTagsForResource" | ||
], | ||
"attributes": { | ||
"tags": [ | ||
"drs:TagResource", | ||
"drs:UntagResource" | ||
] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
15 changes: 15 additions & 0 deletions
15
src/mapping/aws/resource/elastictranscoder/aws_elastictranscoder_pipeline.json
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,15 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"elastictranscoder:ReadPipeline", | ||
"elastictranscoder:CreatePipeline", | ||
"elastictranscoder:DeletePipeline" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
15 changes: 15 additions & 0 deletions
15
src/mapping/aws/resource/elastictranscoder/aws_elastictranscoder_preset.json
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,15 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"elastictranscoder:ReadPreset", | ||
"elastictranscoder:CreatePreset", | ||
"elastictranscoder:DeletePreset" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
20 changes: 20 additions & 0 deletions
20
src/mapping/aws/resource/kinesisanalytics/aws_kinesis_analytics_application.json
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,20 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"kinesisanalytics:DescribeApplication", | ||
"kinesisanalytics:CreateApplication", | ||
"kinesisanalytics:DeleteApplication", | ||
"kinesisanalytics:UpdateApplication", | ||
"kinesisanalytics:ListTagsForResource" | ||
], | ||
"attributes": { | ||
"tags": [ | ||
"kinesisanalytics:TagResource", | ||
"kinesisanalytics:UntagResource" | ||
] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
15 changes: 15 additions & 0 deletions
15
src/mapping/aws/resource/kinesisanalytics/aws_kinesisanalyticsv2_application_snapshot.json
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,15 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"kinesisanalytics:CreateApplicationSnapshot", | ||
"kinesisanalytics:DeleteApplicationSnapshot", | ||
"kinesisanalytics:DescribeApplicationSnapshot" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
22 changes: 22 additions & 0 deletions
22
src/mapping/aws/resource/lakeformation/aws_lakeformation_lf_tag.json
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,22 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"lakeformation:CreateLFTag", | ||
"lakeformation:DeleteLFTag", | ||
"lakeformation:UpdateLFTag", | ||
"lakeformation:GetLFTag" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [ | ||
"lakeformation:DeleteLFTag" | ||
], | ||
"modify": [ | ||
"lakeformation:UpdateLFTag" | ||
], | ||
"plan": [ | ||
"lakeformation:GetLFTag" | ||
] | ||
} | ||
] |
23 changes: 23 additions & 0 deletions
23
src/mapping/aws/resource/lakeformation/aws_lakeformation_resource_lf_tags.json
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,23 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"lakeformation:CreateLFTag", | ||
"lakeformation:DeleteLFTag", | ||
"lakeformation:GetLFTag", | ||
"lakeformation:UpdateLFTag", | ||
"lakeformation:GetResourceLFTags" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [ | ||
"lakeformation:DeleteLFTag" | ||
], | ||
"modify": [ | ||
"lakeformation:UpdateLFTag" | ||
], | ||
"plan": [ | ||
"lakeformation:GetLFTag" | ||
] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/mapping/aws/resource/lambda/aws_lambda_function_recursion_config.json
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,14 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"lambda:GetFunctionRecursionConfig", | ||
"lambda:PutFunctionRecursionConfig" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/mapping/aws/resource/lambda/aws_lambda_runtime_management_config.json
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,14 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"lambda:GetRuntimeManagementConfig", | ||
"lambda:PutRuntimeManagementConfig" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
13 changes: 13 additions & 0 deletions
13
src/mapping/aws/resource/license-manager/aws_licensemanager_association.json
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,13 @@ | ||
[ | ||
{ | ||
"apply": [ | ||
"license-manager:ListAssociationsForLicenseConfiguration" | ||
], | ||
"attributes": { | ||
"tags": [] | ||
}, | ||
"destroy": [], | ||
"modify": [], | ||
"plan": [] | ||
} | ||
] |
Oops, something went wrong.