File tree 5 files changed +16
-16
lines changed
5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_providers { iterative = { source = " iterative/iterative" , version = " 1.0.0" } }
3
+ }
4
+ provider "iterative" {}
5
+ resource "iterative_task" "task" {
6
+ cloud = " aws"
7
+
8
+ script = <<- END
9
+ #!/bin/bash
10
+ echo "hello!"
11
+ END
12
+ }
Original file line number Diff line number Diff line change 1
1
terraform {
2
2
required_providers {
3
- aws = {
4
- source = " hashicorp/aws"
5
- version = " ~> 4.3.0"
6
- }
3
+ aws = { source = " hashicorp/aws" , version = " ~> 4.3.0" }
7
4
}
8
5
}
9
6
Original file line number Diff line number Diff line change 1
1
terraform {
2
2
required_providers {
3
- azuread = {
4
- source = " hashicorp/azuread"
5
- version = " ~> 2.18.0"
6
- }
7
- azurerm = {
8
- source = " hashicorp/azurerm"
9
- version = " ~> 2.98.0"
10
- }
3
+ azuread = { source = " hashicorp/azuread" , version = " ~> 2.18.0" }
4
+ azurerm = { source = " hashicorp/azurerm" , version = " ~> 2.98.0" }
11
5
}
12
6
}
13
7
Original file line number Diff line number Diff line change 1
1
terraform {
2
2
required_providers {
3
- google = {
4
- source = " hashicorp/google"
5
- version = " ~> 4.12.0"
6
- }
3
+ google = { source = " hashicorp/google" , version = " ~> 4.12.0" }
7
4
}
8
5
}
9
6
You can’t perform that action at this time.
0 commit comments