1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use Construct;
use FromDeriveInput;
use TokenStream;
use DeriveInput;
/// Used to generate a builder chain for a specified Terraform resource or data source. To
/// describe the resource this macro will use a simplified version of Terraform's HCL syntax.
///
/// # Usage
///
/// ```rust
/// use tf_codegen::resource;
///
/// resource! {
/// &scope,
/// resource "kubernetes_pod" "nginx" {
/// metadata {
/// name = "nginx"
/// }
/// spec {
/// container {
/// image = "nginx"
/// port {
/// container_port = 80
/// }
/// }
/// }
/// }
/// }
/// ```
/// Used to generate an implementation of [`tf_bindgen::Construct`]. Requires to fields to be
/// annotated with `#[id]` and `#[scope]`.
///
/// # Usage
///
/// ```rust
/// #[derive(tf_codegen::Construct)]
/// #[construct(crate = "::tf_codegen")] // optional
/// pub struct Custom {
/// #[construct(scope)]
/// __m_scope: Rc<dyn ::tf_bindgen::Construct>,
/// #[construct(id)]
/// __m_name: String
/// }
/// ```