質問編集履歴
2
コード追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
|
82
82
|
|
83
|
-
```
|
83
|
+
```
|
84
84
|
|
85
85
|
|
86
86
|
|
@@ -95,3 +95,23 @@
|
|
95
95
|
}
|
96
96
|
|
97
97
|
```
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
main.tf
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
```
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
resource "aws_instance" "example" {
|
110
|
+
|
111
|
+
ami = "ami-0f9ae750e8274075b"
|
112
|
+
|
113
|
+
instance_type = "t3.micro"
|
114
|
+
|
115
|
+
}
|
116
|
+
|
117
|
+
```
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -69,3 +69,29 @@
|
|
69
69
|
$ terraform plan
|
70
70
|
|
71
71
|
```
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
##記述ファイル
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
provider.tf
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
```yaml
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
provider "aws" {
|
88
|
+
|
89
|
+
region = "ap-northeast-1"
|
90
|
+
|
91
|
+
access_key = "アクセスキー"
|
92
|
+
|
93
|
+
secret_key = "シークレットキー"
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
```
|