mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
parent
ac6fdebd7f
commit
a6e46dee6b
3 changed files with 4 additions and 3 deletions
|
@ -31,7 +31,7 @@
|
|||
{
|
||||
"name": "[variables('Network.Name')]",
|
||||
"type": "Microsoft.Network/virtualNetworks",
|
||||
"apiVersion": "2019-12-01",
|
||||
"apiVersion": "2021-05-01",
|
||||
"tags": "[variables('Network.Tags')]",
|
||||
"properties": {
|
||||
"addressSpace": {
|
||||
|
@ -50,4 +50,4 @@
|
|||
"value": "[reference(resourceId('Microsoft.Network/virtualNetworks',variables('Network.Name')), '2019-12-01', 'Full')]"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"resources": [
|
||||
{
|
||||
"type": "Microsoft.Storage/storageAccounts",
|
||||
"apiVersion": "2019-06-01",
|
||||
"apiVersion": "2021-05-01",
|
||||
"name": "[concat('store', uniquestring(resourceGroup().id))]",
|
||||
"location": "[parameters('location')]",
|
||||
"kind": "StorageV2",
|
||||
|
|
|
@ -2,6 +2,7 @@ resource "aws_instance" "instanceWithVpc" {
|
|||
ami = "some-id"
|
||||
instance_type = "t2.micro"
|
||||
monitoring = true
|
||||
ebs_optimized = true
|
||||
|
||||
vpc_security_group_ids = ["sg-12345678901234567"]
|
||||
subnet_id = "subnet-12345678901234567"
|
||||
|
|
Loading…
Reference in a new issue