-
Notifications
You must be signed in to change notification settings - Fork 1
fix:update azurerm version #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 12 commits
2bfdcb0
6ac5dc3
e0cd9c5
90643e1
562e132
6e469c8
2c84383
9b1daa9
06ad1a4
665d708
fbfd4f0
68e5a6c
2478adf
3e5084a
b332a11
5663a91
da3a5e2
2ce6dbd
368d760
1a4a752
66fd2e8
c8cd09a
f3a1c96
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| name: Auto Assign PRs | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, reopened] | ||
|
|
||
| workflow_dispatch: | ||
| jobs: | ||
| assignee: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@master | ||
| secrets: | ||
| GITHUB: ${{ secrets.GITHUB }} | ||
| with: | ||
| assignees: 'clouddrove-ci' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| --- | ||
| name: Auto merge | ||
| on: | ||
| pull_request: | ||
| jobs: | ||
| auto-merge: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@master | ||
| secrets: | ||
| GITHUB: ${{ secrets.GITHUB }} | ||
| with: | ||
| tfcheck: 'complete-example / Check code format' | ||
| ... |
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: tf-checks | ||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| pull_request: | ||
| workflow_dispatch: | ||
| jobs: | ||
| complete-example: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master | ||
| secrets: inherit | ||
| with: | ||
| working_directory: './examples/complete/' | ||
|
|
||
| basic-example: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master | ||
| secrets: inherit | ||
| with: | ||
| working_directory: './examples/basic/' | ||
|
|
||
| mysql-flexible-server-replication-example: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master | ||
| secrets: inherit | ||
| with: | ||
| working_directory: './examples/mysql-flexible-server-replication/' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
|
|
||
| name: tf-lint | ||
| on: | ||
| push: | ||
| branches: [ master ] | ||
| pull_request: | ||
| workflow_dispatch: | ||
| jobs: | ||
| tf-lint: | ||
| uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master | ||
| secrets: | ||
| GITHUB: ${{ secrets.GITHUB }} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -83,7 +83,7 @@ data "azurerm_private_dns_zone" "main" { | |
| ##----------------------------------------------------------------------------- | ||
| module "flexible-mysql" { | ||
| depends_on = [module.resource_group, module.vnet, data.azurerm_resource_group.main] | ||
| source = "clouddrove/flexible-mysql/azure" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add source here
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| source = "../../" | ||
| name = local.name | ||
| environment = local.environment | ||
| main_rg_name = data.azurerm_resource_group.main.name | ||
|
|
@@ -92,7 +92,6 @@ module "flexible-mysql" { | |
| virtual_network_id = module.vnet.vnet_id[0] | ||
| delegated_subnet_id = module.subnet.default_subnet_id[0] | ||
| mysql_version = "8.0.21" | ||
| mysql_server_name = "testmysqlserver" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any specific reason to remove it
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tflint gave error that this variable is not being use other examples. |
||
| zone = "1" | ||
| admin_username = "mysqlusern" | ||
| admin_password = "ba5yatgfgfhdsvvc6A3ns2lu4gqzzc" | ||
|
|
||

Uh oh!
There was an error while loading. Please reload this page.