diff --git a/.github/workflows/alert-open-prs.yml b/.github/workflows/alert-open-prs.yml
index 5a0178b4..8bf07f8c 100644
--- a/.github/workflows/alert-open-prs.yml
+++ b/.github/workflows/alert-open-prs.yml
@@ -24,7 +24,7 @@ jobs:
fi
- name: Alert Slack on old PRs
if: ${{ steps.old_prs.outputs.pr_links }}
- uses: slackapi/slack-github-action@6c661ce58804a1a20f6dc5fbee7f0381b469e001
+ uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e
env:
SLACK_WEBHOOK_URL: ${{ secrets.ALERT_PRS_SLACK_WEBHOOK_URL }}
with:
diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml
index 426ee7e5..b9a777ea 100644
--- a/.github/workflows/auto-approve.yml
+++ b/.github/workflows/auto-approve.yml
@@ -18,7 +18,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'auto-approve') && github.event.pull_request.draft == false
steps:
- name: Checkout PR
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
diff --git a/.github/workflows/auto-close-community-issues.yml b/.github/workflows/auto-close-community-issues.yml
index 1db1ecc9..6d700441 100644
--- a/.github/workflows/auto-close-community-issues.yml
+++ b/.github/workflows/auto-close-community-issues.yml
@@ -9,11 +9,12 @@ jobs:
autoclose:
runs-on: ubuntu-latest
permissions:
+ contents: read
issues: write
if: github.event.issue.user.login != 'team-tf-cdk' && !contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'), github.event.issue.author_association)
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Auto-close issues by non-collaborators
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/auto-close-community-prs.yml b/.github/workflows/auto-close-community-prs.yml
index e4838290..ec9dfcad 100644
--- a/.github/workflows/auto-close-community-prs.yml
+++ b/.github/workflows/auto-close-community-prs.yml
@@ -2,18 +2,19 @@
name: auto-close-community-prs
on:
- pull_request:
+ pull_request_target:
types:
- opened
jobs:
autoclose:
runs-on: ubuntu-latest
permissions:
+ contents: read
pull-requests: write
if: github.event.pull_request.user.login != 'team-tf-cdk' && !contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'), github.event.pull_request.author_association)
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Auto-close PRs by non-collaborators
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml
index 0a4039d9..f2397e1c 100644
--- a/.github/workflows/automerge.yml
+++ b/.github/workflows/automerge.yml
@@ -18,7 +18,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'automerge') && !contains(github.event.pull_request.labels.*.name, 'do-not-merge') && github.event.pull_request.draft == false
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Turn on automerge for this PR by a trusted user or bot
if: github.event.pull_request.user.login == 'team-tf-cdk' || contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) || github.actor == 'dependabot[bot]'
env:
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4ae05e5f..dba5736e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -15,13 +15,13 @@ jobs:
CI: "true"
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: 0
- name: Setup Node.js
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Install dependencies
@@ -44,7 +44,7 @@ jobs:
working-directory: ./
- name: Upload patch
if: steps.self_mutation.outputs.self_mutation_happened
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
+ uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: .repo.patch
path: .repo.patch
@@ -59,7 +59,7 @@ jobs:
run: cd dist && getfacl -R . > permissions-backup.acl
continue-on-error: true
- name: Upload artifact
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
+ uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: build-artifact
path: dist
@@ -72,13 +72,13 @@ jobs:
if: always() && needs.build.outputs.self_mutation_happened && !(github.event.pull_request.head.repo.full_name != github.repository)
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Download patch
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: .repo.patch
path: ${{ runner.temp }}
@@ -101,11 +101,11 @@ jobs:
permissions: {}
if: "! needs.build.outputs.self_mutation_happened"
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -126,15 +126,15 @@ jobs:
permissions: {}
if: "! needs.build.outputs.self_mutation_happened"
steps:
- - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8
+ - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: temurin
java-version: 11.x
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -155,14 +155,14 @@ jobs:
permissions: {}
if: "! needs.build.outputs.self_mutation_happened"
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
+ - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: 3.x
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -183,14 +183,14 @@ jobs:
permissions: {}
if: "! needs.build.outputs.self_mutation_happened"
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3
with:
dotnet-version: 3.x
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -211,14 +211,14 @@ jobs:
permissions: {}
if: "! needs.build.outputs.self_mutation_happened"
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
with:
go-version: ^1.16.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
diff --git a/.github/workflows/force-release.yml b/.github/workflows/force-release.yml
index 2349b5e0..6f4f7435 100644
--- a/.github/workflows/force-release.yml
+++ b/.github/workflows/force-release.yml
@@ -23,7 +23,7 @@ jobs:
CI: "true"
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
ref: ${{ inputs.sha }}
fetch-depth: 0
@@ -34,7 +34,7 @@ jobs:
git config user.name "github-actions"
git config user.email "github-actions@github.com"
- name: Setup Node.js
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Install dependencies
@@ -45,7 +45,7 @@ jobs:
run: cd dist && getfacl -R . > permissions-backup.acl
continue-on-error: true
- name: Upload artifact
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
+ uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: build-artifact
path: dist
@@ -59,7 +59,7 @@ jobs:
CI: "true"
steps:
- name: Setup Node.js
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Setup Go
@@ -67,7 +67,7 @@ jobs:
with:
go-version: ^1.16.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
diff --git a/.github/workflows/provider-upgrade.yml b/.github/workflows/provider-upgrade.yml
index b2e2dfe4..bc93ef53 100644
--- a/.github/workflows/provider-upgrade.yml
+++ b/.github/workflows/provider-upgrade.yml
@@ -3,7 +3,7 @@
name: provider-upgrade
on:
schedule:
- - cron: 0 3 * * *
+ - cron: 57 3 * * *
workflow_dispatch: {}
jobs:
upgrade:
@@ -17,7 +17,7 @@ jobs:
NODE_OPTIONS: --max-old-space-size=6656
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- run: yarn install
- id: check_version
run: yarn check-if-new-provider-version
@@ -53,7 +53,7 @@ jobs:
run: yarn docgen
- name: Create Pull Request
if: ${{ steps.check_version.outputs.new_version == 'available' }}
- uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc
+ uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
with:
branch: auto/provider-upgrade
commit-message: "${{ steps.release.outputs.type }}: upgrade provider from `${{ steps.current_version.outputs.value }}` to version `${{ steps.new_version.outputs.value }}`"
diff --git a/.github/workflows/pull-request-lint.yml b/.github/workflows/pull-request-lint.yml
index e2540b4f..198f451f 100644
--- a/.github/workflows/pull-request-lint.yml
+++ b/.github/workflows/pull-request-lint.yml
@@ -17,7 +17,7 @@ jobs:
permissions:
pull-requests: write
steps:
- - uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f
+ - uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b59f6eed..ae518f50 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -18,7 +18,7 @@ jobs:
CI: "true"
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
fetch-depth: 0
- name: Set git config safe.directory
@@ -28,7 +28,7 @@ jobs:
git config user.name "github-actions"
git config user.email "github-actions@github.com"
- name: Setup Node.js
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Install dependencies
@@ -51,7 +51,7 @@ jobs:
continue-on-error: true
- name: Upload artifact
if: ${{ steps.git_remote.outputs.latest_commit == github.sha }}
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
+ uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: build-artifact
path: dist
@@ -66,7 +66,7 @@ jobs:
contents: read
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Install
run: yarn install
- name: Check deprecation status
@@ -98,11 +98,11 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -141,11 +141,11 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -188,15 +188,15 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8
+ - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: temurin
java-version: 11.x
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -243,14 +243,14 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
+ - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
with:
python-version: 3.x
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -292,14 +292,14 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3
with:
dotnet-version: 3.x
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
@@ -340,14 +340,14 @@ jobs:
issues: write
if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha
steps:
- - uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
with:
go-version: ^1.16.0
- name: Download build artifacts
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: build-artifact
path: dist
diff --git a/.github/workflows/upgrade-main.yml b/.github/workflows/upgrade-main.yml
index b9406003..5cd3eded 100644
--- a/.github/workflows/upgrade-main.yml
+++ b/.github/workflows/upgrade-main.yml
@@ -4,7 +4,7 @@ name: upgrade-main
on:
workflow_dispatch: {}
schedule:
- - cron: 0 0 * * 1
+ - cron: 57 1 * * 1
jobs:
upgrade:
name: Upgrade
@@ -15,13 +15,13 @@ jobs:
patch_created: ${{ steps.create_patch.outputs.patch_created }}
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
ref: main
- name: Set git config safe.directory
run: git config --global --add safe.directory $(pwd)
- name: Setup Node.js
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
+ uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: 18.12.0
- name: Install dependencies
@@ -36,7 +36,7 @@ jobs:
working-directory: ./
- name: Upload patch
if: steps.create_patch.outputs.patch_created
- uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
+ uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
with:
name: .repo.patch
path: .repo.patch
@@ -50,13 +50,13 @@ jobs:
if: ${{ needs.upgrade.outputs.patch_created }}
steps:
- name: Checkout
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
+ uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
with:
ref: main
- name: Set git config safe.directory
run: git config --global --add safe.directory $(pwd)
- name: Download patch
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427
+ uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
name: .repo.patch
path: ${{ runner.temp }}
@@ -68,7 +68,7 @@ jobs:
git config user.email "github-team-tf-cdk@hashicorp.com"
- name: Create Pull Request
id: create-pr
- uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc
+ uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
with:
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
commit-message: |-
diff --git a/.projen/deps.json b/.projen/deps.json
index f79597dd..cafcdf67 100644
--- a/.projen/deps.json
+++ b/.projen/deps.json
@@ -50,7 +50,7 @@
},
{
"name": "jsii-rosetta",
- "version": "~5.2.0",
+ "version": "~5.3.0",
"type": "build"
},
{
diff --git a/docs/dataLocalFile.go.md b/docs/dataLocalFile.go.md
index 1dea1b63..bc600543 100644
--- a/docs/dataLocalFile.go.md
+++ b/docs/dataLocalFile.go.md
@@ -9,7 +9,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.5.
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
datalocalfile.NewDataLocalFile(scope Construct, id *string, config DataLocalFileConfig) DataLocalFile
```
@@ -276,7 +276,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
datalocalfile.DataLocalFile_IsConstruct(x interface{}) *bool
```
@@ -308,7 +308,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool
```
@@ -322,7 +322,7 @@ datalocalfile.DataLocalFile_IsTerraformElement(x interface{}) *bool
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
datalocalfile.DataLocalFile_IsTerraformDataSource(x interface{}) *bool
```
@@ -336,7 +336,7 @@ datalocalfile.DataLocalFile_IsTerraformDataSource(x interface{}) *bool
##### `GenerateConfigForImport`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
datalocalfile.DataLocalFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
```
@@ -664,7 +664,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalfile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalfile"
&datalocalfile.DataLocalFileConfig {
Connection: interface{},
diff --git a/docs/dataLocalSensitiveFile.go.md b/docs/dataLocalSensitiveFile.go.md
index f718c974..7069ba0b 100644
--- a/docs/dataLocalSensitiveFile.go.md
+++ b/docs/dataLocalSensitiveFile.go.md
@@ -9,7 +9,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.5.
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
datalocalsensitivefile.NewDataLocalSensitiveFile(scope Construct, id *string, config DataLocalSensitiveFileConfig) DataLocalSensitiveFile
```
@@ -276,7 +276,7 @@ func InterpolationForAttribute(terraformAttribute *string) IResolvable
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
datalocalsensitivefile.DataLocalSensitiveFile_IsConstruct(x interface{}) *bool
```
@@ -308,7 +308,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{}) *bool
```
@@ -322,7 +322,7 @@ datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformElement(x interface{})
##### `IsTerraformDataSource`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformDataSource(x interface{}) *bool
```
@@ -336,7 +336,7 @@ datalocalsensitivefile.DataLocalSensitiveFile_IsTerraformDataSource(x interface{
##### `GenerateConfigForImport`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
datalocalsensitivefile.DataLocalSensitiveFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
```
@@ -664,7 +664,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/datalocalsensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/datalocalsensitivefile"
&datalocalsensitivefile.DataLocalSensitiveFileConfig {
Connection: interface{},
diff --git a/docs/file.go.md b/docs/file.go.md
index fa745066..b8728218 100644
--- a/docs/file.go.md
+++ b/docs/file.go.md
@@ -9,7 +9,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.5.
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
file.NewFile(scope Construct, id *string, config FileConfig) File
```
@@ -420,7 +420,7 @@ func ResetSource()
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
file.File_IsConstruct(x interface{}) *bool
```
@@ -452,7 +452,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
file.File_IsTerraformElement(x interface{}) *bool
```
@@ -466,7 +466,7 @@ file.File_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
file.File_IsTerraformResource(x interface{}) *bool
```
@@ -480,7 +480,7 @@ file.File_IsTerraformResource(x interface{}) *bool
##### `GenerateConfigForImport`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
file.File_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
```
@@ -940,7 +940,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/file"
+import "github.com/cdktf/cdktf-provider-local-go/local/file"
&file.FileConfig {
Connection: interface{},
diff --git a/docs/provider.go.md b/docs/provider.go.md
index aee56c00..8fe4ea36 100644
--- a/docs/provider.go.md
+++ b/docs/provider.go.md
@@ -9,7 +9,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.5.
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
provider.NewLocalProvider(scope Construct, id *string, config LocalProviderConfig) LocalProvider
```
@@ -151,7 +151,7 @@ func ResetAlias()
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
provider.LocalProvider_IsConstruct(x interface{}) *bool
```
@@ -183,7 +183,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
provider.LocalProvider_IsTerraformElement(x interface{}) *bool
```
@@ -197,7 +197,7 @@ provider.LocalProvider_IsTerraformElement(x interface{}) *bool
##### `IsTerraformProvider`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
provider.LocalProvider_IsTerraformProvider(x interface{}) *bool
```
@@ -211,7 +211,7 @@ provider.LocalProvider_IsTerraformProvider(x interface{}) *bool
##### `GenerateConfigForImport`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
provider.LocalProvider_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
```
@@ -396,7 +396,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/provider"
+import "github.com/cdktf/cdktf-provider-local-go/local/provider"
&provider.LocalProviderConfig {
Alias: *string,
diff --git a/docs/sensitiveFile.go.md b/docs/sensitiveFile.go.md
index a033430c..7a68c199 100644
--- a/docs/sensitiveFile.go.md
+++ b/docs/sensitiveFile.go.md
@@ -9,7 +9,7 @@ Represents a {@link https://registry.terraform.io/providers/hashicorp/local/2.5.
#### Initializers
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
sensitivefile.NewSensitiveFile(scope Construct, id *string, config SensitiveFileConfig) SensitiveFile
```
@@ -413,7 +413,7 @@ func ResetSource()
##### `IsConstruct`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
sensitivefile.SensitiveFile_IsConstruct(x interface{}) *bool
```
@@ -445,7 +445,7 @@ Any object.
##### `IsTerraformElement`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool
```
@@ -459,7 +459,7 @@ sensitivefile.SensitiveFile_IsTerraformElement(x interface{}) *bool
##### `IsTerraformResource`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
sensitivefile.SensitiveFile_IsTerraformResource(x interface{}) *bool
```
@@ -473,7 +473,7 @@ sensitivefile.SensitiveFile_IsTerraformResource(x interface{}) *bool
##### `GenerateConfigForImport`
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
sensitivefile.SensitiveFile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
```
@@ -911,7 +911,7 @@ func TfResourceType() *string
#### Initializer
```go
-import "github.com/cdktf/cdktf-provider-local-go/local/v10/sensitivefile"
+import "github.com/cdktf/cdktf-provider-local-go/local/sensitivefile"
&sensitivefile.SensitiveFileConfig {
Connection: interface{},
diff --git a/package.json b/package.json
index 03b5e697..83f46254 100644
--- a/package.json
+++ b/package.json
@@ -55,7 +55,7 @@
"jsii-diff": "^1.97.0",
"jsii-docgen": "^10.2.3",
"jsii-pacmak": "^1.97.0",
- "jsii-rosetta": "~5.2.0",
+ "jsii-rosetta": "~5.3.0",
"projen": "^0.81.4",
"semver": "^7.5.3",
"standard-version": "^9",
diff --git a/src/data-local-file/index.ts b/src/data-local-file/index.ts
index 3c5bda59..c9ce4e4a 100644
--- a/src/data-local-file/index.ts
+++ b/src/data-local-file/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// https://registry.terraform.io/providers/hashicorp/local/2.5.1/docs/data-sources/file
// generated from terraform resource schema
diff --git a/src/data-local-sensitive-file/index.ts b/src/data-local-sensitive-file/index.ts
index 71279931..f9a9cead 100644
--- a/src/data-local-sensitive-file/index.ts
+++ b/src/data-local-sensitive-file/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// https://registry.terraform.io/providers/hashicorp/local/2.5.1/docs/data-sources/sensitive_file
// generated from terraform resource schema
diff --git a/src/file/index.ts b/src/file/index.ts
index bd9f5b93..6e9d419e 100644
--- a/src/file/index.ts
+++ b/src/file/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// https://registry.terraform.io/providers/hashicorp/local/2.5.1/docs/resources/file
// generated from terraform resource schema
diff --git a/src/index.ts b/src/index.ts
index d26275f3..8870ea36 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// generated by cdktf get
export * as file from './file';
export * as sensitiveFile from './sensitive-file';
diff --git a/src/lazy-index.ts b/src/lazy-index.ts
index d1e7855c..d932636b 100644
--- a/src/lazy-index.ts
+++ b/src/lazy-index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// generated by cdktf get
Object.defineProperty(exports, 'file', { get: function () { return require('./file'); } });
Object.defineProperty(exports, 'sensitiveFile', { get: function () { return require('./sensitive-file'); } });
diff --git a/src/provider/index.ts b/src/provider/index.ts
index 7a791977..01ec17ef 100644
--- a/src/provider/index.ts
+++ b/src/provider/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// https://registry.terraform.io/providers/hashicorp/local/2.5.1/docs
// generated from terraform resource schema
diff --git a/src/sensitive-file/index.ts b/src/sensitive-file/index.ts
index 328beaef..a19c9f1a 100644
--- a/src/sensitive-file/index.ts
+++ b/src/sensitive-file/index.ts
@@ -1,8 +1,3 @@
-/**
- * Copyright (c) HashiCorp, Inc.
- * SPDX-License-Identifier: MPL-2.0
- */
-
// https://registry.terraform.io/providers/hashicorp/local/2.5.1/docs/resources/sensitive_file
// generated from terraform resource schema
diff --git a/yarn.lock b/yarn.lock
index bbd6abd9..8149ac76 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -209,9 +209,9 @@
jsii-srcmak "0.1.1039"
"@cdktf/provider-project@^0.5.0":
- version "0.5.35"
- resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.5.35.tgz#e3ab40cd353cf34562e01c67e68c9c6af3fcff3b"
- integrity sha512-qUt90c7+kf7caI2YRVZLD0YcMB6M1IKTfh6Hb1tpuNqigzi+X4olI2p03bl2QV+MyuDdFyPOWEHcEohzeOEOhQ==
+ version "0.5.36"
+ resolved "https://registry.yarnpkg.com/@cdktf/provider-project/-/provider-project-0.5.36.tgz#716e28be3455f8a661554c25bbea32c506649199"
+ integrity sha512-E59veBZ++HB69iSGVplcINrIBtutoONTrnBpOyifkJ51mRtfLSPSfqAzPUYkgQDaRoyMYIlEkP/EwMoS9xvoeg==
dependencies:
change-case "^4.1.2"
fs-extra "^10.1.0"
@@ -424,14 +424,6 @@
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
-"@jsii/check-node@1.93.0":
- version "1.93.0"
- resolved "https://registry.yarnpkg.com/@jsii/check-node/-/check-node-1.93.0.tgz#3adcc6012654bb69fb8dc508e757b83ea9cd1708"
- integrity sha512-NLn1Js6wEG2hYjH7gE5Q8s/hPlp3I+KhK/T8ykGdYVod7iODnk/0QVSZsk2iEyuw8NzvvgXUDBWreadUIWSz+g==
- dependencies:
- chalk "^4.1.2"
- semver "^7.5.4"
-
"@jsii/check-node@1.95.0":
version "1.95.0"
resolved "https://registry.yarnpkg.com/@jsii/check-node/-/check-node-1.95.0.tgz#7cfc3c3792f199ab205ea9411223ee9ea1c37658"
@@ -456,7 +448,7 @@
chalk "^4.1.2"
semver "^7.5.4"
-"@jsii/spec@1.97.0", "@jsii/spec@^1.93.0", "@jsii/spec@^1.95.0", "@jsii/spec@^1.96.0", "@jsii/spec@^1.97.0":
+"@jsii/spec@1.97.0", "@jsii/spec@^1.95.0", "@jsii/spec@^1.96.0", "@jsii/spec@^1.97.0":
version "1.97.0"
resolved "https://registry.yarnpkg.com/@jsii/spec/-/spec-1.97.0.tgz#951109ad43bdd7c1ea2de96a74e4fa645bd9a413"
integrity sha512-5YIq1fgOtToH6eUyTNlqAXuZzUzTD6wBukE7m5DpsxHjQlbR7TVP750FcPqH9qCitCwaePPl5IdCZJ/AS0IwEA==
@@ -2904,22 +2896,22 @@ jsii-rosetta@^1.95.0, jsii-rosetta@^1.97.0:
workerpool "^6.5.1"
yargs "^16.2.0"
-jsii-rosetta@~5.2.0:
- version "5.2.11"
- resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.2.11.tgz#7b8ccb229332674c3a4fc570850fb903c6fec62c"
- integrity sha512-MtzCWfXX835kUc6sNnncXzpc5g88MdS+paWj3n97DnYnJQCl3OMxytkG1jjICJE0oxlrbvC44OiJb28+0jEmAg==
+jsii-rosetta@~5.3.0:
+ version "5.3.36"
+ resolved "https://registry.yarnpkg.com/jsii-rosetta/-/jsii-rosetta-5.3.36.tgz#7652a42c60da23016c5d273fe459d5aa79ce5105"
+ integrity sha512-OGDHG4lhKFWrKLYueGcJra6QpRQot4nL6U1QbYo35irVLILP/GomUYkSDPRq8cwFQ4g74TqBvetfMQDffY3AsA==
dependencies:
- "@jsii/check-node" "1.93.0"
- "@jsii/spec" "^1.93.0"
+ "@jsii/check-node" "1.96.0"
+ "@jsii/spec" "^1.96.0"
"@xmldom/xmldom" "^0.8.10"
chalk "^4"
- commonmark "^0.30.0"
+ commonmark "^0.31.0"
fast-glob "^3.3.2"
- jsii "~5.2.5"
- semver "^7.5.4"
+ jsii "~5.3.0"
+ semver "^7.6.0"
semver-intersect "^1.5.0"
stream-json "^1.8.0"
- typescript "~5.2.2"
+ typescript "~5.3"
workerpool "^6.5.1"
yargs "^17.7.2"
@@ -2972,25 +2964,6 @@ jsii@5.3.29:
typescript "~5.3"
yargs "^17.7.2"
-jsii@~5.2.5:
- version "5.2.44"
- resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.2.44.tgz#7a768412f1a28f5f1ff3e92ab5f5b7e7430c3ae1"
- integrity sha512-Z7sTqYzQ5yoJU/ie+svjqSzrOF5rl4pW/bojvCb/7MfJ+SaGqhMUQMxQGTfqmSvauME8JoVYqwMH89x6qreJ8A==
- dependencies:
- "@jsii/check-node" "1.93.0"
- "@jsii/spec" "^1.93.0"
- case "^1.6.3"
- chalk "^4"
- downlevel-dts "^0.11.0"
- fast-deep-equal "^3.1.3"
- log4js "^6.9.1"
- semver "^7.5.4"
- semver-intersect "^1.5.0"
- sort-json "^2.0.1"
- spdx-license-list "^6.8.0"
- typescript "~5.2"
- yargs "^17.7.2"
-
jsii@~5.3.0, jsii@~5.3.18:
version "5.3.34"
resolved "https://registry.yarnpkg.com/jsii/-/jsii-5.3.34.tgz#13033685481feaa91757fcb56144ddc2db6558e4"
@@ -4592,11 +4565,6 @@ typescript@~3.9.10:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
-typescript@~5.2, typescript@~5.2.2:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78"
- integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==
-
typescript@~5.3, typescript@~5.3.0:
version "5.3.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"