Skip to content

Commit

Permalink
Update dependency hashicorp/terraform-provider-aws to v4.49.0 (#18)
Browse files Browse the repository at this point in the history
Signed-off-by: tflibsonnet-ci <[email protected]>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
  • Loading branch information
tflibsonnet-ci and renovate[bot] authored Jan 6, 2023
1 parent 6ea6bb7 commit 82f4ea1
Show file tree
Hide file tree
Showing 46 changed files with 2,878 additions and 29 deletions.
8 changes: 6 additions & 2 deletions 4.x/_gen/data/kms_secrets.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
secret: secret,
}),
secret:: {
'#new':: d.fn(help='\n`aws.kms_secrets.secret.new` constructs a new object with attributes and blocks configured for the `secret`\nTerraform sub block.\n\n\n\n**Args**:\n - `context` (`obj`): Set the `context` field on the resulting object. When `null`, the `context` field will be omitted from the resulting object.\n - `grant_tokens` (`list`): Set the `grant_tokens` field on the resulting object. When `null`, the `grant_tokens` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `payload` (`string`): Set the `payload` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `secret` sub block.\n', args=[]),
'#new':: d.fn(help='\n`aws.kms_secrets.secret.new` constructs a new object with attributes and blocks configured for the `secret`\nTerraform sub block.\n\n\n\n**Args**:\n - `context` (`obj`): Set the `context` field on the resulting object. When `null`, the `context` field will be omitted from the resulting object.\n - `encryption_algorithm` (`string`): Set the `encryption_algorithm` field on the resulting object. When `null`, the `encryption_algorithm` field will be omitted from the resulting object.\n - `grant_tokens` (`list`): Set the `grant_tokens` field on the resulting object. When `null`, the `grant_tokens` field will be omitted from the resulting object.\n - `key_id` (`string`): Set the `key_id` field on the resulting object. When `null`, the `key_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n - `payload` (`string`): Set the `payload` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `secret` sub block.\n', args=[]),
new(
name,
payload,
context=null,
grant_tokens=null
encryption_algorithm=null,
grant_tokens=null,
key_id=null
):: std.prune(a={
context: context,
encryption_algorithm: encryption_algorithm,
grant_tokens: grant_tokens,
key_id: key_id,
name: name,
payload: payload,
}),
Expand Down
1 change: 1 addition & 0 deletions 4.x/_gen/data/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
s3_bucket_policy: (import 's3_bucket_policy.libsonnet'),
s3_object: (import 's3_object.libsonnet'),
s3_objects: (import 's3_objects.libsonnet'),
s3control_multi_region_access_point: (import 's3control_multi_region_access_point.libsonnet'),
sagemaker_prebuilt_ecr_image: (import 'sagemaker_prebuilt_ecr_image.libsonnet'),
secretsmanager_random_password: (import 'secretsmanager_random_password.libsonnet'),
secretsmanager_secret: (import 'secretsmanager_secret.libsonnet'),
Expand Down
45 changes: 45 additions & 0 deletions 4.x/_gen/data/s3control_multi_region_access_point.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
local tf = (import 'github.com/tf-libsonnet/core/main.libsonnet');
local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
{
'#':: d.pkg(name='s3control_multi_region_access_point', url='', help='`s3control_multi_region_access_point` represents the `aws_s3control_multi_region_access_point` Terraform data source.\n\n\n\nThis package contains functions and utilities for setting up the data source using Jsonnet code.\n'),
'#new':: d.fn(help="\n`aws.data.s3control_multi_region_access_point.new` injects a new `data_aws_s3control_multi_region_access_point` Terraform `data source`\nblock into the root module document.\n\nAdditionally, this inserts a private function into the `_ref` attribute that generates references to attributes of the\nresource. For example, if you added a new instance to the root using:\n\n # arguments omitted for brevity\n aws.data.s3control_multi_region_access_point.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.s3control_multi_region_access_point` using the reference:\n\n $._ref.data_aws_s3control_multi_region_access_point.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_s3control_multi_region_access_point.some_id.id }\"` as the value.\n\nNOTE: if you are chaining multiple resources together in a merge operation, you may not be able to use `super`, `self`,\nor `$` to refer to the root object. Instead, make an explicit outer object using `local`.\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block.\n - `account_id` (`string`): Set the `account_id` field on the resulting data source block. When `null`, the `account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting data source block.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]),
new(
dataSrcLabel,
name,
account_id=null,
_meta={}
):: tf.withData(
type='aws_s3control_multi_region_access_point',
label=dataSrcLabel,
attrs=self.newAttrs(account_id=account_id, name=name),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`aws.data.s3control_multi_region_access_point.newAttrs` constructs a new object with attributes and blocks configured for the `s3control_multi_region_access_point`\nTerraform data source.\n\nUnlike [aws.data.s3control_multi_region_access_point.new](#fn-new), this function will not inject the `data source`\nblock into the root Terraform document. Instead, this must be passed in as the `attrs` argument for the\n[tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) function to build a complete block.\n\nThis is most useful when you need to preprocess the attributes with functions, conditional, or looping logic prior to\ninjecting into a complete block.\n\n**Args**:\n - `account_id` (`string`): Set the `account_id` field on the resulting object. When `null`, the `account_id` field will be omitted from the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object.\n\n**Returns**:\n - An attribute object that can be used with [tf.withData](https://github.com/tf-libsonnet/core/tree/main/docs#fn-withdata) to construct a new `s3control_multi_region_access_point` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
name,
account_id=null
):: std.prune(a={
account_id: account_id,
name: name,
}),
'#withAccountId':: d.fn(help='`aws.string.withAccountId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the account_id field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `account_id` field.\n', args=[]),
withAccountId(dataSrcLabel, value): {
data+: {
aws_s3control_multi_region_access_point+: {
[dataSrcLabel]+: {
account_id: value,
},
},
},
},
'#withName':: d.fn(help='`aws.string.withName` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the name field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`string`): The value to set for the `name` field.\n', args=[]),
withName(dataSrcLabel, value): {
data+: {
aws_s3control_multi_region_access_point+: {
[dataSrcLabel]+: {
name: value,
},
},
},
},
}
6 changes: 6 additions & 0 deletions 4.x/_gen/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,14 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
appsync_function: (import 'resources/appsync_function.libsonnet'),
appsync_graphql_api: (import 'resources/appsync_graphql_api.libsonnet'),
appsync_resolver: (import 'resources/appsync_resolver.libsonnet'),
appsync_type: (import 'resources/appsync_type.libsonnet'),
athena_data_catalog: (import 'resources/athena_data_catalog.libsonnet'),
athena_database: (import 'resources/athena_database.libsonnet'),
athena_named_query: (import 'resources/athena_named_query.libsonnet'),
athena_workgroup: (import 'resources/athena_workgroup.libsonnet'),
auditmanager_account_registration: (import 'resources/auditmanager_account_registration.libsonnet'),
auditmanager_assessment: (import 'resources/auditmanager_assessment.libsonnet'),
auditmanager_assessment_report: (import 'resources/auditmanager_assessment_report.libsonnet'),
auditmanager_control: (import 'resources/auditmanager_control.libsonnet'),
auditmanager_framework: (import 'resources/auditmanager_framework.libsonnet'),
autoscaling_attachment: (import 'resources/autoscaling_attachment.libsonnet'),
Expand Down Expand Up @@ -374,6 +377,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
ec2_client_vpn_route: (import 'resources/ec2_client_vpn_route.libsonnet'),
ec2_fleet: (import 'resources/ec2_fleet.libsonnet'),
ec2_host: (import 'resources/ec2_host.libsonnet'),
ec2_instance_state: (import 'resources/ec2_instance_state.libsonnet'),
ec2_local_gateway_route: (import 'resources/ec2_local_gateway_route.libsonnet'),
ec2_local_gateway_route_table_vpc_association: (import 'resources/ec2_local_gateway_route_table_vpc_association.libsonnet'),
ec2_managed_prefix_list: (import 'resources/ec2_managed_prefix_list.libsonnet'),
Expand Down Expand Up @@ -647,6 +651,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
lex_slot_type: (import 'resources/lex_slot_type.libsonnet'),
licensemanager_association: (import 'resources/licensemanager_association.libsonnet'),
licensemanager_license_configuration: (import 'resources/licensemanager_license_configuration.libsonnet'),
lightsail_bucket: (import 'resources/lightsail_bucket.libsonnet'),
lightsail_certificate: (import 'resources/lightsail_certificate.libsonnet'),
lightsail_container_service: (import 'resources/lightsail_container_service.libsonnet'),
lightsail_container_service_deployment_version: (import 'resources/lightsail_container_service_deployment_version.libsonnet'),
Expand Down Expand Up @@ -1034,6 +1039,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
ssm_service_setting: (import 'resources/ssm_service_setting.libsonnet'),
ssoadmin_account_assignment: (import 'resources/ssoadmin_account_assignment.libsonnet'),
ssoadmin_customer_managed_policy_attachment: (import 'resources/ssoadmin_customer_managed_policy_attachment.libsonnet'),
ssoadmin_instance_access_control_attributes: (import 'resources/ssoadmin_instance_access_control_attributes.libsonnet'),
ssoadmin_managed_policy_attachment: (import 'resources/ssoadmin_managed_policy_attachment.libsonnet'),
ssoadmin_permission_set: (import 'resources/ssoadmin_permission_set.libsonnet'),
ssoadmin_permission_set_inline_policy: (import 'resources/ssoadmin_permission_set_inline_policy.libsonnet'),
Expand Down
8 changes: 7 additions & 1 deletion 4.x/_gen/resources/appflow_connector_profile.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -519,15 +519,21 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
zendesk: zendesk,
}),
redshift:: {
'#new':: d.fn(help='\n`aws.appflow_connector_profile.connector_profile_config.connector_profile_properties.redshift.new` constructs a new object with attributes and blocks configured for the `redshift`\nTerraform sub block.\n\n\n\n**Args**:\n - `bucket_name` (`string`): Set the `bucket_name` field on the resulting object.\n - `bucket_prefix` (`string`): Set the `bucket_prefix` field on the resulting object. When `null`, the `bucket_prefix` field will be omitted from the resulting object.\n - `database_url` (`string`): Set the `database_url` field on the resulting object. When `null`, the `database_url` field will be omitted from the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `redshift` sub block.\n', args=[]),
'#new':: d.fn(help='\n`aws.appflow_connector_profile.connector_profile_config.connector_profile_properties.redshift.new` constructs a new object with attributes and blocks configured for the `redshift`\nTerraform sub block.\n\n\n\n**Args**:\n - `bucket_name` (`string`): Set the `bucket_name` field on the resulting object.\n - `bucket_prefix` (`string`): Set the `bucket_prefix` field on the resulting object. When `null`, the `bucket_prefix` field will be omitted from the resulting object.\n - `cluster_identifier` (`string`): Set the `cluster_identifier` field on the resulting object. When `null`, the `cluster_identifier` field will be omitted from the resulting object.\n - `data_api_role_arn` (`string`): Set the `data_api_role_arn` field on the resulting object. When `null`, the `data_api_role_arn` field will be omitted from the resulting object.\n - `database_name` (`string`): Set the `database_name` field on the resulting object. When `null`, the `database_name` field will be omitted from the resulting object.\n - `database_url` (`string`): Set the `database_url` field on the resulting object. When `null`, the `database_url` field will be omitted from the resulting object.\n - `role_arn` (`string`): Set the `role_arn` field on the resulting object.\n\n**Returns**:\n - An attribute object that represents the `redshift` sub block.\n', args=[]),
new(
bucket_name,
role_arn,
bucket_prefix=null,
cluster_identifier=null,
data_api_role_arn=null,
database_name=null,
database_url=null
):: std.prune(a={
bucket_name: bucket_name,
bucket_prefix: bucket_prefix,
cluster_identifier: cluster_identifier,
data_api_role_arn: data_api_role_arn,
database_name: database_name,
database_url: database_url,
role_arn: role_arn,
}),
Expand Down
Loading

0 comments on commit 82f4ea1

Please sign in to comment.