Skip to content

Commit

Permalink
Update dependency hashicorp/terraform-provider-aws to v4.67.0 (#39)
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] committed May 15, 2023
1 parent 7abe0b0 commit 13d00aa
Show file tree
Hide file tree
Showing 24 changed files with 322,564 additions and 8 deletions.
76 changes: 76 additions & 0 deletions 4.x/_gen/data/connect_user.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
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='connect_user', url='', help='`connect_user` represents the `aws_connect_user` 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.connect_user.new` injects a new `data_aws_connect_user` 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.connect_user.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.connect_user` using the reference:\n\n $._ref.data_aws_connect_user.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_connect_user.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block.\n - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object.\n - `user_id` (`string`): Set the `user_id` field on the resulting data source block. When `null`, the `user_id` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]),
new(
dataSrcLabel,
instance_id,
name=null,
tags=null,
user_id=null,
_meta={}
):: tf.withData(
type='aws_connect_user',
label=dataSrcLabel,
attrs=self.newAttrs(
instance_id=instance_id,
name=name,
tags=tags,
user_id=user_id
),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`aws.data.connect_user.newAttrs` constructs a new object with attributes and blocks configured for the `connect_user`\nTerraform data source.\n\nUnlike [aws.data.connect_user.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `user_id` (`string`): Set the `user_id` field on the resulting object. When `null`, the `user_id` field will be omitted from 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 `connect_user` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
instance_id,
name=null,
tags=null,
user_id=null
):: std.prune(a={
instance_id: instance_id,
name: name,
tags: tags,
user_id: user_id,
}),
'#withInstanceId':: d.fn(help='`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the instance_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 `instance_id` field.\n', args=[]),
withInstanceId(dataSrcLabel, value): {
data+: {
aws_connect_user+: {
[dataSrcLabel]+: {
instance_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_connect_user+: {
[dataSrcLabel]+: {
name: value,
},
},
},
},
'#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform data source block to set or update the tags field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]),
withTags(dataSrcLabel, value): {
data+: {
aws_connect_user+: {
[dataSrcLabel]+: {
tags: value,
},
},
},
},
'#withUserId':: d.fn(help='`aws.string.withUserId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the user_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 `user_id` field.\n', args=[]),
withUserId(dataSrcLabel, value): {
data+: {
aws_connect_user+: {
[dataSrcLabel]+: {
user_id: value,
},
},
},
},
}
76 changes: 76 additions & 0 deletions 4.x/_gen/data/connect_vocabulary.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
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='connect_vocabulary', url='', help='`connect_vocabulary` represents the `aws_connect_vocabulary` 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.connect_vocabulary.new` injects a new `data_aws_connect_vocabulary` 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.connect_vocabulary.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.connect_vocabulary` using the reference:\n\n $._ref.data_aws_connect_vocabulary.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_connect_vocabulary.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting data source block.\n - `name` (`string`): Set the `name` field on the resulting data source block. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting data source block. When `null`, the `tags` field will be omitted from the resulting object.\n - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting data source block. When `null`, the `vocabulary_id` field will be omitted from the resulting object.\n\n**Returns**:\n- A mixin object that injects the new data source into the root Terraform configuration.\n", args=[]),
new(
dataSrcLabel,
instance_id,
name=null,
tags=null,
vocabulary_id=null,
_meta={}
):: tf.withData(
type='aws_connect_vocabulary',
label=dataSrcLabel,
attrs=self.newAttrs(
instance_id=instance_id,
name=name,
tags=tags,
vocabulary_id=vocabulary_id
),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`aws.data.connect_vocabulary.newAttrs` constructs a new object with attributes and blocks configured for the `connect_vocabulary`\nTerraform data source.\n\nUnlike [aws.data.connect_vocabulary.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 - `instance_id` (`string`): Set the `instance_id` field on the resulting object.\n - `name` (`string`): Set the `name` field on the resulting object. When `null`, the `name` field will be omitted from the resulting object.\n - `tags` (`obj`): Set the `tags` field on the resulting object. When `null`, the `tags` field will be omitted from the resulting object.\n - `vocabulary_id` (`string`): Set the `vocabulary_id` field on the resulting object. When `null`, the `vocabulary_id` field will be omitted from 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 `connect_vocabulary` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
instance_id,
name=null,
tags=null,
vocabulary_id=null
):: std.prune(a={
instance_id: instance_id,
name: name,
tags: tags,
vocabulary_id: vocabulary_id,
}),
'#withInstanceId':: d.fn(help='`aws.string.withInstanceId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the instance_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 `instance_id` field.\n', args=[]),
withInstanceId(dataSrcLabel, value): {
data+: {
aws_connect_vocabulary+: {
[dataSrcLabel]+: {
instance_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_connect_vocabulary+: {
[dataSrcLabel]+: {
name: value,
},
},
},
},
'#withTags':: d.fn(help='`aws.obj.withTags` constructs a mixin object that can be merged into the `obj`\nTerraform data source block to set or update the tags field.\n\n\n\n**Args**:\n - `dataSrcLabel` (`string`): The name label of the block to update.\n - `value` (`obj`): The value to set for the `tags` field.\n', args=[]),
withTags(dataSrcLabel, value): {
data+: {
aws_connect_vocabulary+: {
[dataSrcLabel]+: {
tags: value,
},
},
},
},
'#withVocabularyId':: d.fn(help='`aws.string.withVocabularyId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the vocabulary_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 `vocabulary_id` field.\n', args=[]),
withVocabularyId(dataSrcLabel, value): {
data+: {
aws_connect_vocabulary+: {
[dataSrcLabel]+: {
vocabulary_id: value,
},
},
},
},
}
4 changes: 4 additions & 0 deletions 4.x/_gen/data/main.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
connect_quick_connect: (import 'connect_quick_connect.libsonnet'),
connect_routing_profile: (import 'connect_routing_profile.libsonnet'),
connect_security_profile: (import 'connect_security_profile.libsonnet'),
connect_user: (import 'connect_user.libsonnet'),
connect_user_hierarchy_group: (import 'connect_user_hierarchy_group.libsonnet'),
connect_user_hierarchy_structure: (import 'connect_user_hierarchy_structure.libsonnet'),
connect_vocabulary: (import 'connect_vocabulary.libsonnet'),
controltower_controls: (import 'controltower_controls.libsonnet'),
cur_report_definition: (import 'cur_report_definition.libsonnet'),
customer_gateway: (import 'customer_gateway.libsonnet'),
Expand Down Expand Up @@ -346,6 +348,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
organizations_organizational_unit_child_accounts: (import 'organizations_organizational_unit_child_accounts.libsonnet'),
organizations_organizational_unit_descendant_accounts: (import 'organizations_organizational_unit_descendant_accounts.libsonnet'),
organizations_organizational_units: (import 'organizations_organizational_units.libsonnet'),
organizations_policy: (import 'organizations_policy.libsonnet'),
organizations_resource_tags: (import 'organizations_resource_tags.libsonnet'),
outposts_asset: (import 'outposts_asset.libsonnet'),
outposts_assets: (import 'outposts_assets.libsonnet'),
Expand Down Expand Up @@ -377,6 +380,7 @@ local d = (import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet');
redshift_service_account: (import 'redshift_service_account.libsonnet'),
redshift_subnet_group: (import 'redshift_subnet_group.libsonnet'),
redshiftserverless_credentials: (import 'redshiftserverless_credentials.libsonnet'),
redshiftserverless_namespace: (import 'redshiftserverless_namespace.libsonnet'),
redshiftserverless_workgroup: (import 'redshiftserverless_workgroup.libsonnet'),
region: (import 'region.libsonnet'),
regions: (import 'regions.libsonnet'),
Expand Down
32 changes: 32 additions & 0 deletions 4.x/_gen/data/organizations_policy.libsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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='organizations_policy', url='', help='`organizations_policy` represents the `aws_organizations_policy` 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.organizations_policy.new` injects a new `data_aws_organizations_policy` 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.organizations_policy.new('some_id')\n\nYou can get the reference to the `id` field of the created `aws.data.organizations_policy` using the reference:\n\n $._ref.data_aws_organizations_policy.some_id.get('id')\n\nThis is the same as directly entering `\"${ data_aws_organizations_policy.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 - `policy_id` (`string`): Set the `policy_id` 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,
policy_id,
_meta={}
):: tf.withData(
type='aws_organizations_policy',
label=dataSrcLabel,
attrs=self.newAttrs(policy_id=policy_id),
_meta=_meta
),
'#newAttrs':: d.fn(help='\n`aws.data.organizations_policy.newAttrs` constructs a new object with attributes and blocks configured for the `organizations_policy`\nTerraform data source.\n\nUnlike [aws.data.organizations_policy.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 - `policy_id` (`string`): Set the `policy_id` 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 `organizations_policy` data source into the root Terraform configuration.\n', args=[]),
newAttrs(
policy_id
):: std.prune(a={
policy_id: policy_id,
}),
'#withPolicyId':: d.fn(help='`aws.string.withPolicyId` constructs a mixin object that can be merged into the `string`\nTerraform data source block to set or update the policy_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 `policy_id` field.\n', args=[]),
withPolicyId(dataSrcLabel, value): {
data+: {
aws_organizations_policy+: {
[dataSrcLabel]+: {
policy_id: value,
},
},
},
},
}
Loading

0 comments on commit 13d00aa

Please sign in to comment.