index.html 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="icon" href="../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.9">
  8. <title>Spec - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../assets/stylesheets/main.85bb2934.min.css">
  10. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  12. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  13. <script>__md_scope=new URL("..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  14. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  15. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  16. </head>
  17. <body dir="ltr">
  18. <script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. </div>
  24. <div data-md-component="announce">
  25. </div>
  26. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  27. <aside class="md-banner md-banner--warning">
  28. <div class="md-banner__inner md-grid md-typeset">
  29. You're not viewing the latest version.
  30. <a href="../..">
  31. <strong>Click here to go to latest.</strong>
  32. </a>
  33. </div>
  34. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  35. </aside>
  36. </div>
  37. <header class="md-header" data-md-component="header">
  38. <nav class="md-header__inner md-grid" aria-label="Header">
  39. <a href=".." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  40. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  41. </a>
  42. <label class="md-header__button md-icon" for="__drawer">
  43. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  44. </label>
  45. <div class="md-header__title" data-md-component="header-title">
  46. <div class="md-header__ellipsis">
  47. <div class="md-header__topic">
  48. <span class="md-ellipsis">
  49. External Secrets Operator
  50. </span>
  51. </div>
  52. <div class="md-header__topic" data-md-component="header-topic">
  53. <span class="md-ellipsis">
  54. Spec
  55. </span>
  56. </div>
  57. </div>
  58. </div>
  59. <label class="md-header__button md-icon" for="__search">
  60. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  61. </label>
  62. <div class="md-search" data-md-component="search" role="dialog">
  63. <label class="md-search__overlay" for="__search"></label>
  64. <div class="md-search__inner" role="search">
  65. <form class="md-search__form" name="search">
  66. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  67. <label class="md-search__icon md-icon" for="__search">
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  69. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  70. </label>
  71. <nav class="md-search__options" aria-label="Search">
  72. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  74. </button>
  75. </nav>
  76. </form>
  77. <div class="md-search__output">
  78. <div class="md-search__scrollwrap" data-md-scrollfix>
  79. <div class="md-search-result" data-md-component="search-result">
  80. <div class="md-search-result__meta">
  81. Initializing search
  82. </div>
  83. <ol class="md-search-result__list" role="presentation"></ol>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="md-header__source">
  90. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  91. <div class="md-source__icon md-icon">
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  93. </div>
  94. <div class="md-source__repository">
  95. External Secrets Operator
  96. </div>
  97. </a>
  98. </div>
  99. </nav>
  100. </header>
  101. <div class="md-container" data-md-component="container">
  102. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  103. <div class="md-grid">
  104. <ul class="md-tabs__list">
  105. <li class="md-tabs__item">
  106. <a href=".." class="md-tabs__link">
  107. Introduction
  108. </a>
  109. </li>
  110. <li class="md-tabs__item">
  111. <a href="../api/components/" class="md-tabs__link">
  112. API
  113. </a>
  114. </li>
  115. <li class="md-tabs__item">
  116. <a href="../guides/introduction/" class="md-tabs__link">
  117. Guides
  118. </a>
  119. </li>
  120. <li class="md-tabs__item">
  121. <a href="../provider/aws-secrets-manager/" class="md-tabs__link">
  122. Provider
  123. </a>
  124. </li>
  125. <li class="md-tabs__item">
  126. <a href="../examples/gitops-using-fluxcd/" class="md-tabs__link">
  127. Examples
  128. </a>
  129. </li>
  130. <li class="md-tabs__item">
  131. <a href="../contributing/devguide/" class="md-tabs__link">
  132. Community
  133. </a>
  134. </li>
  135. </ul>
  136. </div>
  137. </nav>
  138. <main class="md-main" data-md-component="main">
  139. <div class="md-main__inner md-grid">
  140. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  141. <div class="md-sidebar__scrollwrap">
  142. <div class="md-sidebar__inner">
  143. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  144. <label class="md-nav__title" for="__drawer">
  145. <a href=".." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  146. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  147. </a>
  148. External Secrets Operator
  149. </label>
  150. <div class="md-nav__source">
  151. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  152. <div class="md-source__icon md-icon">
  153. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  154. </div>
  155. <div class="md-source__repository">
  156. External Secrets Operator
  157. </div>
  158. </a>
  159. </div>
  160. <ul class="md-nav__list" data-md-scrollfix>
  161. <li class="md-nav__item md-nav__item--nested">
  162. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  163. <div class="md-nav__link md-nav__link--index ">
  164. <a href="..">Introduction</a>
  165. <label for="__nav_1">
  166. <span class="md-nav__icon md-icon"></span>
  167. </label>
  168. </div>
  169. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  170. <label class="md-nav__title" for="__nav_1">
  171. <span class="md-nav__icon md-icon"></span>
  172. Introduction
  173. </label>
  174. <ul class="md-nav__list" data-md-scrollfix>
  175. <li class="md-nav__item">
  176. <a href="../introduction/overview/" class="md-nav__link">
  177. Overview
  178. </a>
  179. </li>
  180. <li class="md-nav__item">
  181. <a href="../introduction/getting-started/" class="md-nav__link">
  182. Getting started
  183. </a>
  184. </li>
  185. <li class="md-nav__item">
  186. <a href="../introduction/faq/" class="md-nav__link">
  187. FAQ
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../introduction/stability-support/" class="md-nav__link">
  192. Stability and Support
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../introduction/deprecation-policy/" class="md-nav__link">
  197. Deprecation Policy
  198. </a>
  199. </li>
  200. </ul>
  201. </nav>
  202. </li>
  203. <li class="md-nav__item md-nav__item--nested">
  204. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  205. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
  206. API
  207. <span class="md-nav__icon md-icon"></span>
  208. </label>
  209. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  210. <label class="md-nav__title" for="__nav_2">
  211. <span class="md-nav__icon md-icon"></span>
  212. API
  213. </label>
  214. <ul class="md-nav__list" data-md-scrollfix>
  215. <li class="md-nav__item">
  216. <a href="../api/components/" class="md-nav__link">
  217. Components
  218. </a>
  219. </li>
  220. <li class="md-nav__item md-nav__item--nested">
  221. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  222. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  223. Core Resources
  224. <span class="md-nav__icon md-icon"></span>
  225. </label>
  226. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  227. <label class="md-nav__title" for="__nav_2_2">
  228. <span class="md-nav__icon md-icon"></span>
  229. Core Resources
  230. </label>
  231. <ul class="md-nav__list" data-md-scrollfix>
  232. <li class="md-nav__item">
  233. <a href="../api/externalsecret/" class="md-nav__link">
  234. ExternalSecret
  235. </a>
  236. </li>
  237. <li class="md-nav__item">
  238. <a href="../api/secretstore/" class="md-nav__link">
  239. SecretStore
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../api/clustersecretstore/" class="md-nav__link">
  244. ClusterSecretStore
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../api/clusterexternalsecret/" class="md-nav__link">
  249. ClusterExternalSecret
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../api/pushsecret/" class="md-nav__link">
  254. PushSecret
  255. </a>
  256. </li>
  257. </ul>
  258. </nav>
  259. </li>
  260. <li class="md-nav__item md-nav__item--nested">
  261. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  262. <div class="md-nav__link md-nav__link--index ">
  263. <a href="../api/generator/">Generators</a>
  264. <label for="__nav_2_3">
  265. <span class="md-nav__icon md-icon"></span>
  266. </label>
  267. </div>
  268. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  269. <label class="md-nav__title" for="__nav_2_3">
  270. <span class="md-nav__icon md-icon"></span>
  271. Generators
  272. </label>
  273. <ul class="md-nav__list" data-md-scrollfix>
  274. <li class="md-nav__item">
  275. <a href="../api/generator/acr/" class="md-nav__link">
  276. Azure Container Registry
  277. </a>
  278. </li>
  279. <li class="md-nav__item">
  280. <a href="../api/generator/ecr/" class="md-nav__link">
  281. AWS Elastic Container Registry
  282. </a>
  283. </li>
  284. <li class="md-nav__item">
  285. <a href="../api/generator/gcr/" class="md-nav__link">
  286. Google Container Registry
  287. </a>
  288. </li>
  289. <li class="md-nav__item">
  290. <a href="../api/generator/vault/" class="md-nav__link">
  291. Vault Dynamic Secret
  292. </a>
  293. </li>
  294. <li class="md-nav__item">
  295. <a href="../api/generator/password/" class="md-nav__link">
  296. Password
  297. </a>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="../api/generator/fake/" class="md-nav__link">
  301. Fake
  302. </a>
  303. </li>
  304. </ul>
  305. </nav>
  306. </li>
  307. <li class="md-nav__item md-nav__item--nested">
  308. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_4" >
  309. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  310. Reference Docs
  311. <span class="md-nav__icon md-icon"></span>
  312. </label>
  313. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
  314. <label class="md-nav__title" for="__nav_2_4">
  315. <span class="md-nav__icon md-icon"></span>
  316. Reference Docs
  317. </label>
  318. <ul class="md-nav__list" data-md-scrollfix>
  319. <li class="md-nav__item">
  320. <a href="../api/spec/" class="md-nav__link">
  321. API specification
  322. </a>
  323. </li>
  324. <li class="md-nav__item">
  325. <a href="../api/controller-options/" class="md-nav__link">
  326. Controller Options
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../api/metrics/" class="md-nav__link">
  331. Metrics
  332. </a>
  333. </li>
  334. </ul>
  335. </nav>
  336. </li>
  337. </ul>
  338. </nav>
  339. </li>
  340. <li class="md-nav__item md-nav__item--nested">
  341. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  342. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  343. Guides
  344. <span class="md-nav__icon md-icon"></span>
  345. </label>
  346. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  347. <label class="md-nav__title" for="__nav_3">
  348. <span class="md-nav__icon md-icon"></span>
  349. Guides
  350. </label>
  351. <ul class="md-nav__list" data-md-scrollfix>
  352. <li class="md-nav__item">
  353. <a href="../guides/introduction/" class="md-nav__link">
  354. Introduction
  355. </a>
  356. </li>
  357. <li class="md-nav__item md-nav__item--nested">
  358. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  359. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  360. External Secrets
  361. <span class="md-nav__icon md-icon"></span>
  362. </label>
  363. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  364. <label class="md-nav__title" for="__nav_3_2">
  365. <span class="md-nav__icon md-icon"></span>
  366. External Secrets
  367. </label>
  368. <ul class="md-nav__list" data-md-scrollfix>
  369. <li class="md-nav__item">
  370. <a href="../guides/all-keys-one-secret/" class="md-nav__link">
  371. Extract structured data
  372. </a>
  373. </li>
  374. <li class="md-nav__item">
  375. <a href="../guides/getallsecrets/" class="md-nav__link">
  376. Find Secrets by Name or Metadata
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../guides/datafrom-rewrite/" class="md-nav__link">
  381. Rewriting Keys
  382. </a>
  383. </li>
  384. <li class="md-nav__item md-nav__item--nested">
  385. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  386. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  387. Advanced Templating
  388. <span class="md-nav__icon md-icon"></span>
  389. </label>
  390. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  391. <label class="md-nav__title" for="__nav_3_2_4">
  392. <span class="md-nav__icon md-icon"></span>
  393. Advanced Templating
  394. </label>
  395. <ul class="md-nav__list" data-md-scrollfix>
  396. <li class="md-nav__item">
  397. <a href="../guides/templating/" class="md-nav__link">
  398. v2
  399. </a>
  400. </li>
  401. <li class="md-nav__item">
  402. <a href="../guides/templating-v1/" class="md-nav__link">
  403. v1
  404. </a>
  405. </li>
  406. </ul>
  407. </nav>
  408. </li>
  409. <li class="md-nav__item">
  410. <a href="../guides/common-k8s-secret-types/" class="md-nav__link">
  411. Kubernetes Secret Types
  412. </a>
  413. </li>
  414. <li class="md-nav__item">
  415. <a href="../guides/ownership-deletion-policy/" class="md-nav__link">
  416. Lifecycle: ownership & deletion
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../guides/decoding-strategy/" class="md-nav__link">
  421. Decoding Strategies
  422. </a>
  423. </li>
  424. <li class="md-nav__item">
  425. <a href="../guides/controller-class/" class="md-nav__link">
  426. Controller Classes
  427. </a>
  428. </li>
  429. </ul>
  430. </nav>
  431. </li>
  432. <li class="md-nav__item">
  433. <a href="../guides/generator/" class="md-nav__link">
  434. Generators
  435. </a>
  436. </li>
  437. <li class="md-nav__item md-nav__item--nested">
  438. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_4" >
  439. <label class="md-nav__link" for="__nav_3_4" id="__nav_3_4_label" tabindex="0">
  440. Operations
  441. <span class="md-nav__icon md-icon"></span>
  442. </label>
  443. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_4_label" aria-expanded="false">
  444. <label class="md-nav__title" for="__nav_3_4">
  445. <span class="md-nav__icon md-icon"></span>
  446. Operations
  447. </label>
  448. <ul class="md-nav__list" data-md-scrollfix>
  449. <li class="md-nav__item">
  450. <a href="../guides/multi-tenancy/" class="md-nav__link">
  451. Multi Tenancy
  452. </a>
  453. </li>
  454. <li class="md-nav__item">
  455. <a href="../guides/security-best-practices/" class="md-nav__link">
  456. Security Best Practices
  457. </a>
  458. </li>
  459. <li class="md-nav__item">
  460. <a href="../guides/threat-model/" class="md-nav__link">
  461. Threat Model
  462. </a>
  463. </li>
  464. <li class="md-nav__item">
  465. <a href="../guides/v1beta1/" class="md-nav__link">
  466. Upgrading to v1beta1
  467. </a>
  468. </li>
  469. <li class="md-nav__item">
  470. <a href="../guides/using-latest-image/" class="md-nav__link">
  471. Using Latest Image
  472. </a>
  473. </li>
  474. <li class="md-nav__item">
  475. <a href="../guides/disable-cluster-features/" class="md-nav__link">
  476. Disable Cluster Features
  477. </a>
  478. </li>
  479. </ul>
  480. </nav>
  481. </li>
  482. </ul>
  483. </nav>
  484. </li>
  485. <li class="md-nav__item md-nav__item--nested">
  486. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  487. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  488. Provider
  489. <span class="md-nav__icon md-icon"></span>
  490. </label>
  491. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  492. <label class="md-nav__title" for="__nav_4">
  493. <span class="md-nav__icon md-icon"></span>
  494. Provider
  495. </label>
  496. <ul class="md-nav__list" data-md-scrollfix>
  497. <li class="md-nav__item">
  498. <a href="../provider/aws-secrets-manager/" class="md-nav__link">
  499. AWS Secrets Manager
  500. </a>
  501. </li>
  502. <li class="md-nav__item">
  503. <a href="../provider/aws-parameter-store/" class="md-nav__link">
  504. AWS Parameter Store
  505. </a>
  506. </li>
  507. <li class="md-nav__item">
  508. <a href="../provider/azure-key-vault/" class="md-nav__link">
  509. Azure Key Vault
  510. </a>
  511. </li>
  512. <li class="md-nav__item">
  513. <a href="../provider/conjur/" class="md-nav__link">
  514. CyberArk Conjur
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../provider/google-secrets-manager/" class="md-nav__link">
  519. Google Cloud Secret Manager
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../provider/hashicorp-vault/" class="md-nav__link">
  524. HashiCorp Vault
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../provider/kubernetes/" class="md-nav__link">
  529. Kubernetes
  530. </a>
  531. </li>
  532. <li class="md-nav__item">
  533. <a href="../provider/ibm-secrets-manager/" class="md-nav__link">
  534. IBM Secrets Manager
  535. </a>
  536. </li>
  537. <li class="md-nav__item">
  538. <a href="../provider/akeyless/" class="md-nav__link">
  539. Akeyless
  540. </a>
  541. </li>
  542. <li class="md-nav__item">
  543. <a href="../provider/yandex-certificate-manager/" class="md-nav__link">
  544. Yandex Certificate Manager
  545. </a>
  546. </li>
  547. <li class="md-nav__item">
  548. <a href="../provider/yandex-lockbox/" class="md-nav__link">
  549. Yandex Lockbox
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../provider/alibaba/" class="md-nav__link">
  554. Alibaba Cloud
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../provider/gitlab-variables/" class="md-nav__link">
  559. GitLab Variables
  560. </a>
  561. </li>
  562. <li class="md-nav__item">
  563. <a href="../provider/oracle-vault/" class="md-nav__link">
  564. Oracle Vault
  565. </a>
  566. </li>
  567. <li class="md-nav__item">
  568. <a href="../provider/1password-automation/" class="md-nav__link">
  569. 1Password Secrets Automation
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../provider/webhook/" class="md-nav__link">
  574. Webhook
  575. </a>
  576. </li>
  577. <li class="md-nav__item">
  578. <a href="../provider/fake/" class="md-nav__link">
  579. Fake
  580. </a>
  581. </li>
  582. <li class="md-nav__item">
  583. <a href="../provider/senhasegura-dsm/" class="md-nav__link">
  584. senhasegura DevOps Secrets Management (DSM)
  585. </a>
  586. </li>
  587. <li class="md-nav__item">
  588. <a href="../provider/doppler/" class="md-nav__link">
  589. Doppler
  590. </a>
  591. </li>
  592. <li class="md-nav__item">
  593. <a href="../provider/keeper-security/" class="md-nav__link">
  594. Keeper Security
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../provider/scaleway/" class="md-nav__link">
  599. Scaleway
  600. </a>
  601. </li>
  602. <li class="md-nav__item">
  603. <a href="../provider/delinea/" class="md-nav__link">
  604. Delinea
  605. </a>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  612. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  613. Examples
  614. <span class="md-nav__icon md-icon"></span>
  615. </label>
  616. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  617. <label class="md-nav__title" for="__nav_5">
  618. <span class="md-nav__icon md-icon"></span>
  619. Examples
  620. </label>
  621. <ul class="md-nav__list" data-md-scrollfix>
  622. <li class="md-nav__item">
  623. <a href="../examples/gitops-using-fluxcd/" class="md-nav__link">
  624. FluxCD
  625. </a>
  626. </li>
  627. <li class="md-nav__item">
  628. <a href="../examples/anchore-engine-credentials/" class="md-nav__link">
  629. Anchore Engine
  630. </a>
  631. </li>
  632. <li class="md-nav__item">
  633. <a href="../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  634. Jenkins
  635. </a>
  636. </li>
  637. <li class="md-nav__item">
  638. <a href="../examples/bitwarden/" class="md-nav__link">
  639. BitWarden
  640. </a>
  641. </li>
  642. </ul>
  643. </nav>
  644. </li>
  645. <li class="md-nav__item md-nav__item--nested">
  646. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  647. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  648. Community
  649. <span class="md-nav__icon md-icon"></span>
  650. </label>
  651. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  652. <label class="md-nav__title" for="__nav_6">
  653. <span class="md-nav__icon md-icon"></span>
  654. Community
  655. </label>
  656. <ul class="md-nav__list" data-md-scrollfix>
  657. <li class="md-nav__item md-nav__item--nested">
  658. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  659. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  660. Contributing
  661. <span class="md-nav__icon md-icon"></span>
  662. </label>
  663. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  664. <label class="md-nav__title" for="__nav_6_1">
  665. <span class="md-nav__icon md-icon"></span>
  666. Contributing
  667. </label>
  668. <ul class="md-nav__list" data-md-scrollfix>
  669. <li class="md-nav__item">
  670. <a href="../contributing/devguide/" class="md-nav__link">
  671. Developer guide
  672. </a>
  673. </li>
  674. <li class="md-nav__item">
  675. <a href="../contributing/process/" class="md-nav__link">
  676. Contributing Process
  677. </a>
  678. </li>
  679. <li class="md-nav__item">
  680. <a href="../contributing/release/" class="md-nav__link">
  681. Release Process
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="../contributing/coc/" class="md-nav__link">
  686. Code of Conduct
  687. </a>
  688. </li>
  689. <li class="md-nav__item">
  690. <a href="../contributing/roadmap/" class="md-nav__link">
  691. Roadmap
  692. </a>
  693. </li>
  694. </ul>
  695. </nav>
  696. </li>
  697. <li class="md-nav__item md-nav__item--nested">
  698. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  699. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  700. External Resources
  701. <span class="md-nav__icon md-icon"></span>
  702. </label>
  703. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  704. <label class="md-nav__title" for="__nav_6_2">
  705. <span class="md-nav__icon md-icon"></span>
  706. External Resources
  707. </label>
  708. <ul class="md-nav__list" data-md-scrollfix>
  709. <li class="md-nav__item">
  710. <a href="../eso-talks/" class="md-nav__link">
  711. Talks
  712. </a>
  713. </li>
  714. <li class="md-nav__item">
  715. <a href="../eso-demos/" class="md-nav__link">
  716. Demos
  717. </a>
  718. </li>
  719. <li class="md-nav__item">
  720. <a href="../eso-blogs/" class="md-nav__link">
  721. Blogs
  722. </a>
  723. </li>
  724. </ul>
  725. </nav>
  726. </li>
  727. </ul>
  728. </nav>
  729. </li>
  730. </ul>
  731. </nav>
  732. </div>
  733. </div>
  734. </div>
  735. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  736. <div class="md-sidebar__scrollwrap">
  737. <div class="md-sidebar__inner">
  738. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  739. </nav>
  740. </div>
  741. </div>
  742. </div>
  743. <div class="md-content" data-md-component="content">
  744. <article class="md-content__inner md-typeset">
  745. <h1>Spec</h1>
  746. <p>Packages:</p>
  747. <ul>
  748. <li>
  749. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  750. </li>
  751. </ul>
  752. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  753. <p>
  754. <p>Package v1beta1 contains resources for external-secrets</p>
  755. </p>
  756. <p>Resource Types:</p>
  757. <ul></ul>
  758. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  759. </h3>
  760. <p>
  761. (<em>Appears on:</em>
  762. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  763. </p>
  764. <p>
  765. <p>AWSAuth tells the controller how to do authentication with aws.
  766. Only one of secretRef or jwt can be specified.
  767. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  768. </p>
  769. <table>
  770. <thead>
  771. <tr>
  772. <th>Field</th>
  773. <th>Description</th>
  774. </tr>
  775. </thead>
  776. <tbody>
  777. <tr>
  778. <td>
  779. <code>secretRef</code></br>
  780. <em>
  781. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  782. AWSAuthSecretRef
  783. </a>
  784. </em>
  785. </td>
  786. <td>
  787. <em>(Optional)</em>
  788. </td>
  789. </tr>
  790. <tr>
  791. <td>
  792. <code>jwt</code></br>
  793. <em>
  794. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  795. AWSJWTAuth
  796. </a>
  797. </em>
  798. </td>
  799. <td>
  800. <em>(Optional)</em>
  801. </td>
  802. </tr>
  803. </tbody>
  804. </table>
  805. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  806. </h3>
  807. <p>
  808. (<em>Appears on:</em>
  809. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  810. </p>
  811. <p>
  812. <p>AWSAuthSecretRef holds secret references for AWS credentials
  813. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  814. </p>
  815. <table>
  816. <thead>
  817. <tr>
  818. <th>Field</th>
  819. <th>Description</th>
  820. </tr>
  821. </thead>
  822. <tbody>
  823. <tr>
  824. <td>
  825. <code>accessKeyIDSecretRef</code></br>
  826. <em>
  827. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  828. </em>
  829. </td>
  830. <td>
  831. <p>The AccessKeyID is used for authentication</p>
  832. </td>
  833. </tr>
  834. <tr>
  835. <td>
  836. <code>secretAccessKeySecretRef</code></br>
  837. <em>
  838. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  839. </em>
  840. </td>
  841. <td>
  842. <p>The SecretAccessKey is used for authentication</p>
  843. </td>
  844. </tr>
  845. <tr>
  846. <td>
  847. <code>sessionTokenSecretRef</code></br>
  848. <em>
  849. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  850. </em>
  851. </td>
  852. <td>
  853. <p>The SessionToken used for authentication
  854. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  855. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  856. </td>
  857. </tr>
  858. </tbody>
  859. </table>
  860. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  861. </h3>
  862. <p>
  863. (<em>Appears on:</em>
  864. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  865. </p>
  866. <p>
  867. <p>Authenticate against AWS using service account tokens.</p>
  868. </p>
  869. <table>
  870. <thead>
  871. <tr>
  872. <th>Field</th>
  873. <th>Description</th>
  874. </tr>
  875. </thead>
  876. <tbody>
  877. <tr>
  878. <td>
  879. <code>serviceAccountRef</code></br>
  880. <em>
  881. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  882. </em>
  883. </td>
  884. <td>
  885. </td>
  886. </tr>
  887. </tbody>
  888. </table>
  889. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  890. </h3>
  891. <p>
  892. (<em>Appears on:</em>
  893. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  894. </p>
  895. <p>
  896. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  897. </p>
  898. <table>
  899. <thead>
  900. <tr>
  901. <th>Field</th>
  902. <th>Description</th>
  903. </tr>
  904. </thead>
  905. <tbody>
  906. <tr>
  907. <td>
  908. <code>service</code></br>
  909. <em>
  910. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  911. AWSServiceType
  912. </a>
  913. </em>
  914. </td>
  915. <td>
  916. <p>Service defines which service should be used to fetch the secrets</p>
  917. </td>
  918. </tr>
  919. <tr>
  920. <td>
  921. <code>auth</code></br>
  922. <em>
  923. <a href="#external-secrets.io/v1beta1.AWSAuth">
  924. AWSAuth
  925. </a>
  926. </em>
  927. </td>
  928. <td>
  929. <em>(Optional)</em>
  930. <p>Auth defines the information necessary to authenticate against AWS
  931. if not set aws sdk will infer credentials from your environment
  932. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  933. </td>
  934. </tr>
  935. <tr>
  936. <td>
  937. <code>role</code></br>
  938. <em>
  939. string
  940. </em>
  941. </td>
  942. <td>
  943. <em>(Optional)</em>
  944. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  945. </td>
  946. </tr>
  947. <tr>
  948. <td>
  949. <code>region</code></br>
  950. <em>
  951. string
  952. </em>
  953. </td>
  954. <td>
  955. <p>AWS Region to be used for the provider</p>
  956. </td>
  957. </tr>
  958. </tbody>
  959. </table>
  960. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  961. (<code>string</code> alias)</p></h3>
  962. <p>
  963. (<em>Appears on:</em>
  964. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  965. </p>
  966. <p>
  967. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  968. </p>
  969. <table>
  970. <thead>
  971. <tr>
  972. <th>Value</th>
  973. <th>Description</th>
  974. </tr>
  975. </thead>
  976. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  977. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  978. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  979. </td>
  980. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  981. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  982. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  983. </td>
  984. </tr></tbody>
  985. </table>
  986. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  987. </h3>
  988. <p>
  989. (<em>Appears on:</em>
  990. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  991. </p>
  992. <p>
  993. </p>
  994. <table>
  995. <thead>
  996. <tr>
  997. <th>Field</th>
  998. <th>Description</th>
  999. </tr>
  1000. </thead>
  1001. <tbody>
  1002. <tr>
  1003. <td>
  1004. <code>secretRef</code></br>
  1005. <em>
  1006. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1007. AkeylessAuthSecretRef
  1008. </a>
  1009. </em>
  1010. </td>
  1011. <td>
  1012. <em>(Optional)</em>
  1013. <p>Reference to a Secret that contains the details
  1014. to authenticate with Akeyless.</p>
  1015. </td>
  1016. </tr>
  1017. <tr>
  1018. <td>
  1019. <code>kubernetesAuth</code></br>
  1020. <em>
  1021. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1022. AkeylessKubernetesAuth
  1023. </a>
  1024. </em>
  1025. </td>
  1026. <td>
  1027. <em>(Optional)</em>
  1028. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1029. token stored in the named Secret resource.</p>
  1030. </td>
  1031. </tr>
  1032. </tbody>
  1033. </table>
  1034. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1035. </h3>
  1036. <p>
  1037. (<em>Appears on:</em>
  1038. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1039. </p>
  1040. <p>
  1041. <p>AkeylessAuthSecretRef
  1042. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1043. </p>
  1044. <table>
  1045. <thead>
  1046. <tr>
  1047. <th>Field</th>
  1048. <th>Description</th>
  1049. </tr>
  1050. </thead>
  1051. <tbody>
  1052. <tr>
  1053. <td>
  1054. <code>accessID</code></br>
  1055. <em>
  1056. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1057. </em>
  1058. </td>
  1059. <td>
  1060. <p>The SecretAccessID is used for authentication</p>
  1061. </td>
  1062. </tr>
  1063. <tr>
  1064. <td>
  1065. <code>accessType</code></br>
  1066. <em>
  1067. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1068. </em>
  1069. </td>
  1070. <td>
  1071. </td>
  1072. </tr>
  1073. <tr>
  1074. <td>
  1075. <code>accessTypeParam</code></br>
  1076. <em>
  1077. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1078. </em>
  1079. </td>
  1080. <td>
  1081. </td>
  1082. </tr>
  1083. </tbody>
  1084. </table>
  1085. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1086. </h3>
  1087. <p>
  1088. (<em>Appears on:</em>
  1089. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1090. </p>
  1091. <p>
  1092. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1093. </p>
  1094. <table>
  1095. <thead>
  1096. <tr>
  1097. <th>Field</th>
  1098. <th>Description</th>
  1099. </tr>
  1100. </thead>
  1101. <tbody>
  1102. <tr>
  1103. <td>
  1104. <code>accessID</code></br>
  1105. <em>
  1106. string
  1107. </em>
  1108. </td>
  1109. <td>
  1110. <p>the Akeyless Kubernetes auth-method access-id</p>
  1111. </td>
  1112. </tr>
  1113. <tr>
  1114. <td>
  1115. <code>k8sConfName</code></br>
  1116. <em>
  1117. string
  1118. </em>
  1119. </td>
  1120. <td>
  1121. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1122. </td>
  1123. </tr>
  1124. <tr>
  1125. <td>
  1126. <code>serviceAccountRef</code></br>
  1127. <em>
  1128. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1129. </em>
  1130. </td>
  1131. <td>
  1132. <em>(Optional)</em>
  1133. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1134. If the service account is specified, the service account secret token JWT will be used
  1135. for authenticating with Akeyless. If the service account selector is not supplied,
  1136. the secretRef will be used instead.</p>
  1137. </td>
  1138. </tr>
  1139. <tr>
  1140. <td>
  1141. <code>secretRef</code></br>
  1142. <em>
  1143. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1144. </em>
  1145. </td>
  1146. <td>
  1147. <em>(Optional)</em>
  1148. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1149. for authenticating with Akeyless. If a name is specified without a key,
  1150. <code>token</code> is the default. If one is not specified, the one bound to
  1151. the controller will be used.</p>
  1152. </td>
  1153. </tr>
  1154. </tbody>
  1155. </table>
  1156. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1157. </h3>
  1158. <p>
  1159. (<em>Appears on:</em>
  1160. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1161. </p>
  1162. <p>
  1163. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1164. </p>
  1165. <table>
  1166. <thead>
  1167. <tr>
  1168. <th>Field</th>
  1169. <th>Description</th>
  1170. </tr>
  1171. </thead>
  1172. <tbody>
  1173. <tr>
  1174. <td>
  1175. <code>akeylessGWApiURL</code></br>
  1176. <em>
  1177. string
  1178. </em>
  1179. </td>
  1180. <td>
  1181. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1182. </td>
  1183. </tr>
  1184. <tr>
  1185. <td>
  1186. <code>authSecretRef</code></br>
  1187. <em>
  1188. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1189. AkeylessAuth
  1190. </a>
  1191. </em>
  1192. </td>
  1193. <td>
  1194. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1195. </td>
  1196. </tr>
  1197. </tbody>
  1198. </table>
  1199. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1200. </h3>
  1201. <p>
  1202. (<em>Appears on:</em>
  1203. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1204. </p>
  1205. <p>
  1206. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1207. </p>
  1208. <table>
  1209. <thead>
  1210. <tr>
  1211. <th>Field</th>
  1212. <th>Description</th>
  1213. </tr>
  1214. </thead>
  1215. <tbody>
  1216. <tr>
  1217. <td>
  1218. <code>secretRef</code></br>
  1219. <em>
  1220. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1221. AlibabaAuthSecretRef
  1222. </a>
  1223. </em>
  1224. </td>
  1225. <td>
  1226. </td>
  1227. </tr>
  1228. </tbody>
  1229. </table>
  1230. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1231. </h3>
  1232. <p>
  1233. (<em>Appears on:</em>
  1234. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1235. </p>
  1236. <p>
  1237. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1238. </p>
  1239. <table>
  1240. <thead>
  1241. <tr>
  1242. <th>Field</th>
  1243. <th>Description</th>
  1244. </tr>
  1245. </thead>
  1246. <tbody>
  1247. <tr>
  1248. <td>
  1249. <code>accessKeyIDSecretRef</code></br>
  1250. <em>
  1251. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1252. </em>
  1253. </td>
  1254. <td>
  1255. <p>The AccessKeyID is used for authentication</p>
  1256. </td>
  1257. </tr>
  1258. <tr>
  1259. <td>
  1260. <code>accessKeySecretSecretRef</code></br>
  1261. <em>
  1262. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1263. </em>
  1264. </td>
  1265. <td>
  1266. <p>The AccessKeySecret is used for authentication</p>
  1267. </td>
  1268. </tr>
  1269. </tbody>
  1270. </table>
  1271. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1272. </h3>
  1273. <p>
  1274. (<em>Appears on:</em>
  1275. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1276. </p>
  1277. <p>
  1278. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1279. </p>
  1280. <table>
  1281. <thead>
  1282. <tr>
  1283. <th>Field</th>
  1284. <th>Description</th>
  1285. </tr>
  1286. </thead>
  1287. <tbody>
  1288. <tr>
  1289. <td>
  1290. <code>auth</code></br>
  1291. <em>
  1292. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1293. AlibabaAuth
  1294. </a>
  1295. </em>
  1296. </td>
  1297. <td>
  1298. </td>
  1299. </tr>
  1300. <tr>
  1301. <td>
  1302. <code>endpoint</code></br>
  1303. <em>
  1304. string
  1305. </em>
  1306. </td>
  1307. <td>
  1308. <em>(Optional)</em>
  1309. </td>
  1310. </tr>
  1311. <tr>
  1312. <td>
  1313. <code>regionID</code></br>
  1314. <em>
  1315. string
  1316. </em>
  1317. </td>
  1318. <td>
  1319. <p>Alibaba Region to be used for the provider</p>
  1320. </td>
  1321. </tr>
  1322. </tbody>
  1323. </table>
  1324. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1325. (<code>string</code> alias)</p></h3>
  1326. <p>
  1327. (<em>Appears on:</em>
  1328. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1329. </p>
  1330. <p>
  1331. <p>AuthType describes how to authenticate to the Azure Keyvault
  1332. Only one of the following auth types may be specified.
  1333. If none of the following auth type is specified, the default one
  1334. is ServicePrincipal.</p>
  1335. </p>
  1336. <table>
  1337. <thead>
  1338. <tr>
  1339. <th>Value</th>
  1340. <th>Description</th>
  1341. </tr>
  1342. </thead>
  1343. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1344. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1345. </td>
  1346. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1347. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1348. </td>
  1349. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1350. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1351. </td>
  1352. </tr></tbody>
  1353. </table>
  1354. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1355. (<code>string</code> alias)</p></h3>
  1356. <p>
  1357. (<em>Appears on:</em>
  1358. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1359. </p>
  1360. <p>
  1361. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1362. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1363. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1364. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1365. </p>
  1366. <table>
  1367. <thead>
  1368. <tr>
  1369. <th>Value</th>
  1370. <th>Description</th>
  1371. </tr>
  1372. </thead>
  1373. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1374. <td></td>
  1375. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1376. <td></td>
  1377. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1378. <td></td>
  1379. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1380. <td></td>
  1381. </tr></tbody>
  1382. </table>
  1383. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1384. </h3>
  1385. <p>
  1386. (<em>Appears on:</em>
  1387. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1388. </p>
  1389. <p>
  1390. <p>Configuration used to authenticate with Azure.</p>
  1391. </p>
  1392. <table>
  1393. <thead>
  1394. <tr>
  1395. <th>Field</th>
  1396. <th>Description</th>
  1397. </tr>
  1398. </thead>
  1399. <tbody>
  1400. <tr>
  1401. <td>
  1402. <code>clientId</code></br>
  1403. <em>
  1404. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <em>(Optional)</em>
  1409. <p>The Azure clientId of the service principle used for authentication.</p>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>
  1414. <code>clientSecret</code></br>
  1415. <em>
  1416. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1417. </em>
  1418. </td>
  1419. <td>
  1420. <em>(Optional)</em>
  1421. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1422. </td>
  1423. </tr>
  1424. </tbody>
  1425. </table>
  1426. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1427. </h3>
  1428. <p>
  1429. (<em>Appears on:</em>
  1430. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1431. </p>
  1432. <p>
  1433. <p>Configures an store to sync secrets using Azure KV.</p>
  1434. </p>
  1435. <table>
  1436. <thead>
  1437. <tr>
  1438. <th>Field</th>
  1439. <th>Description</th>
  1440. </tr>
  1441. </thead>
  1442. <tbody>
  1443. <tr>
  1444. <td>
  1445. <code>authType</code></br>
  1446. <em>
  1447. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1448. AzureAuthType
  1449. </a>
  1450. </em>
  1451. </td>
  1452. <td>
  1453. <em>(Optional)</em>
  1454. <p>Auth type defines how to authenticate to the keyvault service.
  1455. Valid values are:
  1456. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1457. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1458. </td>
  1459. </tr>
  1460. <tr>
  1461. <td>
  1462. <code>vaultUrl</code></br>
  1463. <em>
  1464. string
  1465. </em>
  1466. </td>
  1467. <td>
  1468. <p>Vault Url from which the secrets to be fetched from.</p>
  1469. </td>
  1470. </tr>
  1471. <tr>
  1472. <td>
  1473. <code>tenantId</code></br>
  1474. <em>
  1475. string
  1476. </em>
  1477. </td>
  1478. <td>
  1479. <em>(Optional)</em>
  1480. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1481. </td>
  1482. </tr>
  1483. <tr>
  1484. <td>
  1485. <code>environmentType</code></br>
  1486. <em>
  1487. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1488. AzureEnvironmentType
  1489. </a>
  1490. </em>
  1491. </td>
  1492. <td>
  1493. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1494. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1495. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1496. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1497. </td>
  1498. </tr>
  1499. <tr>
  1500. <td>
  1501. <code>authSecretRef</code></br>
  1502. <em>
  1503. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1504. AzureKVAuth
  1505. </a>
  1506. </em>
  1507. </td>
  1508. <td>
  1509. <em>(Optional)</em>
  1510. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1511. </td>
  1512. </tr>
  1513. <tr>
  1514. <td>
  1515. <code>serviceAccountRef</code></br>
  1516. <em>
  1517. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1518. </em>
  1519. </td>
  1520. <td>
  1521. <em>(Optional)</em>
  1522. <p>ServiceAccountRef specified the service account
  1523. that should be used when authenticating with WorkloadIdentity.</p>
  1524. </td>
  1525. </tr>
  1526. <tr>
  1527. <td>
  1528. <code>identityId</code></br>
  1529. <em>
  1530. string
  1531. </em>
  1532. </td>
  1533. <td>
  1534. <em>(Optional)</em>
  1535. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1536. </td>
  1537. </tr>
  1538. </tbody>
  1539. </table>
  1540. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1541. </h3>
  1542. <p>
  1543. (<em>Appears on:</em>
  1544. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1545. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1546. </p>
  1547. <p>
  1548. <p>Used to provide custom certificate authority (CA) certificates
  1549. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1550. that contains a PEM-encoded certificate.</p>
  1551. </p>
  1552. <table>
  1553. <thead>
  1554. <tr>
  1555. <th>Field</th>
  1556. <th>Description</th>
  1557. </tr>
  1558. </thead>
  1559. <tbody>
  1560. <tr>
  1561. <td>
  1562. <code>type</code></br>
  1563. <em>
  1564. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1565. CAProviderType
  1566. </a>
  1567. </em>
  1568. </td>
  1569. <td>
  1570. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1571. </td>
  1572. </tr>
  1573. <tr>
  1574. <td>
  1575. <code>name</code></br>
  1576. <em>
  1577. string
  1578. </em>
  1579. </td>
  1580. <td>
  1581. <p>The name of the object located at the provider type.</p>
  1582. </td>
  1583. </tr>
  1584. <tr>
  1585. <td>
  1586. <code>key</code></br>
  1587. <em>
  1588. string
  1589. </em>
  1590. </td>
  1591. <td>
  1592. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1593. </td>
  1594. </tr>
  1595. <tr>
  1596. <td>
  1597. <code>namespace</code></br>
  1598. <em>
  1599. string
  1600. </em>
  1601. </td>
  1602. <td>
  1603. <em>(Optional)</em>
  1604. <p>The namespace the Provider type is in.
  1605. Can only be defined when used in a ClusterSecretStore.</p>
  1606. </td>
  1607. </tr>
  1608. </tbody>
  1609. </table>
  1610. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1611. (<code>string</code> alias)</p></h3>
  1612. <p>
  1613. (<em>Appears on:</em>
  1614. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  1615. </p>
  1616. <p>
  1617. </p>
  1618. <table>
  1619. <thead>
  1620. <tr>
  1621. <th>Value</th>
  1622. <th>Description</th>
  1623. </tr>
  1624. </thead>
  1625. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1626. <td></td>
  1627. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1628. <td></td>
  1629. </tr></tbody>
  1630. </table>
  1631. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  1632. </h3>
  1633. <p>
  1634. (<em>Appears on:</em>
  1635. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  1636. </p>
  1637. <p>
  1638. </p>
  1639. <table>
  1640. <thead>
  1641. <tr>
  1642. <th>Field</th>
  1643. <th>Description</th>
  1644. </tr>
  1645. </thead>
  1646. <tbody>
  1647. <tr>
  1648. <td>
  1649. <code>clientCert</code></br>
  1650. <em>
  1651. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1652. </em>
  1653. </td>
  1654. <td>
  1655. </td>
  1656. </tr>
  1657. <tr>
  1658. <td>
  1659. <code>clientKey</code></br>
  1660. <em>
  1661. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1662. </em>
  1663. </td>
  1664. <td>
  1665. </td>
  1666. </tr>
  1667. </tbody>
  1668. </table>
  1669. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  1670. </h3>
  1671. <p>
  1672. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  1673. </p>
  1674. <table>
  1675. <thead>
  1676. <tr>
  1677. <th>Field</th>
  1678. <th>Description</th>
  1679. </tr>
  1680. </thead>
  1681. <tbody>
  1682. <tr>
  1683. <td>
  1684. <code>metadata</code></br>
  1685. <em>
  1686. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1687. Kubernetes meta/v1.ObjectMeta
  1688. </a>
  1689. </em>
  1690. </td>
  1691. <td>
  1692. Refer to the Kubernetes API documentation for the fields of the
  1693. <code>metadata</code> field.
  1694. </td>
  1695. </tr>
  1696. <tr>
  1697. <td>
  1698. <code>spec</code></br>
  1699. <em>
  1700. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  1701. ClusterExternalSecretSpec
  1702. </a>
  1703. </em>
  1704. </td>
  1705. <td>
  1706. <br/>
  1707. <br/>
  1708. <table>
  1709. <tr>
  1710. <td>
  1711. <code>externalSecretSpec</code></br>
  1712. <em>
  1713. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1714. ExternalSecretSpec
  1715. </a>
  1716. </em>
  1717. </td>
  1718. <td>
  1719. <p>The spec for the ExternalSecrets to be created</p>
  1720. </td>
  1721. </tr>
  1722. <tr>
  1723. <td>
  1724. <code>externalSecretName</code></br>
  1725. <em>
  1726. string
  1727. </em>
  1728. </td>
  1729. <td>
  1730. <em>(Optional)</em>
  1731. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1732. </td>
  1733. </tr>
  1734. <tr>
  1735. <td>
  1736. <code>namespaceSelector</code></br>
  1737. <em>
  1738. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1739. Kubernetes meta/v1.LabelSelector
  1740. </a>
  1741. </em>
  1742. </td>
  1743. <td>
  1744. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1745. </td>
  1746. </tr>
  1747. <tr>
  1748. <td>
  1749. <code>refreshTime</code></br>
  1750. <em>
  1751. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1752. Kubernetes meta/v1.Duration
  1753. </a>
  1754. </em>
  1755. </td>
  1756. <td>
  1757. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1758. </td>
  1759. </tr>
  1760. </table>
  1761. </td>
  1762. </tr>
  1763. <tr>
  1764. <td>
  1765. <code>status</code></br>
  1766. <em>
  1767. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  1768. ClusterExternalSecretStatus
  1769. </a>
  1770. </em>
  1771. </td>
  1772. <td>
  1773. </td>
  1774. </tr>
  1775. </tbody>
  1776. </table>
  1777. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  1778. (<code>string</code> alias)</p></h3>
  1779. <p>
  1780. (<em>Appears on:</em>
  1781. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  1782. </p>
  1783. <p>
  1784. </p>
  1785. <table>
  1786. <thead>
  1787. <tr>
  1788. <th>Value</th>
  1789. <th>Description</th>
  1790. </tr>
  1791. </thead>
  1792. <tbody><tr><td><p>&#34;NotReady&#34;</p></td>
  1793. <td></td>
  1794. </tr><tr><td><p>&#34;PartiallyReady&#34;</p></td>
  1795. <td></td>
  1796. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1797. <td></td>
  1798. </tr></tbody>
  1799. </table>
  1800. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  1801. </h3>
  1802. <p>
  1803. (<em>Appears on:</em>
  1804. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1805. </p>
  1806. <p>
  1807. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  1808. </p>
  1809. <table>
  1810. <thead>
  1811. <tr>
  1812. <th>Field</th>
  1813. <th>Description</th>
  1814. </tr>
  1815. </thead>
  1816. <tbody>
  1817. <tr>
  1818. <td>
  1819. <code>namespace</code></br>
  1820. <em>
  1821. string
  1822. </em>
  1823. </td>
  1824. <td>
  1825. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  1826. </td>
  1827. </tr>
  1828. <tr>
  1829. <td>
  1830. <code>reason</code></br>
  1831. <em>
  1832. string
  1833. </em>
  1834. </td>
  1835. <td>
  1836. <em>(Optional)</em>
  1837. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  1838. </td>
  1839. </tr>
  1840. </tbody>
  1841. </table>
  1842. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  1843. </h3>
  1844. <p>
  1845. (<em>Appears on:</em>
  1846. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1847. </p>
  1848. <p>
  1849. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  1850. </p>
  1851. <table>
  1852. <thead>
  1853. <tr>
  1854. <th>Field</th>
  1855. <th>Description</th>
  1856. </tr>
  1857. </thead>
  1858. <tbody>
  1859. <tr>
  1860. <td>
  1861. <code>externalSecretSpec</code></br>
  1862. <em>
  1863. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1864. ExternalSecretSpec
  1865. </a>
  1866. </em>
  1867. </td>
  1868. <td>
  1869. <p>The spec for the ExternalSecrets to be created</p>
  1870. </td>
  1871. </tr>
  1872. <tr>
  1873. <td>
  1874. <code>externalSecretName</code></br>
  1875. <em>
  1876. string
  1877. </em>
  1878. </td>
  1879. <td>
  1880. <em>(Optional)</em>
  1881. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1882. </td>
  1883. </tr>
  1884. <tr>
  1885. <td>
  1886. <code>namespaceSelector</code></br>
  1887. <em>
  1888. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1889. Kubernetes meta/v1.LabelSelector
  1890. </a>
  1891. </em>
  1892. </td>
  1893. <td>
  1894. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1895. </td>
  1896. </tr>
  1897. <tr>
  1898. <td>
  1899. <code>refreshTime</code></br>
  1900. <em>
  1901. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1902. Kubernetes meta/v1.Duration
  1903. </a>
  1904. </em>
  1905. </td>
  1906. <td>
  1907. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1908. </td>
  1909. </tr>
  1910. </tbody>
  1911. </table>
  1912. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  1913. </h3>
  1914. <p>
  1915. (<em>Appears on:</em>
  1916. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1917. </p>
  1918. <p>
  1919. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  1920. </p>
  1921. <table>
  1922. <thead>
  1923. <tr>
  1924. <th>Field</th>
  1925. <th>Description</th>
  1926. </tr>
  1927. </thead>
  1928. <tbody>
  1929. <tr>
  1930. <td>
  1931. <code>failedNamespaces</code></br>
  1932. <em>
  1933. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  1934. []ClusterExternalSecretNamespaceFailure
  1935. </a>
  1936. </em>
  1937. </td>
  1938. <td>
  1939. <em>(Optional)</em>
  1940. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  1941. </td>
  1942. </tr>
  1943. <tr>
  1944. <td>
  1945. <code>provisionedNamespaces</code></br>
  1946. <em>
  1947. []string
  1948. </em>
  1949. </td>
  1950. <td>
  1951. <em>(Optional)</em>
  1952. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  1953. </td>
  1954. </tr>
  1955. <tr>
  1956. <td>
  1957. <code>conditions</code></br>
  1958. <em>
  1959. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  1960. []ClusterExternalSecretStatusCondition
  1961. </a>
  1962. </em>
  1963. </td>
  1964. <td>
  1965. <em>(Optional)</em>
  1966. </td>
  1967. </tr>
  1968. </tbody>
  1969. </table>
  1970. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  1971. </h3>
  1972. <p>
  1973. (<em>Appears on:</em>
  1974. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1975. </p>
  1976. <p>
  1977. </p>
  1978. <table>
  1979. <thead>
  1980. <tr>
  1981. <th>Field</th>
  1982. <th>Description</th>
  1983. </tr>
  1984. </thead>
  1985. <tbody>
  1986. <tr>
  1987. <td>
  1988. <code>type</code></br>
  1989. <em>
  1990. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  1991. ClusterExternalSecretConditionType
  1992. </a>
  1993. </em>
  1994. </td>
  1995. <td>
  1996. </td>
  1997. </tr>
  1998. <tr>
  1999. <td>
  2000. <code>status</code></br>
  2001. <em>
  2002. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2003. Kubernetes core/v1.ConditionStatus
  2004. </a>
  2005. </em>
  2006. </td>
  2007. <td>
  2008. </td>
  2009. </tr>
  2010. <tr>
  2011. <td>
  2012. <code>message</code></br>
  2013. <em>
  2014. string
  2015. </em>
  2016. </td>
  2017. <td>
  2018. <em>(Optional)</em>
  2019. </td>
  2020. </tr>
  2021. </tbody>
  2022. </table>
  2023. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2024. </h3>
  2025. <p>
  2026. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2027. </p>
  2028. <table>
  2029. <thead>
  2030. <tr>
  2031. <th>Field</th>
  2032. <th>Description</th>
  2033. </tr>
  2034. </thead>
  2035. <tbody>
  2036. <tr>
  2037. <td>
  2038. <code>metadata</code></br>
  2039. <em>
  2040. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2041. Kubernetes meta/v1.ObjectMeta
  2042. </a>
  2043. </em>
  2044. </td>
  2045. <td>
  2046. Refer to the Kubernetes API documentation for the fields of the
  2047. <code>metadata</code> field.
  2048. </td>
  2049. </tr>
  2050. <tr>
  2051. <td>
  2052. <code>spec</code></br>
  2053. <em>
  2054. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2055. SecretStoreSpec
  2056. </a>
  2057. </em>
  2058. </td>
  2059. <td>
  2060. <br/>
  2061. <br/>
  2062. <table>
  2063. <tr>
  2064. <td>
  2065. <code>controller</code></br>
  2066. <em>
  2067. string
  2068. </em>
  2069. </td>
  2070. <td>
  2071. <em>(Optional)</em>
  2072. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  2073. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  2074. </td>
  2075. </tr>
  2076. <tr>
  2077. <td>
  2078. <code>provider</code></br>
  2079. <em>
  2080. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2081. SecretStoreProvider
  2082. </a>
  2083. </em>
  2084. </td>
  2085. <td>
  2086. <p>Used to configure the provider. Only one provider may be set</p>
  2087. </td>
  2088. </tr>
  2089. <tr>
  2090. <td>
  2091. <code>retrySettings</code></br>
  2092. <em>
  2093. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2094. SecretStoreRetrySettings
  2095. </a>
  2096. </em>
  2097. </td>
  2098. <td>
  2099. <em>(Optional)</em>
  2100. <p>Used to configure http retries if failed</p>
  2101. </td>
  2102. </tr>
  2103. <tr>
  2104. <td>
  2105. <code>refreshInterval</code></br>
  2106. <em>
  2107. int
  2108. </em>
  2109. </td>
  2110. <td>
  2111. <em>(Optional)</em>
  2112. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2113. </td>
  2114. </tr>
  2115. <tr>
  2116. <td>
  2117. <code>conditions</code></br>
  2118. <em>
  2119. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2120. []ClusterSecretStoreCondition
  2121. </a>
  2122. </em>
  2123. </td>
  2124. <td>
  2125. <em>(Optional)</em>
  2126. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2127. </td>
  2128. </tr>
  2129. </table>
  2130. </td>
  2131. </tr>
  2132. <tr>
  2133. <td>
  2134. <code>status</code></br>
  2135. <em>
  2136. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2137. SecretStoreStatus
  2138. </a>
  2139. </em>
  2140. </td>
  2141. <td>
  2142. </td>
  2143. </tr>
  2144. </tbody>
  2145. </table>
  2146. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2147. </h3>
  2148. <p>
  2149. (<em>Appears on:</em>
  2150. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2151. </p>
  2152. <p>
  2153. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2154. for a ClusterSecretStore instance.</p>
  2155. </p>
  2156. <table>
  2157. <thead>
  2158. <tr>
  2159. <th>Field</th>
  2160. <th>Description</th>
  2161. </tr>
  2162. </thead>
  2163. <tbody>
  2164. <tr>
  2165. <td>
  2166. <code>namespaceSelector</code></br>
  2167. <em>
  2168. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  2169. Kubernetes meta/v1.LabelSelector
  2170. </a>
  2171. </em>
  2172. </td>
  2173. <td>
  2174. <em>(Optional)</em>
  2175. <p>Choose namespace using a labelSelector</p>
  2176. </td>
  2177. </tr>
  2178. <tr>
  2179. <td>
  2180. <code>namespaces</code></br>
  2181. <em>
  2182. []string
  2183. </em>
  2184. </td>
  2185. <td>
  2186. <p>Choose namespaces by name</p>
  2187. </td>
  2188. </tr>
  2189. </tbody>
  2190. </table>
  2191. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  2192. </h3>
  2193. <p>
  2194. (<em>Appears on:</em>
  2195. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  2196. </p>
  2197. <p>
  2198. </p>
  2199. <table>
  2200. <thead>
  2201. <tr>
  2202. <th>Field</th>
  2203. <th>Description</th>
  2204. </tr>
  2205. </thead>
  2206. <tbody>
  2207. <tr>
  2208. <td>
  2209. <code>secretRef</code></br>
  2210. <em>
  2211. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  2212. DopplerAuthSecretRef
  2213. </a>
  2214. </em>
  2215. </td>
  2216. <td>
  2217. </td>
  2218. </tr>
  2219. </tbody>
  2220. </table>
  2221. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  2222. </h3>
  2223. <p>
  2224. (<em>Appears on:</em>
  2225. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  2226. </p>
  2227. <p>
  2228. </p>
  2229. <table>
  2230. <thead>
  2231. <tr>
  2232. <th>Field</th>
  2233. <th>Description</th>
  2234. </tr>
  2235. </thead>
  2236. <tbody>
  2237. <tr>
  2238. <td>
  2239. <code>dopplerToken</code></br>
  2240. <em>
  2241. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2242. </em>
  2243. </td>
  2244. <td>
  2245. <p>The DopplerToken is used for authentication.
  2246. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  2247. The Key attribute defaults to dopplerToken if not specified.</p>
  2248. </td>
  2249. </tr>
  2250. </tbody>
  2251. </table>
  2252. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  2253. </h3>
  2254. <p>
  2255. (<em>Appears on:</em>
  2256. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2257. </p>
  2258. <p>
  2259. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  2260. Project and Config are required if not using a Service Token.</p>
  2261. </p>
  2262. <table>
  2263. <thead>
  2264. <tr>
  2265. <th>Field</th>
  2266. <th>Description</th>
  2267. </tr>
  2268. </thead>
  2269. <tbody>
  2270. <tr>
  2271. <td>
  2272. <code>auth</code></br>
  2273. <em>
  2274. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  2275. DopplerAuth
  2276. </a>
  2277. </em>
  2278. </td>
  2279. <td>
  2280. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td>
  2285. <code>project</code></br>
  2286. <em>
  2287. string
  2288. </em>
  2289. </td>
  2290. <td>
  2291. <em>(Optional)</em>
  2292. <p>Doppler project (required if not using a Service Token)</p>
  2293. </td>
  2294. </tr>
  2295. <tr>
  2296. <td>
  2297. <code>config</code></br>
  2298. <em>
  2299. string
  2300. </em>
  2301. </td>
  2302. <td>
  2303. <em>(Optional)</em>
  2304. <p>Doppler config (required if not using a Service Token)</p>
  2305. </td>
  2306. </tr>
  2307. <tr>
  2308. <td>
  2309. <code>nameTransformer</code></br>
  2310. <em>
  2311. string
  2312. </em>
  2313. </td>
  2314. <td>
  2315. <em>(Optional)</em>
  2316. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td>
  2321. <code>format</code></br>
  2322. <em>
  2323. string
  2324. </em>
  2325. </td>
  2326. <td>
  2327. <em>(Optional)</em>
  2328. <p>Format enables the downloading of secrets as a file (string)</p>
  2329. </td>
  2330. </tr>
  2331. </tbody>
  2332. </table>
  2333. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  2334. </h3>
  2335. <p>
  2336. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  2337. </p>
  2338. <table>
  2339. <thead>
  2340. <tr>
  2341. <th>Field</th>
  2342. <th>Description</th>
  2343. </tr>
  2344. </thead>
  2345. <tbody>
  2346. <tr>
  2347. <td>
  2348. <code>metadata</code></br>
  2349. <em>
  2350. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2351. Kubernetes meta/v1.ObjectMeta
  2352. </a>
  2353. </em>
  2354. </td>
  2355. <td>
  2356. Refer to the Kubernetes API documentation for the fields of the
  2357. <code>metadata</code> field.
  2358. </td>
  2359. </tr>
  2360. <tr>
  2361. <td>
  2362. <code>spec</code></br>
  2363. <em>
  2364. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2365. ExternalSecretSpec
  2366. </a>
  2367. </em>
  2368. </td>
  2369. <td>
  2370. <br/>
  2371. <br/>
  2372. <table>
  2373. <tr>
  2374. <td>
  2375. <code>secretStoreRef</code></br>
  2376. <em>
  2377. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2378. SecretStoreRef
  2379. </a>
  2380. </em>
  2381. </td>
  2382. <td>
  2383. <em>(Optional)</em>
  2384. </td>
  2385. </tr>
  2386. <tr>
  2387. <td>
  2388. <code>target</code></br>
  2389. <em>
  2390. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2391. ExternalSecretTarget
  2392. </a>
  2393. </em>
  2394. </td>
  2395. <td>
  2396. <em>(Optional)</em>
  2397. </td>
  2398. </tr>
  2399. <tr>
  2400. <td>
  2401. <code>refreshInterval</code></br>
  2402. <em>
  2403. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2404. Kubernetes meta/v1.Duration
  2405. </a>
  2406. </em>
  2407. </td>
  2408. <td>
  2409. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2410. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  2411. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2412. </td>
  2413. </tr>
  2414. <tr>
  2415. <td>
  2416. <code>data</code></br>
  2417. <em>
  2418. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2419. []ExternalSecretData
  2420. </a>
  2421. </em>
  2422. </td>
  2423. <td>
  2424. <em>(Optional)</em>
  2425. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2426. </td>
  2427. </tr>
  2428. <tr>
  2429. <td>
  2430. <code>dataFrom</code></br>
  2431. <em>
  2432. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2433. []ExternalSecretDataFromRemoteRef
  2434. </a>
  2435. </em>
  2436. </td>
  2437. <td>
  2438. <em>(Optional)</em>
  2439. <p>DataFrom is used to fetch all properties from a specific Provider data
  2440. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2441. </td>
  2442. </tr>
  2443. </table>
  2444. </td>
  2445. </tr>
  2446. <tr>
  2447. <td>
  2448. <code>status</code></br>
  2449. <em>
  2450. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  2451. ExternalSecretStatus
  2452. </a>
  2453. </em>
  2454. </td>
  2455. <td>
  2456. </td>
  2457. </tr>
  2458. </tbody>
  2459. </table>
  2460. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  2461. (<code>string</code> alias)</p></h3>
  2462. <p>
  2463. (<em>Appears on:</em>
  2464. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  2465. </p>
  2466. <p>
  2467. </p>
  2468. <table>
  2469. <thead>
  2470. <tr>
  2471. <th>Value</th>
  2472. <th>Description</th>
  2473. </tr>
  2474. </thead>
  2475. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  2476. <td></td>
  2477. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  2478. <td></td>
  2479. </tr></tbody>
  2480. </table>
  2481. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  2482. (<code>string</code> alias)</p></h3>
  2483. <p>
  2484. (<em>Appears on:</em>
  2485. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2486. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2487. </p>
  2488. <p>
  2489. </p>
  2490. <table>
  2491. <thead>
  2492. <tr>
  2493. <th>Value</th>
  2494. <th>Description</th>
  2495. </tr>
  2496. </thead>
  2497. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  2498. <td></td>
  2499. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  2500. <td></td>
  2501. </tr></tbody>
  2502. </table>
  2503. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  2504. (<code>string</code> alias)</p></h3>
  2505. <p>
  2506. (<em>Appears on:</em>
  2507. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2508. </p>
  2509. <p>
  2510. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  2511. </p>
  2512. <table>
  2513. <thead>
  2514. <tr>
  2515. <th>Value</th>
  2516. <th>Description</th>
  2517. </tr>
  2518. </thead>
  2519. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  2520. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  2521. </td>
  2522. </tr><tr><td><p>&#34;None&#34;</p></td>
  2523. <td><p>None does not create a Secret (future use with injector).</p>
  2524. </td>
  2525. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  2526. <td><p>Orphan creates the Secret and does not set the ownerReference.
  2527. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  2528. </td>
  2529. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  2530. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  2531. </td>
  2532. </tr></tbody>
  2533. </table>
  2534. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  2535. </h3>
  2536. <p>
  2537. (<em>Appears on:</em>
  2538. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2539. </p>
  2540. <p>
  2541. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  2542. </p>
  2543. <table>
  2544. <thead>
  2545. <tr>
  2546. <th>Field</th>
  2547. <th>Description</th>
  2548. </tr>
  2549. </thead>
  2550. <tbody>
  2551. <tr>
  2552. <td>
  2553. <code>secretKey</code></br>
  2554. <em>
  2555. string
  2556. </em>
  2557. </td>
  2558. <td>
  2559. <p>SecretKey defines the key in which the controller stores
  2560. the value. This is the key in the Kind=Secret</p>
  2561. </td>
  2562. </tr>
  2563. <tr>
  2564. <td>
  2565. <code>remoteRef</code></br>
  2566. <em>
  2567. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2568. ExternalSecretDataRemoteRef
  2569. </a>
  2570. </em>
  2571. </td>
  2572. <td>
  2573. <p>RemoteRef points to the remote secret and defines
  2574. which secret (version/property/..) to fetch.</p>
  2575. </td>
  2576. </tr>
  2577. <tr>
  2578. <td>
  2579. <code>sourceRef</code></br>
  2580. <em>
  2581. <a href="#external-secrets.io/v1beta1.SourceRef">
  2582. SourceRef
  2583. </a>
  2584. </em>
  2585. </td>
  2586. <td>
  2587. <p>SourceRef allows you to override the source
  2588. from which the value will pulled from.</p>
  2589. </td>
  2590. </tr>
  2591. </tbody>
  2592. </table>
  2593. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  2594. </h3>
  2595. <p>
  2596. (<em>Appears on:</em>
  2597. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2598. </p>
  2599. <p>
  2600. </p>
  2601. <table>
  2602. <thead>
  2603. <tr>
  2604. <th>Field</th>
  2605. <th>Description</th>
  2606. </tr>
  2607. </thead>
  2608. <tbody>
  2609. <tr>
  2610. <td>
  2611. <code>extract</code></br>
  2612. <em>
  2613. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2614. ExternalSecretDataRemoteRef
  2615. </a>
  2616. </em>
  2617. </td>
  2618. <td>
  2619. <em>(Optional)</em>
  2620. <p>Used to extract multiple key/value pairs from one secret
  2621. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2622. </td>
  2623. </tr>
  2624. <tr>
  2625. <td>
  2626. <code>find</code></br>
  2627. <em>
  2628. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  2629. ExternalSecretFind
  2630. </a>
  2631. </em>
  2632. </td>
  2633. <td>
  2634. <em>(Optional)</em>
  2635. <p>Used to find secrets based on tags or regular expressions
  2636. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2637. </td>
  2638. </tr>
  2639. <tr>
  2640. <td>
  2641. <code>rewrite</code></br>
  2642. <em>
  2643. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  2644. []ExternalSecretRewrite
  2645. </a>
  2646. </em>
  2647. </td>
  2648. <td>
  2649. <em>(Optional)</em>
  2650. <p>Used to rewrite secret Keys after getting them from the secret Provider
  2651. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  2652. </td>
  2653. </tr>
  2654. <tr>
  2655. <td>
  2656. <code>sourceRef</code></br>
  2657. <em>
  2658. <a href="#external-secrets.io/v1beta1.SourceRef">
  2659. SourceRef
  2660. </a>
  2661. </em>
  2662. </td>
  2663. <td>
  2664. <p>SourceRef points to a store or generator
  2665. which contains secret values ready to use.
  2666. Use this in combination with Extract or Find pull values out of
  2667. a specific SecretStore.
  2668. When sourceRef points to a generator Extract or Find is not supported.
  2669. The generator returns a static map of values</p>
  2670. </td>
  2671. </tr>
  2672. </tbody>
  2673. </table>
  2674. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  2675. </h3>
  2676. <p>
  2677. (<em>Appears on:</em>
  2678. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  2679. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2680. </p>
  2681. <p>
  2682. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  2683. </p>
  2684. <table>
  2685. <thead>
  2686. <tr>
  2687. <th>Field</th>
  2688. <th>Description</th>
  2689. </tr>
  2690. </thead>
  2691. <tbody>
  2692. <tr>
  2693. <td>
  2694. <code>key</code></br>
  2695. <em>
  2696. string
  2697. </em>
  2698. </td>
  2699. <td>
  2700. <p>Key is the key used in the Provider, mandatory</p>
  2701. </td>
  2702. </tr>
  2703. <tr>
  2704. <td>
  2705. <code>metadataPolicy</code></br>
  2706. <em>
  2707. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  2708. ExternalSecretMetadataPolicy
  2709. </a>
  2710. </em>
  2711. </td>
  2712. <td>
  2713. <em>(Optional)</em>
  2714. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  2715. </td>
  2716. </tr>
  2717. <tr>
  2718. <td>
  2719. <code>property</code></br>
  2720. <em>
  2721. string
  2722. </em>
  2723. </td>
  2724. <td>
  2725. <em>(Optional)</em>
  2726. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  2727. </td>
  2728. </tr>
  2729. <tr>
  2730. <td>
  2731. <code>version</code></br>
  2732. <em>
  2733. string
  2734. </em>
  2735. </td>
  2736. <td>
  2737. <em>(Optional)</em>
  2738. <p>Used to select a specific version of the Provider value, if supported</p>
  2739. </td>
  2740. </tr>
  2741. <tr>
  2742. <td>
  2743. <code>conversionStrategy</code></br>
  2744. <em>
  2745. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2746. ExternalSecretConversionStrategy
  2747. </a>
  2748. </em>
  2749. </td>
  2750. <td>
  2751. <em>(Optional)</em>
  2752. <p>Used to define a conversion Strategy</p>
  2753. </td>
  2754. </tr>
  2755. <tr>
  2756. <td>
  2757. <code>decodingStrategy</code></br>
  2758. <em>
  2759. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2760. ExternalSecretDecodingStrategy
  2761. </a>
  2762. </em>
  2763. </td>
  2764. <td>
  2765. <em>(Optional)</em>
  2766. <p>Used to define a decoding Strategy</p>
  2767. </td>
  2768. </tr>
  2769. </tbody>
  2770. </table>
  2771. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  2772. (<code>string</code> alias)</p></h3>
  2773. <p>
  2774. (<em>Appears on:</em>
  2775. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2776. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2777. </p>
  2778. <p>
  2779. </p>
  2780. <table>
  2781. <thead>
  2782. <tr>
  2783. <th>Value</th>
  2784. <th>Description</th>
  2785. </tr>
  2786. </thead>
  2787. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  2788. <td></td>
  2789. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  2790. <td></td>
  2791. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  2792. <td></td>
  2793. </tr><tr><td><p>&#34;None&#34;</p></td>
  2794. <td></td>
  2795. </tr></tbody>
  2796. </table>
  2797. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  2798. (<code>string</code> alias)</p></h3>
  2799. <p>
  2800. (<em>Appears on:</em>
  2801. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2802. </p>
  2803. <p>
  2804. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  2805. </p>
  2806. <table>
  2807. <thead>
  2808. <tr>
  2809. <th>Value</th>
  2810. <th>Description</th>
  2811. </tr>
  2812. </thead>
  2813. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  2814. <td><p>Delete deletes the secret if all provider secrets are deleted.
  2815. If a secret gets deleted on the provider side and is not accessible
  2816. anymore this is not considered an error and the ExternalSecret
  2817. does not go into SecretSyncedError status.</p>
  2818. </td>
  2819. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  2820. <td><p>Merge removes keys in the secret, but not the secret itself.
  2821. If a secret gets deleted on the provider side and is not accessible
  2822. anymore this is not considered an error and the ExternalSecret
  2823. does not go into SecretSyncedError status.</p>
  2824. </td>
  2825. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  2826. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  2827. If a provider secret does not exist the ExternalSecret gets into the
  2828. SecretSyncedError status.</p>
  2829. </td>
  2830. </tr></tbody>
  2831. </table>
  2832. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  2833. </h3>
  2834. <p>
  2835. (<em>Appears on:</em>
  2836. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2837. </p>
  2838. <p>
  2839. </p>
  2840. <table>
  2841. <thead>
  2842. <tr>
  2843. <th>Field</th>
  2844. <th>Description</th>
  2845. </tr>
  2846. </thead>
  2847. <tbody>
  2848. <tr>
  2849. <td>
  2850. <code>path</code></br>
  2851. <em>
  2852. string
  2853. </em>
  2854. </td>
  2855. <td>
  2856. <em>(Optional)</em>
  2857. <p>A root path to start the find operations.</p>
  2858. </td>
  2859. </tr>
  2860. <tr>
  2861. <td>
  2862. <code>name</code></br>
  2863. <em>
  2864. <a href="#external-secrets.io/v1beta1.FindName">
  2865. FindName
  2866. </a>
  2867. </em>
  2868. </td>
  2869. <td>
  2870. <em>(Optional)</em>
  2871. <p>Finds secrets based on the name.</p>
  2872. </td>
  2873. </tr>
  2874. <tr>
  2875. <td>
  2876. <code>tags</code></br>
  2877. <em>
  2878. map[string]string
  2879. </em>
  2880. </td>
  2881. <td>
  2882. <em>(Optional)</em>
  2883. <p>Find secrets based on tags.</p>
  2884. </td>
  2885. </tr>
  2886. <tr>
  2887. <td>
  2888. <code>conversionStrategy</code></br>
  2889. <em>
  2890. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2891. ExternalSecretConversionStrategy
  2892. </a>
  2893. </em>
  2894. </td>
  2895. <td>
  2896. <em>(Optional)</em>
  2897. <p>Used to define a conversion Strategy</p>
  2898. </td>
  2899. </tr>
  2900. <tr>
  2901. <td>
  2902. <code>decodingStrategy</code></br>
  2903. <em>
  2904. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2905. ExternalSecretDecodingStrategy
  2906. </a>
  2907. </em>
  2908. </td>
  2909. <td>
  2910. <em>(Optional)</em>
  2911. <p>Used to define a decoding Strategy</p>
  2912. </td>
  2913. </tr>
  2914. </tbody>
  2915. </table>
  2916. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  2917. (<code>string</code> alias)</p></h3>
  2918. <p>
  2919. (<em>Appears on:</em>
  2920. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  2921. </p>
  2922. <p>
  2923. </p>
  2924. <table>
  2925. <thead>
  2926. <tr>
  2927. <th>Value</th>
  2928. <th>Description</th>
  2929. </tr>
  2930. </thead>
  2931. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  2932. <td></td>
  2933. </tr><tr><td><p>&#34;None&#34;</p></td>
  2934. <td></td>
  2935. </tr></tbody>
  2936. </table>
  2937. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  2938. </h3>
  2939. <p>
  2940. (<em>Appears on:</em>
  2941. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2942. </p>
  2943. <p>
  2944. </p>
  2945. <table>
  2946. <thead>
  2947. <tr>
  2948. <th>Field</th>
  2949. <th>Description</th>
  2950. </tr>
  2951. </thead>
  2952. <tbody>
  2953. <tr>
  2954. <td>
  2955. <code>regexp</code></br>
  2956. <em>
  2957. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  2958. ExternalSecretRewriteRegexp
  2959. </a>
  2960. </em>
  2961. </td>
  2962. <td>
  2963. <em>(Optional)</em>
  2964. <p>Used to rewrite with regular expressions.
  2965. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  2966. </td>
  2967. </tr>
  2968. </tbody>
  2969. </table>
  2970. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  2971. </h3>
  2972. <p>
  2973. (<em>Appears on:</em>
  2974. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  2975. </p>
  2976. <p>
  2977. </p>
  2978. <table>
  2979. <thead>
  2980. <tr>
  2981. <th>Field</th>
  2982. <th>Description</th>
  2983. </tr>
  2984. </thead>
  2985. <tbody>
  2986. <tr>
  2987. <td>
  2988. <code>source</code></br>
  2989. <em>
  2990. string
  2991. </em>
  2992. </td>
  2993. <td>
  2994. <p>Used to define the regular expression of a re.Compiler.</p>
  2995. </td>
  2996. </tr>
  2997. <tr>
  2998. <td>
  2999. <code>target</code></br>
  3000. <em>
  3001. string
  3002. </em>
  3003. </td>
  3004. <td>
  3005. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  3006. </td>
  3007. </tr>
  3008. </tbody>
  3009. </table>
  3010. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  3011. </h3>
  3012. <p>
  3013. (<em>Appears on:</em>
  3014. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  3015. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3016. </p>
  3017. <p>
  3018. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  3019. </p>
  3020. <table>
  3021. <thead>
  3022. <tr>
  3023. <th>Field</th>
  3024. <th>Description</th>
  3025. </tr>
  3026. </thead>
  3027. <tbody>
  3028. <tr>
  3029. <td>
  3030. <code>secretStoreRef</code></br>
  3031. <em>
  3032. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3033. SecretStoreRef
  3034. </a>
  3035. </em>
  3036. </td>
  3037. <td>
  3038. <em>(Optional)</em>
  3039. </td>
  3040. </tr>
  3041. <tr>
  3042. <td>
  3043. <code>target</code></br>
  3044. <em>
  3045. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3046. ExternalSecretTarget
  3047. </a>
  3048. </em>
  3049. </td>
  3050. <td>
  3051. <em>(Optional)</em>
  3052. </td>
  3053. </tr>
  3054. <tr>
  3055. <td>
  3056. <code>refreshInterval</code></br>
  3057. <em>
  3058. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  3059. Kubernetes meta/v1.Duration
  3060. </a>
  3061. </em>
  3062. </td>
  3063. <td>
  3064. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3065. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3066. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3067. </td>
  3068. </tr>
  3069. <tr>
  3070. <td>
  3071. <code>data</code></br>
  3072. <em>
  3073. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3074. []ExternalSecretData
  3075. </a>
  3076. </em>
  3077. </td>
  3078. <td>
  3079. <em>(Optional)</em>
  3080. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3081. </td>
  3082. </tr>
  3083. <tr>
  3084. <td>
  3085. <code>dataFrom</code></br>
  3086. <em>
  3087. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3088. []ExternalSecretDataFromRemoteRef
  3089. </a>
  3090. </em>
  3091. </td>
  3092. <td>
  3093. <em>(Optional)</em>
  3094. <p>DataFrom is used to fetch all properties from a specific Provider data
  3095. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3096. </td>
  3097. </tr>
  3098. </tbody>
  3099. </table>
  3100. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  3101. </h3>
  3102. <p>
  3103. (<em>Appears on:</em>
  3104. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3105. </p>
  3106. <p>
  3107. </p>
  3108. <table>
  3109. <thead>
  3110. <tr>
  3111. <th>Field</th>
  3112. <th>Description</th>
  3113. </tr>
  3114. </thead>
  3115. <tbody>
  3116. <tr>
  3117. <td>
  3118. <code>refreshTime</code></br>
  3119. <em>
  3120. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3121. Kubernetes meta/v1.Time
  3122. </a>
  3123. </em>
  3124. </td>
  3125. <td>
  3126. <p>refreshTime is the time and date the external secret was fetched and
  3127. the target secret updated</p>
  3128. </td>
  3129. </tr>
  3130. <tr>
  3131. <td>
  3132. <code>syncedResourceVersion</code></br>
  3133. <em>
  3134. string
  3135. </em>
  3136. </td>
  3137. <td>
  3138. <p>SyncedResourceVersion keeps track of the last synced version</p>
  3139. </td>
  3140. </tr>
  3141. <tr>
  3142. <td>
  3143. <code>conditions</code></br>
  3144. <em>
  3145. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  3146. []ExternalSecretStatusCondition
  3147. </a>
  3148. </em>
  3149. </td>
  3150. <td>
  3151. <em>(Optional)</em>
  3152. </td>
  3153. </tr>
  3154. </tbody>
  3155. </table>
  3156. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  3157. </h3>
  3158. <p>
  3159. (<em>Appears on:</em>
  3160. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  3161. </p>
  3162. <p>
  3163. </p>
  3164. <table>
  3165. <thead>
  3166. <tr>
  3167. <th>Field</th>
  3168. <th>Description</th>
  3169. </tr>
  3170. </thead>
  3171. <tbody>
  3172. <tr>
  3173. <td>
  3174. <code>type</code></br>
  3175. <em>
  3176. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  3177. ExternalSecretConditionType
  3178. </a>
  3179. </em>
  3180. </td>
  3181. <td>
  3182. </td>
  3183. </tr>
  3184. <tr>
  3185. <td>
  3186. <code>status</code></br>
  3187. <em>
  3188. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  3189. Kubernetes core/v1.ConditionStatus
  3190. </a>
  3191. </em>
  3192. </td>
  3193. <td>
  3194. </td>
  3195. </tr>
  3196. <tr>
  3197. <td>
  3198. <code>reason</code></br>
  3199. <em>
  3200. string
  3201. </em>
  3202. </td>
  3203. <td>
  3204. <em>(Optional)</em>
  3205. </td>
  3206. </tr>
  3207. <tr>
  3208. <td>
  3209. <code>message</code></br>
  3210. <em>
  3211. string
  3212. </em>
  3213. </td>
  3214. <td>
  3215. <em>(Optional)</em>
  3216. </td>
  3217. </tr>
  3218. <tr>
  3219. <td>
  3220. <code>lastTransitionTime</code></br>
  3221. <em>
  3222. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3223. Kubernetes meta/v1.Time
  3224. </a>
  3225. </em>
  3226. </td>
  3227. <td>
  3228. <em>(Optional)</em>
  3229. </td>
  3230. </tr>
  3231. </tbody>
  3232. </table>
  3233. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  3234. </h3>
  3235. <p>
  3236. (<em>Appears on:</em>
  3237. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3238. </p>
  3239. <p>
  3240. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  3241. There can be only one target per ExternalSecret.</p>
  3242. </p>
  3243. <table>
  3244. <thead>
  3245. <tr>
  3246. <th>Field</th>
  3247. <th>Description</th>
  3248. </tr>
  3249. </thead>
  3250. <tbody>
  3251. <tr>
  3252. <td>
  3253. <code>name</code></br>
  3254. <em>
  3255. string
  3256. </em>
  3257. </td>
  3258. <td>
  3259. <em>(Optional)</em>
  3260. <p>Name defines the name of the Secret resource to be managed
  3261. This field is immutable
  3262. Defaults to the .metadata.name of the ExternalSecret resource</p>
  3263. </td>
  3264. </tr>
  3265. <tr>
  3266. <td>
  3267. <code>creationPolicy</code></br>
  3268. <em>
  3269. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  3270. ExternalSecretCreationPolicy
  3271. </a>
  3272. </em>
  3273. </td>
  3274. <td>
  3275. <em>(Optional)</em>
  3276. <p>CreationPolicy defines rules on how to create the resulting Secret
  3277. Defaults to &lsquo;Owner&rsquo;</p>
  3278. </td>
  3279. </tr>
  3280. <tr>
  3281. <td>
  3282. <code>deletionPolicy</code></br>
  3283. <em>
  3284. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  3285. ExternalSecretDeletionPolicy
  3286. </a>
  3287. </em>
  3288. </td>
  3289. <td>
  3290. <em>(Optional)</em>
  3291. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  3292. Defaults to &lsquo;Retain&rsquo;</p>
  3293. </td>
  3294. </tr>
  3295. <tr>
  3296. <td>
  3297. <code>template</code></br>
  3298. <em>
  3299. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  3300. ExternalSecretTemplate
  3301. </a>
  3302. </em>
  3303. </td>
  3304. <td>
  3305. <em>(Optional)</em>
  3306. <p>Template defines a blueprint for the created Secret resource.</p>
  3307. </td>
  3308. </tr>
  3309. <tr>
  3310. <td>
  3311. <code>immutable</code></br>
  3312. <em>
  3313. bool
  3314. </em>
  3315. </td>
  3316. <td>
  3317. <em>(Optional)</em>
  3318. <p>Immutable defines if the final secret will be immutable</p>
  3319. </td>
  3320. </tr>
  3321. </tbody>
  3322. </table>
  3323. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  3324. </h3>
  3325. <p>
  3326. (<em>Appears on:</em>
  3327. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3328. </p>
  3329. <p>
  3330. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  3331. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  3332. </p>
  3333. <table>
  3334. <thead>
  3335. <tr>
  3336. <th>Field</th>
  3337. <th>Description</th>
  3338. </tr>
  3339. </thead>
  3340. <tbody>
  3341. <tr>
  3342. <td>
  3343. <code>type</code></br>
  3344. <em>
  3345. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  3346. Kubernetes core/v1.SecretType
  3347. </a>
  3348. </em>
  3349. </td>
  3350. <td>
  3351. <em>(Optional)</em>
  3352. </td>
  3353. </tr>
  3354. <tr>
  3355. <td>
  3356. <code>engineVersion</code></br>
  3357. <em>
  3358. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  3359. TemplateEngineVersion
  3360. </a>
  3361. </em>
  3362. </td>
  3363. <td>
  3364. </td>
  3365. </tr>
  3366. <tr>
  3367. <td>
  3368. <code>metadata</code></br>
  3369. <em>
  3370. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  3371. ExternalSecretTemplateMetadata
  3372. </a>
  3373. </em>
  3374. </td>
  3375. <td>
  3376. <em>(Optional)</em>
  3377. </td>
  3378. </tr>
  3379. <tr>
  3380. <td>
  3381. <code>data</code></br>
  3382. <em>
  3383. map[string]string
  3384. </em>
  3385. </td>
  3386. <td>
  3387. <em>(Optional)</em>
  3388. </td>
  3389. </tr>
  3390. <tr>
  3391. <td>
  3392. <code>templateFrom</code></br>
  3393. <em>
  3394. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  3395. []TemplateFrom
  3396. </a>
  3397. </em>
  3398. </td>
  3399. <td>
  3400. <em>(Optional)</em>
  3401. </td>
  3402. </tr>
  3403. </tbody>
  3404. </table>
  3405. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  3406. </h3>
  3407. <p>
  3408. (<em>Appears on:</em>
  3409. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  3410. </p>
  3411. <p>
  3412. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  3413. </p>
  3414. <table>
  3415. <thead>
  3416. <tr>
  3417. <th>Field</th>
  3418. <th>Description</th>
  3419. </tr>
  3420. </thead>
  3421. <tbody>
  3422. <tr>
  3423. <td>
  3424. <code>annotations</code></br>
  3425. <em>
  3426. map[string]string
  3427. </em>
  3428. </td>
  3429. <td>
  3430. <em>(Optional)</em>
  3431. </td>
  3432. </tr>
  3433. <tr>
  3434. <td>
  3435. <code>labels</code></br>
  3436. <em>
  3437. map[string]string
  3438. </em>
  3439. </td>
  3440. <td>
  3441. <em>(Optional)</em>
  3442. </td>
  3443. </tr>
  3444. </tbody>
  3445. </table>
  3446. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  3447. </h3>
  3448. <p>
  3449. </p>
  3450. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  3451. </h3>
  3452. <p>
  3453. (<em>Appears on:</em>
  3454. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3455. </p>
  3456. <p>
  3457. <p>FakeProvider configures a fake provider that returns static values.</p>
  3458. </p>
  3459. <table>
  3460. <thead>
  3461. <tr>
  3462. <th>Field</th>
  3463. <th>Description</th>
  3464. </tr>
  3465. </thead>
  3466. <tbody>
  3467. <tr>
  3468. <td>
  3469. <code>data</code></br>
  3470. <em>
  3471. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  3472. []FakeProviderData
  3473. </a>
  3474. </em>
  3475. </td>
  3476. <td>
  3477. </td>
  3478. </tr>
  3479. </tbody>
  3480. </table>
  3481. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  3482. </h3>
  3483. <p>
  3484. (<em>Appears on:</em>
  3485. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  3486. </p>
  3487. <p>
  3488. </p>
  3489. <table>
  3490. <thead>
  3491. <tr>
  3492. <th>Field</th>
  3493. <th>Description</th>
  3494. </tr>
  3495. </thead>
  3496. <tbody>
  3497. <tr>
  3498. <td>
  3499. <code>key</code></br>
  3500. <em>
  3501. string
  3502. </em>
  3503. </td>
  3504. <td>
  3505. </td>
  3506. </tr>
  3507. <tr>
  3508. <td>
  3509. <code>value</code></br>
  3510. <em>
  3511. string
  3512. </em>
  3513. </td>
  3514. <td>
  3515. </td>
  3516. </tr>
  3517. <tr>
  3518. <td>
  3519. <code>valueMap</code></br>
  3520. <em>
  3521. map[string]string
  3522. </em>
  3523. </td>
  3524. <td>
  3525. </td>
  3526. </tr>
  3527. <tr>
  3528. <td>
  3529. <code>version</code></br>
  3530. <em>
  3531. string
  3532. </em>
  3533. </td>
  3534. <td>
  3535. </td>
  3536. </tr>
  3537. </tbody>
  3538. </table>
  3539. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  3540. </h3>
  3541. <p>
  3542. (<em>Appears on:</em>
  3543. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3544. </p>
  3545. <p>
  3546. </p>
  3547. <table>
  3548. <thead>
  3549. <tr>
  3550. <th>Field</th>
  3551. <th>Description</th>
  3552. </tr>
  3553. </thead>
  3554. <tbody>
  3555. <tr>
  3556. <td>
  3557. <code>regexp</code></br>
  3558. <em>
  3559. string
  3560. </em>
  3561. </td>
  3562. <td>
  3563. <em>(Optional)</em>
  3564. <p>Finds secrets base</p>
  3565. </td>
  3566. </tr>
  3567. </tbody>
  3568. </table>
  3569. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  3570. </h3>
  3571. <p>
  3572. (<em>Appears on:</em>
  3573. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  3574. </p>
  3575. <p>
  3576. </p>
  3577. <table>
  3578. <thead>
  3579. <tr>
  3580. <th>Field</th>
  3581. <th>Description</th>
  3582. </tr>
  3583. </thead>
  3584. <tbody>
  3585. <tr>
  3586. <td>
  3587. <code>secretRef</code></br>
  3588. <em>
  3589. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  3590. GCPSMAuthSecretRef
  3591. </a>
  3592. </em>
  3593. </td>
  3594. <td>
  3595. <em>(Optional)</em>
  3596. </td>
  3597. </tr>
  3598. <tr>
  3599. <td>
  3600. <code>workloadIdentity</code></br>
  3601. <em>
  3602. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  3603. GCPWorkloadIdentity
  3604. </a>
  3605. </em>
  3606. </td>
  3607. <td>
  3608. <em>(Optional)</em>
  3609. </td>
  3610. </tr>
  3611. </tbody>
  3612. </table>
  3613. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  3614. </h3>
  3615. <p>
  3616. (<em>Appears on:</em>
  3617. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3618. </p>
  3619. <p>
  3620. </p>
  3621. <table>
  3622. <thead>
  3623. <tr>
  3624. <th>Field</th>
  3625. <th>Description</th>
  3626. </tr>
  3627. </thead>
  3628. <tbody>
  3629. <tr>
  3630. <td>
  3631. <code>secretAccessKeySecretRef</code></br>
  3632. <em>
  3633. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3634. </em>
  3635. </td>
  3636. <td>
  3637. <em>(Optional)</em>
  3638. <p>The SecretAccessKey is used for authentication</p>
  3639. </td>
  3640. </tr>
  3641. </tbody>
  3642. </table>
  3643. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  3644. </h3>
  3645. <p>
  3646. (<em>Appears on:</em>
  3647. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3648. </p>
  3649. <p>
  3650. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  3651. </p>
  3652. <table>
  3653. <thead>
  3654. <tr>
  3655. <th>Field</th>
  3656. <th>Description</th>
  3657. </tr>
  3658. </thead>
  3659. <tbody>
  3660. <tr>
  3661. <td>
  3662. <code>auth</code></br>
  3663. <em>
  3664. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  3665. GCPSMAuth
  3666. </a>
  3667. </em>
  3668. </td>
  3669. <td>
  3670. <em>(Optional)</em>
  3671. <p>Auth defines the information necessary to authenticate against GCP</p>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td>
  3676. <code>projectID</code></br>
  3677. <em>
  3678. string
  3679. </em>
  3680. </td>
  3681. <td>
  3682. <p>ProjectID project where secret is located</p>
  3683. </td>
  3684. </tr>
  3685. </tbody>
  3686. </table>
  3687. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  3688. </h3>
  3689. <p>
  3690. (<em>Appears on:</em>
  3691. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3692. </p>
  3693. <p>
  3694. </p>
  3695. <table>
  3696. <thead>
  3697. <tr>
  3698. <th>Field</th>
  3699. <th>Description</th>
  3700. </tr>
  3701. </thead>
  3702. <tbody>
  3703. <tr>
  3704. <td>
  3705. <code>serviceAccountRef</code></br>
  3706. <em>
  3707. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3708. </em>
  3709. </td>
  3710. <td>
  3711. </td>
  3712. </tr>
  3713. <tr>
  3714. <td>
  3715. <code>clusterLocation</code></br>
  3716. <em>
  3717. string
  3718. </em>
  3719. </td>
  3720. <td>
  3721. </td>
  3722. </tr>
  3723. <tr>
  3724. <td>
  3725. <code>clusterName</code></br>
  3726. <em>
  3727. string
  3728. </em>
  3729. </td>
  3730. <td>
  3731. </td>
  3732. </tr>
  3733. <tr>
  3734. <td>
  3735. <code>clusterProjectID</code></br>
  3736. <em>
  3737. string
  3738. </em>
  3739. </td>
  3740. <td>
  3741. </td>
  3742. </tr>
  3743. </tbody>
  3744. </table>
  3745. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  3746. </h3>
  3747. <p>
  3748. (<em>Appears on:</em>
  3749. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  3750. </p>
  3751. <p>
  3752. <p>GeneratorRef points to a generator custom resource.</p>
  3753. </p>
  3754. <table>
  3755. <thead>
  3756. <tr>
  3757. <th>Field</th>
  3758. <th>Description</th>
  3759. </tr>
  3760. </thead>
  3761. <tbody>
  3762. <tr>
  3763. <td>
  3764. <code>apiVersion</code></br>
  3765. <em>
  3766. string
  3767. </em>
  3768. </td>
  3769. <td>
  3770. <p>Specify the apiVersion of the generator resource</p>
  3771. </td>
  3772. </tr>
  3773. <tr>
  3774. <td>
  3775. <code>kind</code></br>
  3776. <em>
  3777. string
  3778. </em>
  3779. </td>
  3780. <td>
  3781. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  3782. </td>
  3783. </tr>
  3784. <tr>
  3785. <td>
  3786. <code>name</code></br>
  3787. <em>
  3788. string
  3789. </em>
  3790. </td>
  3791. <td>
  3792. <p>Specify the name of the generator resource</p>
  3793. </td>
  3794. </tr>
  3795. </tbody>
  3796. </table>
  3797. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  3798. </h3>
  3799. <p>
  3800. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  3801. or a namespaced SecretStore.</p>
  3802. </p>
  3803. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  3804. </h3>
  3805. <p>
  3806. </p>
  3807. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  3808. </h3>
  3809. <p>
  3810. (<em>Appears on:</em>
  3811. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  3812. </p>
  3813. <p>
  3814. </p>
  3815. <table>
  3816. <thead>
  3817. <tr>
  3818. <th>Field</th>
  3819. <th>Description</th>
  3820. </tr>
  3821. </thead>
  3822. <tbody>
  3823. <tr>
  3824. <td>
  3825. <code>SecretRef</code></br>
  3826. <em>
  3827. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  3828. GitlabSecretRef
  3829. </a>
  3830. </em>
  3831. </td>
  3832. <td>
  3833. </td>
  3834. </tr>
  3835. </tbody>
  3836. </table>
  3837. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  3838. </h3>
  3839. <p>
  3840. (<em>Appears on:</em>
  3841. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3842. </p>
  3843. <p>
  3844. <p>Configures a store to sync secrets with a GitLab instance.</p>
  3845. </p>
  3846. <table>
  3847. <thead>
  3848. <tr>
  3849. <th>Field</th>
  3850. <th>Description</th>
  3851. </tr>
  3852. </thead>
  3853. <tbody>
  3854. <tr>
  3855. <td>
  3856. <code>url</code></br>
  3857. <em>
  3858. string
  3859. </em>
  3860. </td>
  3861. <td>
  3862. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  3863. </td>
  3864. </tr>
  3865. <tr>
  3866. <td>
  3867. <code>auth</code></br>
  3868. <em>
  3869. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  3870. GitlabAuth
  3871. </a>
  3872. </em>
  3873. </td>
  3874. <td>
  3875. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  3876. </td>
  3877. </tr>
  3878. <tr>
  3879. <td>
  3880. <code>projectID</code></br>
  3881. <em>
  3882. string
  3883. </em>
  3884. </td>
  3885. <td>
  3886. <p>ProjectID specifies a project where secrets are located.</p>
  3887. </td>
  3888. </tr>
  3889. <tr>
  3890. <td>
  3891. <code>inheritFromGroups</code></br>
  3892. <em>
  3893. bool
  3894. </em>
  3895. </td>
  3896. <td>
  3897. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  3898. </td>
  3899. </tr>
  3900. <tr>
  3901. <td>
  3902. <code>groupIDs</code></br>
  3903. <em>
  3904. []string
  3905. </em>
  3906. </td>
  3907. <td>
  3908. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  3909. </td>
  3910. </tr>
  3911. <tr>
  3912. <td>
  3913. <code>environment</code></br>
  3914. <em>
  3915. string
  3916. </em>
  3917. </td>
  3918. <td>
  3919. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  3920. </td>
  3921. </tr>
  3922. </tbody>
  3923. </table>
  3924. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  3925. </h3>
  3926. <p>
  3927. (<em>Appears on:</em>
  3928. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  3929. </p>
  3930. <p>
  3931. </p>
  3932. <table>
  3933. <thead>
  3934. <tr>
  3935. <th>Field</th>
  3936. <th>Description</th>
  3937. </tr>
  3938. </thead>
  3939. <tbody>
  3940. <tr>
  3941. <td>
  3942. <code>accessToken</code></br>
  3943. <em>
  3944. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3945. </em>
  3946. </td>
  3947. <td>
  3948. <p>AccessToken is used for authentication.</p>
  3949. </td>
  3950. </tr>
  3951. </tbody>
  3952. </table>
  3953. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  3954. </h3>
  3955. <p>
  3956. (<em>Appears on:</em>
  3957. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  3958. </p>
  3959. <p>
  3960. </p>
  3961. <table>
  3962. <thead>
  3963. <tr>
  3964. <th>Field</th>
  3965. <th>Description</th>
  3966. </tr>
  3967. </thead>
  3968. <tbody>
  3969. <tr>
  3970. <td>
  3971. <code>secretRef</code></br>
  3972. <em>
  3973. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  3974. IBMAuthSecretRef
  3975. </a>
  3976. </em>
  3977. </td>
  3978. <td>
  3979. </td>
  3980. </tr>
  3981. <tr>
  3982. <td>
  3983. <code>containerAuth</code></br>
  3984. <em>
  3985. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  3986. IBMAuthContainerAuth
  3987. </a>
  3988. </em>
  3989. </td>
  3990. <td>
  3991. </td>
  3992. </tr>
  3993. </tbody>
  3994. </table>
  3995. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  3996. </h3>
  3997. <p>
  3998. (<em>Appears on:</em>
  3999. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  4000. </p>
  4001. <p>
  4002. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  4003. </p>
  4004. <table>
  4005. <thead>
  4006. <tr>
  4007. <th>Field</th>
  4008. <th>Description</th>
  4009. </tr>
  4010. </thead>
  4011. <tbody>
  4012. <tr>
  4013. <td>
  4014. <code>profile</code></br>
  4015. <em>
  4016. string
  4017. </em>
  4018. </td>
  4019. <td>
  4020. <p>the IBM Trusted Profile</p>
  4021. </td>
  4022. </tr>
  4023. <tr>
  4024. <td>
  4025. <code>tokenLocation</code></br>
  4026. <em>
  4027. string
  4028. </em>
  4029. </td>
  4030. <td>
  4031. <p>Location the token is mounted on the pod</p>
  4032. </td>
  4033. </tr>
  4034. <tr>
  4035. <td>
  4036. <code>iamEndpoint</code></br>
  4037. <em>
  4038. string
  4039. </em>
  4040. </td>
  4041. <td>
  4042. </td>
  4043. </tr>
  4044. </tbody>
  4045. </table>
  4046. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  4047. </h3>
  4048. <p>
  4049. (<em>Appears on:</em>
  4050. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  4051. </p>
  4052. <p>
  4053. </p>
  4054. <table>
  4055. <thead>
  4056. <tr>
  4057. <th>Field</th>
  4058. <th>Description</th>
  4059. </tr>
  4060. </thead>
  4061. <tbody>
  4062. <tr>
  4063. <td>
  4064. <code>secretApiKeySecretRef</code></br>
  4065. <em>
  4066. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4067. </em>
  4068. </td>
  4069. <td>
  4070. <p>The SecretAccessKey is used for authentication</p>
  4071. </td>
  4072. </tr>
  4073. </tbody>
  4074. </table>
  4075. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  4076. </h3>
  4077. <p>
  4078. (<em>Appears on:</em>
  4079. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4080. </p>
  4081. <p>
  4082. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  4083. backend.</p>
  4084. </p>
  4085. <table>
  4086. <thead>
  4087. <tr>
  4088. <th>Field</th>
  4089. <th>Description</th>
  4090. </tr>
  4091. </thead>
  4092. <tbody>
  4093. <tr>
  4094. <td>
  4095. <code>auth</code></br>
  4096. <em>
  4097. <a href="#external-secrets.io/v1beta1.IBMAuth">
  4098. IBMAuth
  4099. </a>
  4100. </em>
  4101. </td>
  4102. <td>
  4103. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  4104. </td>
  4105. </tr>
  4106. <tr>
  4107. <td>
  4108. <code>serviceUrl</code></br>
  4109. <em>
  4110. string
  4111. </em>
  4112. </td>
  4113. <td>
  4114. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  4115. </td>
  4116. </tr>
  4117. </tbody>
  4118. </table>
  4119. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  4120. </h3>
  4121. <p>
  4122. (<em>Appears on:</em>
  4123. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4124. </p>
  4125. <p>
  4126. </p>
  4127. <table>
  4128. <thead>
  4129. <tr>
  4130. <th>Field</th>
  4131. <th>Description</th>
  4132. </tr>
  4133. </thead>
  4134. <tbody>
  4135. <tr>
  4136. <td>
  4137. <code>cert</code></br>
  4138. <em>
  4139. <a href="#external-secrets.io/v1beta1.CertAuth">
  4140. CertAuth
  4141. </a>
  4142. </em>
  4143. </td>
  4144. <td>
  4145. <em>(Optional)</em>
  4146. <p>has both clientCert and clientKey as secretKeySelector</p>
  4147. </td>
  4148. </tr>
  4149. <tr>
  4150. <td>
  4151. <code>token</code></br>
  4152. <em>
  4153. <a href="#external-secrets.io/v1beta1.TokenAuth">
  4154. TokenAuth
  4155. </a>
  4156. </em>
  4157. </td>
  4158. <td>
  4159. <em>(Optional)</em>
  4160. <p>use static token to authenticate with</p>
  4161. </td>
  4162. </tr>
  4163. <tr>
  4164. <td>
  4165. <code>serviceAccount</code></br>
  4166. <em>
  4167. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  4168. </em>
  4169. </td>
  4170. <td>
  4171. <em>(Optional)</em>
  4172. <p>points to a service account that should be used for authentication</p>
  4173. </td>
  4174. </tr>
  4175. </tbody>
  4176. </table>
  4177. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  4178. </h3>
  4179. <p>
  4180. (<em>Appears on:</em>
  4181. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4182. </p>
  4183. <p>
  4184. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  4185. </p>
  4186. <table>
  4187. <thead>
  4188. <tr>
  4189. <th>Field</th>
  4190. <th>Description</th>
  4191. </tr>
  4192. </thead>
  4193. <tbody>
  4194. <tr>
  4195. <td>
  4196. <code>server</code></br>
  4197. <em>
  4198. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  4199. KubernetesServer
  4200. </a>
  4201. </em>
  4202. </td>
  4203. <td>
  4204. <p>configures the Kubernetes server Address.</p>
  4205. </td>
  4206. </tr>
  4207. <tr>
  4208. <td>
  4209. <code>auth</code></br>
  4210. <em>
  4211. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  4212. KubernetesAuth
  4213. </a>
  4214. </em>
  4215. </td>
  4216. <td>
  4217. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  4218. </td>
  4219. </tr>
  4220. <tr>
  4221. <td>
  4222. <code>remoteNamespace</code></br>
  4223. <em>
  4224. string
  4225. </em>
  4226. </td>
  4227. <td>
  4228. <em>(Optional)</em>
  4229. <p>Remote namespace to fetch the secrets from</p>
  4230. </td>
  4231. </tr>
  4232. </tbody>
  4233. </table>
  4234. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  4235. </h3>
  4236. <p>
  4237. (<em>Appears on:</em>
  4238. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4239. </p>
  4240. <p>
  4241. </p>
  4242. <table>
  4243. <thead>
  4244. <tr>
  4245. <th>Field</th>
  4246. <th>Description</th>
  4247. </tr>
  4248. </thead>
  4249. <tbody>
  4250. <tr>
  4251. <td>
  4252. <code>url</code></br>
  4253. <em>
  4254. string
  4255. </em>
  4256. </td>
  4257. <td>
  4258. <em>(Optional)</em>
  4259. <p>configures the Kubernetes server Address.</p>
  4260. </td>
  4261. </tr>
  4262. <tr>
  4263. <td>
  4264. <code>caBundle</code></br>
  4265. <em>
  4266. []byte
  4267. </em>
  4268. </td>
  4269. <td>
  4270. <em>(Optional)</em>
  4271. <p>CABundle is a base64-encoded CA certificate</p>
  4272. </td>
  4273. </tr>
  4274. <tr>
  4275. <td>
  4276. <code>caProvider</code></br>
  4277. <em>
  4278. <a href="#external-secrets.io/v1beta1.CAProvider">
  4279. CAProvider
  4280. </a>
  4281. </em>
  4282. </td>
  4283. <td>
  4284. <em>(Optional)</em>
  4285. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  4286. </td>
  4287. </tr>
  4288. </tbody>
  4289. </table>
  4290. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  4291. </h3>
  4292. <p>
  4293. <p>NoSecretError shall be returned when a GetSecret can not find the
  4294. desired secret. This is used for deletionPolicy.</p>
  4295. </p>
  4296. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  4297. </h3>
  4298. <p>
  4299. (<em>Appears on:</em>
  4300. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  4301. </p>
  4302. <p>
  4303. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  4304. </p>
  4305. <table>
  4306. <thead>
  4307. <tr>
  4308. <th>Field</th>
  4309. <th>Description</th>
  4310. </tr>
  4311. </thead>
  4312. <tbody>
  4313. <tr>
  4314. <td>
  4315. <code>secretRef</code></br>
  4316. <em>
  4317. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  4318. OnePasswordAuthSecretRef
  4319. </a>
  4320. </em>
  4321. </td>
  4322. <td>
  4323. </td>
  4324. </tr>
  4325. </tbody>
  4326. </table>
  4327. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  4328. </h3>
  4329. <p>
  4330. (<em>Appears on:</em>
  4331. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  4332. </p>
  4333. <p>
  4334. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  4335. </p>
  4336. <table>
  4337. <thead>
  4338. <tr>
  4339. <th>Field</th>
  4340. <th>Description</th>
  4341. </tr>
  4342. </thead>
  4343. <tbody>
  4344. <tr>
  4345. <td>
  4346. <code>connectTokenSecretRef</code></br>
  4347. <em>
  4348. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4349. </em>
  4350. </td>
  4351. <td>
  4352. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  4353. </td>
  4354. </tr>
  4355. </tbody>
  4356. </table>
  4357. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  4358. </h3>
  4359. <p>
  4360. (<em>Appears on:</em>
  4361. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4362. </p>
  4363. <p>
  4364. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  4365. </p>
  4366. <table>
  4367. <thead>
  4368. <tr>
  4369. <th>Field</th>
  4370. <th>Description</th>
  4371. </tr>
  4372. </thead>
  4373. <tbody>
  4374. <tr>
  4375. <td>
  4376. <code>auth</code></br>
  4377. <em>
  4378. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  4379. OnePasswordAuth
  4380. </a>
  4381. </em>
  4382. </td>
  4383. <td>
  4384. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  4385. </td>
  4386. </tr>
  4387. <tr>
  4388. <td>
  4389. <code>connectHost</code></br>
  4390. <em>
  4391. string
  4392. </em>
  4393. </td>
  4394. <td>
  4395. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  4396. </td>
  4397. </tr>
  4398. <tr>
  4399. <td>
  4400. <code>vaults</code></br>
  4401. <em>
  4402. map[string]int
  4403. </em>
  4404. </td>
  4405. <td>
  4406. <p>Vaults defines which OnePassword vaults to search in which order</p>
  4407. </td>
  4408. </tr>
  4409. </tbody>
  4410. </table>
  4411. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  4412. </h3>
  4413. <p>
  4414. (<em>Appears on:</em>
  4415. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  4416. </p>
  4417. <p>
  4418. </p>
  4419. <table>
  4420. <thead>
  4421. <tr>
  4422. <th>Field</th>
  4423. <th>Description</th>
  4424. </tr>
  4425. </thead>
  4426. <tbody>
  4427. <tr>
  4428. <td>
  4429. <code>tenancy</code></br>
  4430. <em>
  4431. string
  4432. </em>
  4433. </td>
  4434. <td>
  4435. <p>Tenancy is the tenancy OCID where user is located.</p>
  4436. </td>
  4437. </tr>
  4438. <tr>
  4439. <td>
  4440. <code>user</code></br>
  4441. <em>
  4442. string
  4443. </em>
  4444. </td>
  4445. <td>
  4446. <p>User is an access OCID specific to the account.</p>
  4447. </td>
  4448. </tr>
  4449. <tr>
  4450. <td>
  4451. <code>secretRef</code></br>
  4452. <em>
  4453. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  4454. OracleSecretRef
  4455. </a>
  4456. </em>
  4457. </td>
  4458. <td>
  4459. <p>SecretRef to pass through sensitive information.</p>
  4460. </td>
  4461. </tr>
  4462. </tbody>
  4463. </table>
  4464. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  4465. </h3>
  4466. <p>
  4467. (<em>Appears on:</em>
  4468. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4469. </p>
  4470. <p>
  4471. <p>Configures an store to sync secrets using a Oracle Vault
  4472. backend.</p>
  4473. </p>
  4474. <table>
  4475. <thead>
  4476. <tr>
  4477. <th>Field</th>
  4478. <th>Description</th>
  4479. </tr>
  4480. </thead>
  4481. <tbody>
  4482. <tr>
  4483. <td>
  4484. <code>region</code></br>
  4485. <em>
  4486. string
  4487. </em>
  4488. </td>
  4489. <td>
  4490. <p>Region is the region where vault is located.</p>
  4491. </td>
  4492. </tr>
  4493. <tr>
  4494. <td>
  4495. <code>vault</code></br>
  4496. <em>
  4497. string
  4498. </em>
  4499. </td>
  4500. <td>
  4501. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  4502. </td>
  4503. </tr>
  4504. <tr>
  4505. <td>
  4506. <code>auth</code></br>
  4507. <em>
  4508. <a href="#external-secrets.io/v1beta1.OracleAuth">
  4509. OracleAuth
  4510. </a>
  4511. </em>
  4512. </td>
  4513. <td>
  4514. <em>(Optional)</em>
  4515. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  4516. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  4517. </td>
  4518. </tr>
  4519. </tbody>
  4520. </table>
  4521. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  4522. </h3>
  4523. <p>
  4524. (<em>Appears on:</em>
  4525. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  4526. </p>
  4527. <p>
  4528. </p>
  4529. <table>
  4530. <thead>
  4531. <tr>
  4532. <th>Field</th>
  4533. <th>Description</th>
  4534. </tr>
  4535. </thead>
  4536. <tbody>
  4537. <tr>
  4538. <td>
  4539. <code>privatekey</code></br>
  4540. <em>
  4541. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4542. </em>
  4543. </td>
  4544. <td>
  4545. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  4546. </td>
  4547. </tr>
  4548. <tr>
  4549. <td>
  4550. <code>fingerprint</code></br>
  4551. <em>
  4552. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4553. </em>
  4554. </td>
  4555. <td>
  4556. <p>Fingerprint is the fingerprint of the API private key.</p>
  4557. </td>
  4558. </tr>
  4559. </tbody>
  4560. </table>
  4561. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  4562. </h3>
  4563. <p>
  4564. <p>Provider is a common interface for interacting with secret backends.</p>
  4565. </p>
  4566. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  4567. </h3>
  4568. <p>
  4569. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  4570. </p>
  4571. <table>
  4572. <thead>
  4573. <tr>
  4574. <th>Field</th>
  4575. <th>Description</th>
  4576. </tr>
  4577. </thead>
  4578. <tbody>
  4579. <tr>
  4580. <td>
  4581. <code>metadata</code></br>
  4582. <em>
  4583. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  4584. Kubernetes meta/v1.ObjectMeta
  4585. </a>
  4586. </em>
  4587. </td>
  4588. <td>
  4589. Refer to the Kubernetes API documentation for the fields of the
  4590. <code>metadata</code> field.
  4591. </td>
  4592. </tr>
  4593. <tr>
  4594. <td>
  4595. <code>spec</code></br>
  4596. <em>
  4597. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  4598. SecretStoreSpec
  4599. </a>
  4600. </em>
  4601. </td>
  4602. <td>
  4603. <br/>
  4604. <br/>
  4605. <table>
  4606. <tr>
  4607. <td>
  4608. <code>controller</code></br>
  4609. <em>
  4610. string
  4611. </em>
  4612. </td>
  4613. <td>
  4614. <em>(Optional)</em>
  4615. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4616. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4617. </td>
  4618. </tr>
  4619. <tr>
  4620. <td>
  4621. <code>provider</code></br>
  4622. <em>
  4623. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4624. SecretStoreProvider
  4625. </a>
  4626. </em>
  4627. </td>
  4628. <td>
  4629. <p>Used to configure the provider. Only one provider may be set</p>
  4630. </td>
  4631. </tr>
  4632. <tr>
  4633. <td>
  4634. <code>retrySettings</code></br>
  4635. <em>
  4636. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4637. SecretStoreRetrySettings
  4638. </a>
  4639. </em>
  4640. </td>
  4641. <td>
  4642. <em>(Optional)</em>
  4643. <p>Used to configure http retries if failed</p>
  4644. </td>
  4645. </tr>
  4646. <tr>
  4647. <td>
  4648. <code>refreshInterval</code></br>
  4649. <em>
  4650. int
  4651. </em>
  4652. </td>
  4653. <td>
  4654. <em>(Optional)</em>
  4655. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4656. </td>
  4657. </tr>
  4658. <tr>
  4659. <td>
  4660. <code>conditions</code></br>
  4661. <em>
  4662. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  4663. []ClusterSecretStoreCondition
  4664. </a>
  4665. </em>
  4666. </td>
  4667. <td>
  4668. <em>(Optional)</em>
  4669. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  4670. </td>
  4671. </tr>
  4672. </table>
  4673. </td>
  4674. </tr>
  4675. <tr>
  4676. <td>
  4677. <code>status</code></br>
  4678. <em>
  4679. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  4680. SecretStoreStatus
  4681. </a>
  4682. </em>
  4683. </td>
  4684. <td>
  4685. </td>
  4686. </tr>
  4687. </tbody>
  4688. </table>
  4689. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  4690. (<code>string</code> alias)</p></h3>
  4691. <p>
  4692. (<em>Appears on:</em>
  4693. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  4694. </p>
  4695. <p>
  4696. </p>
  4697. <table>
  4698. <thead>
  4699. <tr>
  4700. <th>Value</th>
  4701. <th>Description</th>
  4702. </tr>
  4703. </thead>
  4704. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  4705. <td></td>
  4706. </tr></tbody>
  4707. </table>
  4708. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  4709. </h3>
  4710. <p>
  4711. (<em>Appears on:</em>
  4712. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4713. </p>
  4714. <p>
  4715. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  4716. </p>
  4717. <table>
  4718. <thead>
  4719. <tr>
  4720. <th>Field</th>
  4721. <th>Description</th>
  4722. </tr>
  4723. </thead>
  4724. <tbody>
  4725. <tr>
  4726. <td>
  4727. <code>aws</code></br>
  4728. <em>
  4729. <a href="#external-secrets.io/v1beta1.AWSProvider">
  4730. AWSProvider
  4731. </a>
  4732. </em>
  4733. </td>
  4734. <td>
  4735. <em>(Optional)</em>
  4736. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  4737. </td>
  4738. </tr>
  4739. <tr>
  4740. <td>
  4741. <code>azurekv</code></br>
  4742. <em>
  4743. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  4744. AzureKVProvider
  4745. </a>
  4746. </em>
  4747. </td>
  4748. <td>
  4749. <em>(Optional)</em>
  4750. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  4751. </td>
  4752. </tr>
  4753. <tr>
  4754. <td>
  4755. <code>akeyless</code></br>
  4756. <em>
  4757. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  4758. AkeylessProvider
  4759. </a>
  4760. </em>
  4761. </td>
  4762. <td>
  4763. <em>(Optional)</em>
  4764. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  4765. </td>
  4766. </tr>
  4767. <tr>
  4768. <td>
  4769. <code>vault</code></br>
  4770. <em>
  4771. <a href="#external-secrets.io/v1beta1.VaultProvider">
  4772. VaultProvider
  4773. </a>
  4774. </em>
  4775. </td>
  4776. <td>
  4777. <em>(Optional)</em>
  4778. <p>Vault configures this store to sync secrets using Hashi provider</p>
  4779. </td>
  4780. </tr>
  4781. <tr>
  4782. <td>
  4783. <code>gcpsm</code></br>
  4784. <em>
  4785. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  4786. GCPSMProvider
  4787. </a>
  4788. </em>
  4789. </td>
  4790. <td>
  4791. <em>(Optional)</em>
  4792. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  4793. </td>
  4794. </tr>
  4795. <tr>
  4796. <td>
  4797. <code>oracle</code></br>
  4798. <em>
  4799. <a href="#external-secrets.io/v1beta1.OracleProvider">
  4800. OracleProvider
  4801. </a>
  4802. </em>
  4803. </td>
  4804. <td>
  4805. <em>(Optional)</em>
  4806. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  4807. </td>
  4808. </tr>
  4809. <tr>
  4810. <td>
  4811. <code>ibm</code></br>
  4812. <em>
  4813. <a href="#external-secrets.io/v1beta1.IBMProvider">
  4814. IBMProvider
  4815. </a>
  4816. </em>
  4817. </td>
  4818. <td>
  4819. <em>(Optional)</em>
  4820. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  4821. </td>
  4822. </tr>
  4823. <tr>
  4824. <td>
  4825. <code>yandexcertificatemanager</code></br>
  4826. <em>
  4827. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  4828. YandexCertificateManagerProvider
  4829. </a>
  4830. </em>
  4831. </td>
  4832. <td>
  4833. <em>(Optional)</em>
  4834. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  4835. </td>
  4836. </tr>
  4837. <tr>
  4838. <td>
  4839. <code>yandexlockbox</code></br>
  4840. <em>
  4841. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  4842. YandexLockboxProvider
  4843. </a>
  4844. </em>
  4845. </td>
  4846. <td>
  4847. <em>(Optional)</em>
  4848. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  4849. </td>
  4850. </tr>
  4851. <tr>
  4852. <td>
  4853. <code>gitlab</code></br>
  4854. <em>
  4855. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  4856. GitlabProvider
  4857. </a>
  4858. </em>
  4859. </td>
  4860. <td>
  4861. <em>(Optional)</em>
  4862. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  4863. </td>
  4864. </tr>
  4865. <tr>
  4866. <td>
  4867. <code>alibaba</code></br>
  4868. <em>
  4869. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  4870. AlibabaProvider
  4871. </a>
  4872. </em>
  4873. </td>
  4874. <td>
  4875. <em>(Optional)</em>
  4876. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  4877. </td>
  4878. </tr>
  4879. <tr>
  4880. <td>
  4881. <code>onepassword</code></br>
  4882. <em>
  4883. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  4884. OnePasswordProvider
  4885. </a>
  4886. </em>
  4887. </td>
  4888. <td>
  4889. <em>(Optional)</em>
  4890. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  4891. </td>
  4892. </tr>
  4893. <tr>
  4894. <td>
  4895. <code>webhook</code></br>
  4896. <em>
  4897. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  4898. WebhookProvider
  4899. </a>
  4900. </em>
  4901. </td>
  4902. <td>
  4903. <em>(Optional)</em>
  4904. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  4905. </td>
  4906. </tr>
  4907. <tr>
  4908. <td>
  4909. <code>kubernetes</code></br>
  4910. <em>
  4911. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  4912. KubernetesProvider
  4913. </a>
  4914. </em>
  4915. </td>
  4916. <td>
  4917. <em>(Optional)</em>
  4918. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  4919. </td>
  4920. </tr>
  4921. <tr>
  4922. <td>
  4923. <code>fake</code></br>
  4924. <em>
  4925. <a href="#external-secrets.io/v1beta1.FakeProvider">
  4926. FakeProvider
  4927. </a>
  4928. </em>
  4929. </td>
  4930. <td>
  4931. <em>(Optional)</em>
  4932. <p>Fake configures a store with static key/value pairs</p>
  4933. </td>
  4934. </tr>
  4935. <tr>
  4936. <td>
  4937. <code>senhasegura</code></br>
  4938. <em>
  4939. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  4940. SenhaseguraProvider
  4941. </a>
  4942. </em>
  4943. </td>
  4944. <td>
  4945. <em>(Optional)</em>
  4946. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  4947. </td>
  4948. </tr>
  4949. <tr>
  4950. <td>
  4951. <code>doppler</code></br>
  4952. <em>
  4953. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  4954. DopplerProvider
  4955. </a>
  4956. </em>
  4957. </td>
  4958. <td>
  4959. <em>(Optional)</em>
  4960. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  4961. </td>
  4962. </tr>
  4963. </tbody>
  4964. </table>
  4965. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  4966. </h3>
  4967. <p>
  4968. (<em>Appears on:</em>
  4969. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  4970. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  4971. </p>
  4972. <p>
  4973. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  4974. </p>
  4975. <table>
  4976. <thead>
  4977. <tr>
  4978. <th>Field</th>
  4979. <th>Description</th>
  4980. </tr>
  4981. </thead>
  4982. <tbody>
  4983. <tr>
  4984. <td>
  4985. <code>name</code></br>
  4986. <em>
  4987. string
  4988. </em>
  4989. </td>
  4990. <td>
  4991. <p>Name of the SecretStore resource</p>
  4992. </td>
  4993. </tr>
  4994. <tr>
  4995. <td>
  4996. <code>kind</code></br>
  4997. <em>
  4998. string
  4999. </em>
  5000. </td>
  5001. <td>
  5002. <em>(Optional)</em>
  5003. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  5004. Defaults to <code>SecretStore</code></p>
  5005. </td>
  5006. </tr>
  5007. </tbody>
  5008. </table>
  5009. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  5010. </h3>
  5011. <p>
  5012. (<em>Appears on:</em>
  5013. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  5014. </p>
  5015. <p>
  5016. </p>
  5017. <table>
  5018. <thead>
  5019. <tr>
  5020. <th>Field</th>
  5021. <th>Description</th>
  5022. </tr>
  5023. </thead>
  5024. <tbody>
  5025. <tr>
  5026. <td>
  5027. <code>maxRetries</code></br>
  5028. <em>
  5029. int32
  5030. </em>
  5031. </td>
  5032. <td>
  5033. </td>
  5034. </tr>
  5035. <tr>
  5036. <td>
  5037. <code>retryInterval</code></br>
  5038. <em>
  5039. string
  5040. </em>
  5041. </td>
  5042. <td>
  5043. </td>
  5044. </tr>
  5045. </tbody>
  5046. </table>
  5047. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  5048. </h3>
  5049. <p>
  5050. (<em>Appears on:</em>
  5051. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5052. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5053. </p>
  5054. <p>
  5055. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  5056. </p>
  5057. <table>
  5058. <thead>
  5059. <tr>
  5060. <th>Field</th>
  5061. <th>Description</th>
  5062. </tr>
  5063. </thead>
  5064. <tbody>
  5065. <tr>
  5066. <td>
  5067. <code>controller</code></br>
  5068. <em>
  5069. string
  5070. </em>
  5071. </td>
  5072. <td>
  5073. <em>(Optional)</em>
  5074. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  5075. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  5076. </td>
  5077. </tr>
  5078. <tr>
  5079. <td>
  5080. <code>provider</code></br>
  5081. <em>
  5082. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  5083. SecretStoreProvider
  5084. </a>
  5085. </em>
  5086. </td>
  5087. <td>
  5088. <p>Used to configure the provider. Only one provider may be set</p>
  5089. </td>
  5090. </tr>
  5091. <tr>
  5092. <td>
  5093. <code>retrySettings</code></br>
  5094. <em>
  5095. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  5096. SecretStoreRetrySettings
  5097. </a>
  5098. </em>
  5099. </td>
  5100. <td>
  5101. <em>(Optional)</em>
  5102. <p>Used to configure http retries if failed</p>
  5103. </td>
  5104. </tr>
  5105. <tr>
  5106. <td>
  5107. <code>refreshInterval</code></br>
  5108. <em>
  5109. int
  5110. </em>
  5111. </td>
  5112. <td>
  5113. <em>(Optional)</em>
  5114. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  5115. </td>
  5116. </tr>
  5117. <tr>
  5118. <td>
  5119. <code>conditions</code></br>
  5120. <em>
  5121. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  5122. []ClusterSecretStoreCondition
  5123. </a>
  5124. </em>
  5125. </td>
  5126. <td>
  5127. <em>(Optional)</em>
  5128. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  5129. </td>
  5130. </tr>
  5131. </tbody>
  5132. </table>
  5133. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  5134. </h3>
  5135. <p>
  5136. (<em>Appears on:</em>
  5137. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5138. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5139. </p>
  5140. <p>
  5141. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  5142. </p>
  5143. <table>
  5144. <thead>
  5145. <tr>
  5146. <th>Field</th>
  5147. <th>Description</th>
  5148. </tr>
  5149. </thead>
  5150. <tbody>
  5151. <tr>
  5152. <td>
  5153. <code>conditions</code></br>
  5154. <em>
  5155. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  5156. []SecretStoreStatusCondition
  5157. </a>
  5158. </em>
  5159. </td>
  5160. <td>
  5161. <em>(Optional)</em>
  5162. </td>
  5163. </tr>
  5164. </tbody>
  5165. </table>
  5166. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  5167. </h3>
  5168. <p>
  5169. (<em>Appears on:</em>
  5170. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  5171. </p>
  5172. <p>
  5173. </p>
  5174. <table>
  5175. <thead>
  5176. <tr>
  5177. <th>Field</th>
  5178. <th>Description</th>
  5179. </tr>
  5180. </thead>
  5181. <tbody>
  5182. <tr>
  5183. <td>
  5184. <code>type</code></br>
  5185. <em>
  5186. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  5187. SecretStoreConditionType
  5188. </a>
  5189. </em>
  5190. </td>
  5191. <td>
  5192. </td>
  5193. </tr>
  5194. <tr>
  5195. <td>
  5196. <code>status</code></br>
  5197. <em>
  5198. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  5199. Kubernetes core/v1.ConditionStatus
  5200. </a>
  5201. </em>
  5202. </td>
  5203. <td>
  5204. </td>
  5205. </tr>
  5206. <tr>
  5207. <td>
  5208. <code>reason</code></br>
  5209. <em>
  5210. string
  5211. </em>
  5212. </td>
  5213. <td>
  5214. <em>(Optional)</em>
  5215. </td>
  5216. </tr>
  5217. <tr>
  5218. <td>
  5219. <code>message</code></br>
  5220. <em>
  5221. string
  5222. </em>
  5223. </td>
  5224. <td>
  5225. <em>(Optional)</em>
  5226. </td>
  5227. </tr>
  5228. <tr>
  5229. <td>
  5230. <code>lastTransitionTime</code></br>
  5231. <em>
  5232. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  5233. Kubernetes meta/v1.Time
  5234. </a>
  5235. </em>
  5236. </td>
  5237. <td>
  5238. <em>(Optional)</em>
  5239. </td>
  5240. </tr>
  5241. </tbody>
  5242. </table>
  5243. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  5244. </h3>
  5245. <p>
  5246. <p>SecretsClient provides access to secrets.</p>
  5247. </p>
  5248. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  5249. </h3>
  5250. <p>
  5251. (<em>Appears on:</em>
  5252. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5253. </p>
  5254. <p>
  5255. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  5256. </p>
  5257. <table>
  5258. <thead>
  5259. <tr>
  5260. <th>Field</th>
  5261. <th>Description</th>
  5262. </tr>
  5263. </thead>
  5264. <tbody>
  5265. <tr>
  5266. <td>
  5267. <code>clientId</code></br>
  5268. <em>
  5269. string
  5270. </em>
  5271. </td>
  5272. <td>
  5273. </td>
  5274. </tr>
  5275. <tr>
  5276. <td>
  5277. <code>clientSecretSecretRef</code></br>
  5278. <em>
  5279. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5280. </em>
  5281. </td>
  5282. <td>
  5283. </td>
  5284. </tr>
  5285. </tbody>
  5286. </table>
  5287. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  5288. (<code>string</code> alias)</p></h3>
  5289. <p>
  5290. (<em>Appears on:</em>
  5291. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5292. </p>
  5293. <p>
  5294. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  5295. </p>
  5296. <table>
  5297. <thead>
  5298. <tr>
  5299. <th>Value</th>
  5300. <th>Description</th>
  5301. </tr>
  5302. </thead>
  5303. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  5304. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  5305. see: https://senhasegura.com/devops
  5306. </code></pre>
  5307. </td>
  5308. </tr></tbody>
  5309. </table>
  5310. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  5311. </h3>
  5312. <p>
  5313. (<em>Appears on:</em>
  5314. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5315. </p>
  5316. <p>
  5317. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  5318. </p>
  5319. <table>
  5320. <thead>
  5321. <tr>
  5322. <th>Field</th>
  5323. <th>Description</th>
  5324. </tr>
  5325. </thead>
  5326. <tbody>
  5327. <tr>
  5328. <td>
  5329. <code>url</code></br>
  5330. <em>
  5331. string
  5332. </em>
  5333. </td>
  5334. <td>
  5335. <p>URL of senhasegura</p>
  5336. </td>
  5337. </tr>
  5338. <tr>
  5339. <td>
  5340. <code>module</code></br>
  5341. <em>
  5342. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  5343. SenhaseguraModuleType
  5344. </a>
  5345. </em>
  5346. </td>
  5347. <td>
  5348. <p>Module defines which senhasegura module should be used to get secrets</p>
  5349. </td>
  5350. </tr>
  5351. <tr>
  5352. <td>
  5353. <code>auth</code></br>
  5354. <em>
  5355. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  5356. SenhaseguraAuth
  5357. </a>
  5358. </em>
  5359. </td>
  5360. <td>
  5361. <p>Auth defines parameters to authenticate in senhasegura</p>
  5362. </td>
  5363. </tr>
  5364. <tr>
  5365. <td>
  5366. <code>ignoreSslCertificate</code></br>
  5367. <em>
  5368. bool
  5369. </em>
  5370. </td>
  5371. <td>
  5372. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  5373. </td>
  5374. </tr>
  5375. </tbody>
  5376. </table>
  5377. <h3 id="external-secrets.io/v1beta1.SourceRef">SourceRef
  5378. </h3>
  5379. <p>
  5380. (<em>Appears on:</em>
  5381. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  5382. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5383. </p>
  5384. <p>
  5385. <p>SourceRef allows you to override the source
  5386. from which the secret will be pulled from.
  5387. You can define at maximum one property.</p>
  5388. </p>
  5389. <table>
  5390. <thead>
  5391. <tr>
  5392. <th>Field</th>
  5393. <th>Description</th>
  5394. </tr>
  5395. </thead>
  5396. <tbody>
  5397. <tr>
  5398. <td>
  5399. <code>storeRef</code></br>
  5400. <em>
  5401. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  5402. SecretStoreRef
  5403. </a>
  5404. </em>
  5405. </td>
  5406. <td>
  5407. <em>(Optional)</em>
  5408. </td>
  5409. </tr>
  5410. <tr>
  5411. <td>
  5412. <code>generatorRef</code></br>
  5413. <em>
  5414. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  5415. GeneratorRef
  5416. </a>
  5417. </em>
  5418. </td>
  5419. <td>
  5420. <em>(Optional)</em>
  5421. <p>GeneratorRef points to a generator custom resource in</p>
  5422. </td>
  5423. </tr>
  5424. </tbody>
  5425. </table>
  5426. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  5427. (<code>string</code> alias)</p></h3>
  5428. <p>
  5429. (<em>Appears on:</em>
  5430. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5431. </p>
  5432. <p>
  5433. </p>
  5434. <table>
  5435. <thead>
  5436. <tr>
  5437. <th>Value</th>
  5438. <th>Description</th>
  5439. </tr>
  5440. </thead>
  5441. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5442. <td></td>
  5443. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5444. <td></td>
  5445. </tr></tbody>
  5446. </table>
  5447. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  5448. </h3>
  5449. <p>
  5450. (<em>Appears on:</em>
  5451. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5452. </p>
  5453. <p>
  5454. </p>
  5455. <table>
  5456. <thead>
  5457. <tr>
  5458. <th>Field</th>
  5459. <th>Description</th>
  5460. </tr>
  5461. </thead>
  5462. <tbody>
  5463. <tr>
  5464. <td>
  5465. <code>configMap</code></br>
  5466. <em>
  5467. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5468. TemplateRef
  5469. </a>
  5470. </em>
  5471. </td>
  5472. <td>
  5473. </td>
  5474. </tr>
  5475. <tr>
  5476. <td>
  5477. <code>secret</code></br>
  5478. <em>
  5479. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5480. TemplateRef
  5481. </a>
  5482. </em>
  5483. </td>
  5484. <td>
  5485. </td>
  5486. </tr>
  5487. <tr>
  5488. <td>
  5489. <code>scope</code></br>
  5490. <em>
  5491. <a href="#external-secrets.io/v1beta1.TemplateScope">
  5492. TemplateScope
  5493. </a>
  5494. </em>
  5495. </td>
  5496. <td>
  5497. <em>(Optional)</em>
  5498. </td>
  5499. </tr>
  5500. <tr>
  5501. <td>
  5502. <code>target</code></br>
  5503. <em>
  5504. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  5505. TemplateTarget
  5506. </a>
  5507. </em>
  5508. </td>
  5509. <td>
  5510. <em>(Optional)</em>
  5511. </td>
  5512. </tr>
  5513. <tr>
  5514. <td>
  5515. <code>literal</code></br>
  5516. <em>
  5517. string
  5518. </em>
  5519. </td>
  5520. <td>
  5521. <em>(Optional)</em>
  5522. </td>
  5523. </tr>
  5524. </tbody>
  5525. </table>
  5526. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  5527. </h3>
  5528. <p>
  5529. (<em>Appears on:</em>
  5530. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5531. </p>
  5532. <p>
  5533. </p>
  5534. <table>
  5535. <thead>
  5536. <tr>
  5537. <th>Field</th>
  5538. <th>Description</th>
  5539. </tr>
  5540. </thead>
  5541. <tbody>
  5542. <tr>
  5543. <td>
  5544. <code>name</code></br>
  5545. <em>
  5546. string
  5547. </em>
  5548. </td>
  5549. <td>
  5550. </td>
  5551. </tr>
  5552. <tr>
  5553. <td>
  5554. <code>items</code></br>
  5555. <em>
  5556. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  5557. []TemplateRefItem
  5558. </a>
  5559. </em>
  5560. </td>
  5561. <td>
  5562. </td>
  5563. </tr>
  5564. </tbody>
  5565. </table>
  5566. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  5567. </h3>
  5568. <p>
  5569. (<em>Appears on:</em>
  5570. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  5571. </p>
  5572. <p>
  5573. </p>
  5574. <table>
  5575. <thead>
  5576. <tr>
  5577. <th>Field</th>
  5578. <th>Description</th>
  5579. </tr>
  5580. </thead>
  5581. <tbody>
  5582. <tr>
  5583. <td>
  5584. <code>key</code></br>
  5585. <em>
  5586. string
  5587. </em>
  5588. </td>
  5589. <td>
  5590. </td>
  5591. </tr>
  5592. </tbody>
  5593. </table>
  5594. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  5595. (<code>string</code> alias)</p></h3>
  5596. <p>
  5597. (<em>Appears on:</em>
  5598. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5599. </p>
  5600. <p>
  5601. </p>
  5602. <table>
  5603. <thead>
  5604. <tr>
  5605. <th>Value</th>
  5606. <th>Description</th>
  5607. </tr>
  5608. </thead>
  5609. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  5610. <td></td>
  5611. </tr><tr><td><p>&#34;Values&#34;</p></td>
  5612. <td></td>
  5613. </tr></tbody>
  5614. </table>
  5615. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  5616. (<code>string</code> alias)</p></h3>
  5617. <p>
  5618. (<em>Appears on:</em>
  5619. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5620. </p>
  5621. <p>
  5622. </p>
  5623. <table>
  5624. <thead>
  5625. <tr>
  5626. <th>Value</th>
  5627. <th>Description</th>
  5628. </tr>
  5629. </thead>
  5630. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  5631. <td></td>
  5632. </tr><tr><td><p>&#34;Data&#34;</p></td>
  5633. <td></td>
  5634. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  5635. <td></td>
  5636. </tr><tr><td><p>&#34;StringData&#34;</p></td>
  5637. <td></td>
  5638. </tr></tbody>
  5639. </table>
  5640. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  5641. </h3>
  5642. <p>
  5643. (<em>Appears on:</em>
  5644. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  5645. </p>
  5646. <p>
  5647. </p>
  5648. <table>
  5649. <thead>
  5650. <tr>
  5651. <th>Field</th>
  5652. <th>Description</th>
  5653. </tr>
  5654. </thead>
  5655. <tbody>
  5656. <tr>
  5657. <td>
  5658. <code>bearerToken</code></br>
  5659. <em>
  5660. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5661. </em>
  5662. </td>
  5663. <td>
  5664. </td>
  5665. </tr>
  5666. </tbody>
  5667. </table>
  5668. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  5669. (<code>byte</code> alias)</p></h3>
  5670. <p>
  5671. </p>
  5672. <table>
  5673. <thead>
  5674. <tr>
  5675. <th>Value</th>
  5676. <th>Description</th>
  5677. </tr>
  5678. </thead>
  5679. <tbody><tr><td><p>2</p></td>
  5680. <td><p>Error indicates that there is a misconfiguration.</p>
  5681. </td>
  5682. </tr><tr><td><p>0</p></td>
  5683. <td><p>Ready indicates that the client is configured correctly
  5684. and can be used.</p>
  5685. </td>
  5686. </tr><tr><td><p>1</p></td>
  5687. <td><p>Unknown indicates that the client can be used
  5688. but information is missing and it can not be validated.</p>
  5689. </td>
  5690. </tr></tbody>
  5691. </table>
  5692. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  5693. </h3>
  5694. <p>
  5695. (<em>Appears on:</em>
  5696. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5697. </p>
  5698. <p>
  5699. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  5700. with the role and secret stored in a Kubernetes Secret resource.</p>
  5701. </p>
  5702. <table>
  5703. <thead>
  5704. <tr>
  5705. <th>Field</th>
  5706. <th>Description</th>
  5707. </tr>
  5708. </thead>
  5709. <tbody>
  5710. <tr>
  5711. <td>
  5712. <code>path</code></br>
  5713. <em>
  5714. string
  5715. </em>
  5716. </td>
  5717. <td>
  5718. <p>Path where the App Role authentication backend is mounted
  5719. in Vault, e.g: &ldquo;approle&rdquo;</p>
  5720. </td>
  5721. </tr>
  5722. <tr>
  5723. <td>
  5724. <code>roleId</code></br>
  5725. <em>
  5726. string
  5727. </em>
  5728. </td>
  5729. <td>
  5730. <p>RoleID configured in the App Role authentication backend when setting
  5731. up the authentication backend in Vault.</p>
  5732. </td>
  5733. </tr>
  5734. <tr>
  5735. <td>
  5736. <code>secretRef</code></br>
  5737. <em>
  5738. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5739. </em>
  5740. </td>
  5741. <td>
  5742. <p>Reference to a key in a Secret that contains the App Role secret used
  5743. to authenticate with Vault.
  5744. The <code>key</code> field must be specified and denotes which entry within the Secret
  5745. resource is used as the app role secret.</p>
  5746. </td>
  5747. </tr>
  5748. </tbody>
  5749. </table>
  5750. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  5751. </h3>
  5752. <p>
  5753. (<em>Appears on:</em>
  5754. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5755. </p>
  5756. <p>
  5757. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  5758. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  5759. can be specified.</p>
  5760. </p>
  5761. <table>
  5762. <thead>
  5763. <tr>
  5764. <th>Field</th>
  5765. <th>Description</th>
  5766. </tr>
  5767. </thead>
  5768. <tbody>
  5769. <tr>
  5770. <td>
  5771. <code>tokenSecretRef</code></br>
  5772. <em>
  5773. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5774. </em>
  5775. </td>
  5776. <td>
  5777. <em>(Optional)</em>
  5778. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  5779. </td>
  5780. </tr>
  5781. <tr>
  5782. <td>
  5783. <code>appRole</code></br>
  5784. <em>
  5785. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  5786. VaultAppRole
  5787. </a>
  5788. </em>
  5789. </td>
  5790. <td>
  5791. <em>(Optional)</em>
  5792. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  5793. with the role and secret stored in a Kubernetes Secret resource.</p>
  5794. </td>
  5795. </tr>
  5796. <tr>
  5797. <td>
  5798. <code>kubernetes</code></br>
  5799. <em>
  5800. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  5801. VaultKubernetesAuth
  5802. </a>
  5803. </em>
  5804. </td>
  5805. <td>
  5806. <em>(Optional)</em>
  5807. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  5808. token stored in the named Secret resource to the Vault server.</p>
  5809. </td>
  5810. </tr>
  5811. <tr>
  5812. <td>
  5813. <code>ldap</code></br>
  5814. <em>
  5815. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  5816. VaultLdapAuth
  5817. </a>
  5818. </em>
  5819. </td>
  5820. <td>
  5821. <em>(Optional)</em>
  5822. <p>Ldap authenticates with Vault by passing username/password pair using
  5823. the LDAP authentication method</p>
  5824. </td>
  5825. </tr>
  5826. <tr>
  5827. <td>
  5828. <code>jwt</code></br>
  5829. <em>
  5830. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  5831. VaultJwtAuth
  5832. </a>
  5833. </em>
  5834. </td>
  5835. <td>
  5836. <em>(Optional)</em>
  5837. <p>Jwt authenticates with Vault by passing role and JWT token using the
  5838. JWT/OIDC authentication method</p>
  5839. </td>
  5840. </tr>
  5841. <tr>
  5842. <td>
  5843. <code>cert</code></br>
  5844. <em>
  5845. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  5846. VaultCertAuth
  5847. </a>
  5848. </em>
  5849. </td>
  5850. <td>
  5851. <em>(Optional)</em>
  5852. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  5853. Cert authentication method</p>
  5854. </td>
  5855. </tr>
  5856. </tbody>
  5857. </table>
  5858. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  5859. </h3>
  5860. <p>
  5861. (<em>Appears on:</em>
  5862. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5863. </p>
  5864. <p>
  5865. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5866. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  5867. </p>
  5868. <table>
  5869. <thead>
  5870. <tr>
  5871. <th>Field</th>
  5872. <th>Description</th>
  5873. </tr>
  5874. </thead>
  5875. <tbody>
  5876. <tr>
  5877. <td>
  5878. <code>clientCert</code></br>
  5879. <em>
  5880. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5881. </em>
  5882. </td>
  5883. <td>
  5884. <em>(Optional)</em>
  5885. <p>ClientCert is a certificate to authenticate using the Cert Vault
  5886. authentication method</p>
  5887. </td>
  5888. </tr>
  5889. <tr>
  5890. <td>
  5891. <code>secretRef</code></br>
  5892. <em>
  5893. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5894. </em>
  5895. </td>
  5896. <td>
  5897. <p>SecretRef to a key in a Secret resource containing client private key to
  5898. authenticate with Vault using the Cert authentication method</p>
  5899. </td>
  5900. </tr>
  5901. </tbody>
  5902. </table>
  5903. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  5904. </h3>
  5905. <p>
  5906. (<em>Appears on:</em>
  5907. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5908. </p>
  5909. <p>
  5910. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5911. method, with the role name and a token stored in a Kubernetes Secret resource or
  5912. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  5913. </p>
  5914. <table>
  5915. <thead>
  5916. <tr>
  5917. <th>Field</th>
  5918. <th>Description</th>
  5919. </tr>
  5920. </thead>
  5921. <tbody>
  5922. <tr>
  5923. <td>
  5924. <code>path</code></br>
  5925. <em>
  5926. string
  5927. </em>
  5928. </td>
  5929. <td>
  5930. <p>Path where the JWT authentication backend is mounted
  5931. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  5932. </td>
  5933. </tr>
  5934. <tr>
  5935. <td>
  5936. <code>role</code></br>
  5937. <em>
  5938. string
  5939. </em>
  5940. </td>
  5941. <td>
  5942. <em>(Optional)</em>
  5943. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  5944. authentication method</p>
  5945. </td>
  5946. </tr>
  5947. <tr>
  5948. <td>
  5949. <code>secretRef</code></br>
  5950. <em>
  5951. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5952. </em>
  5953. </td>
  5954. <td>
  5955. <em>(Optional)</em>
  5956. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  5957. authenticate with Vault using the JWT/OIDC authentication method.</p>
  5958. </td>
  5959. </tr>
  5960. <tr>
  5961. <td>
  5962. <code>kubernetesServiceAccountToken</code></br>
  5963. <em>
  5964. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  5965. VaultKubernetesServiceAccountTokenAuth
  5966. </a>
  5967. </em>
  5968. </td>
  5969. <td>
  5970. <em>(Optional)</em>
  5971. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  5972. a token for with the <code>TokenRequest</code> API.</p>
  5973. </td>
  5974. </tr>
  5975. </tbody>
  5976. </table>
  5977. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  5978. (<code>string</code> alias)</p></h3>
  5979. <p>
  5980. (<em>Appears on:</em>
  5981. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5982. </p>
  5983. <p>
  5984. </p>
  5985. <table>
  5986. <thead>
  5987. <tr>
  5988. <th>Value</th>
  5989. <th>Description</th>
  5990. </tr>
  5991. </thead>
  5992. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5993. <td></td>
  5994. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5995. <td></td>
  5996. </tr></tbody>
  5997. </table>
  5998. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  5999. </h3>
  6000. <p>
  6001. (<em>Appears on:</em>
  6002. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6003. </p>
  6004. <p>
  6005. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  6006. a Secret.</p>
  6007. </p>
  6008. <table>
  6009. <thead>
  6010. <tr>
  6011. <th>Field</th>
  6012. <th>Description</th>
  6013. </tr>
  6014. </thead>
  6015. <tbody>
  6016. <tr>
  6017. <td>
  6018. <code>mountPath</code></br>
  6019. <em>
  6020. string
  6021. </em>
  6022. </td>
  6023. <td>
  6024. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  6025. &ldquo;kubernetes&rdquo;</p>
  6026. </td>
  6027. </tr>
  6028. <tr>
  6029. <td>
  6030. <code>serviceAccountRef</code></br>
  6031. <em>
  6032. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6033. </em>
  6034. </td>
  6035. <td>
  6036. <em>(Optional)</em>
  6037. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  6038. If the service account is specified, the service account secret token JWT will be used
  6039. for authenticating with Vault. If the service account selector is not supplied,
  6040. the secretRef will be used instead.</p>
  6041. </td>
  6042. </tr>
  6043. <tr>
  6044. <td>
  6045. <code>secretRef</code></br>
  6046. <em>
  6047. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6048. </em>
  6049. </td>
  6050. <td>
  6051. <em>(Optional)</em>
  6052. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  6053. for authenticating with Vault. If a name is specified without a key,
  6054. <code>token</code> is the default. If one is not specified, the one bound to
  6055. the controller will be used.</p>
  6056. </td>
  6057. </tr>
  6058. <tr>
  6059. <td>
  6060. <code>role</code></br>
  6061. <em>
  6062. string
  6063. </em>
  6064. </td>
  6065. <td>
  6066. <p>A required field containing the Vault Role to assume. A Role binds a
  6067. Kubernetes ServiceAccount with a set of Vault policies.</p>
  6068. </td>
  6069. </tr>
  6070. </tbody>
  6071. </table>
  6072. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  6073. </h3>
  6074. <p>
  6075. (<em>Appears on:</em>
  6076. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  6077. </p>
  6078. <p>
  6079. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  6080. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  6081. </p>
  6082. <table>
  6083. <thead>
  6084. <tr>
  6085. <th>Field</th>
  6086. <th>Description</th>
  6087. </tr>
  6088. </thead>
  6089. <tbody>
  6090. <tr>
  6091. <td>
  6092. <code>serviceAccountRef</code></br>
  6093. <em>
  6094. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6095. </em>
  6096. </td>
  6097. <td>
  6098. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  6099. </td>
  6100. </tr>
  6101. <tr>
  6102. <td>
  6103. <code>audiences</code></br>
  6104. <em>
  6105. []string
  6106. </em>
  6107. </td>
  6108. <td>
  6109. <em>(Optional)</em>
  6110. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  6111. account token for the service account referenced by <code>serviceAccountRef</code>.
  6112. Defaults to a single audience <code>vault</code> it not specified.
  6113. Deprecated: use serviceAccountRef.Audiences instead</p>
  6114. </td>
  6115. </tr>
  6116. <tr>
  6117. <td>
  6118. <code>expirationSeconds</code></br>
  6119. <em>
  6120. int64
  6121. </em>
  6122. </td>
  6123. <td>
  6124. <em>(Optional)</em>
  6125. <p>Optional expiration time in seconds that will be used to request a temporary
  6126. Kubernetes service account token for the service account referenced by
  6127. <code>serviceAccountRef</code>.
  6128. Deprecated: this will be removed in the future.
  6129. Defaults to 10 minutes.</p>
  6130. </td>
  6131. </tr>
  6132. </tbody>
  6133. </table>
  6134. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  6135. </h3>
  6136. <p>
  6137. (<em>Appears on:</em>
  6138. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6139. </p>
  6140. <p>
  6141. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  6142. with the username and password stored in a Kubernetes Secret resource.</p>
  6143. </p>
  6144. <table>
  6145. <thead>
  6146. <tr>
  6147. <th>Field</th>
  6148. <th>Description</th>
  6149. </tr>
  6150. </thead>
  6151. <tbody>
  6152. <tr>
  6153. <td>
  6154. <code>path</code></br>
  6155. <em>
  6156. string
  6157. </em>
  6158. </td>
  6159. <td>
  6160. <p>Path where the LDAP authentication backend is mounted
  6161. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  6162. </td>
  6163. </tr>
  6164. <tr>
  6165. <td>
  6166. <code>username</code></br>
  6167. <em>
  6168. string
  6169. </em>
  6170. </td>
  6171. <td>
  6172. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  6173. authentication method</p>
  6174. </td>
  6175. </tr>
  6176. <tr>
  6177. <td>
  6178. <code>secretRef</code></br>
  6179. <em>
  6180. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6181. </em>
  6182. </td>
  6183. <td>
  6184. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  6185. user used to authenticate with Vault using the LDAP authentication
  6186. method</p>
  6187. </td>
  6188. </tr>
  6189. </tbody>
  6190. </table>
  6191. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  6192. </h3>
  6193. <p>
  6194. (<em>Appears on:</em>
  6195. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6196. </p>
  6197. <p>
  6198. <p>Configures an store to sync secrets using a HashiCorp Vault
  6199. KV backend.</p>
  6200. </p>
  6201. <table>
  6202. <thead>
  6203. <tr>
  6204. <th>Field</th>
  6205. <th>Description</th>
  6206. </tr>
  6207. </thead>
  6208. <tbody>
  6209. <tr>
  6210. <td>
  6211. <code>auth</code></br>
  6212. <em>
  6213. <a href="#external-secrets.io/v1beta1.VaultAuth">
  6214. VaultAuth
  6215. </a>
  6216. </em>
  6217. </td>
  6218. <td>
  6219. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  6220. </td>
  6221. </tr>
  6222. <tr>
  6223. <td>
  6224. <code>server</code></br>
  6225. <em>
  6226. string
  6227. </em>
  6228. </td>
  6229. <td>
  6230. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  6231. </td>
  6232. </tr>
  6233. <tr>
  6234. <td>
  6235. <code>path</code></br>
  6236. <em>
  6237. string
  6238. </em>
  6239. </td>
  6240. <td>
  6241. <em>(Optional)</em>
  6242. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  6243. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  6244. for fetching secrets from Vault is optional and will be appended
  6245. if not present in specified path.</p>
  6246. </td>
  6247. </tr>
  6248. <tr>
  6249. <td>
  6250. <code>version</code></br>
  6251. <em>
  6252. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  6253. VaultKVStoreVersion
  6254. </a>
  6255. </em>
  6256. </td>
  6257. <td>
  6258. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  6259. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  6260. </td>
  6261. </tr>
  6262. <tr>
  6263. <td>
  6264. <code>namespace</code></br>
  6265. <em>
  6266. string
  6267. </em>
  6268. </td>
  6269. <td>
  6270. <em>(Optional)</em>
  6271. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  6272. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  6273. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  6274. </td>
  6275. </tr>
  6276. <tr>
  6277. <td>
  6278. <code>caBundle</code></br>
  6279. <em>
  6280. []byte
  6281. </em>
  6282. </td>
  6283. <td>
  6284. <em>(Optional)</em>
  6285. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  6286. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6287. plain HTTP protocol connection. If not set the system root certificates
  6288. are used to validate the TLS connection.</p>
  6289. </td>
  6290. </tr>
  6291. <tr>
  6292. <td>
  6293. <code>caProvider</code></br>
  6294. <em>
  6295. <a href="#external-secrets.io/v1beta1.CAProvider">
  6296. CAProvider
  6297. </a>
  6298. </em>
  6299. </td>
  6300. <td>
  6301. <em>(Optional)</em>
  6302. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  6303. </td>
  6304. </tr>
  6305. <tr>
  6306. <td>
  6307. <code>readYourWrites</code></br>
  6308. <em>
  6309. bool
  6310. </em>
  6311. </td>
  6312. <td>
  6313. <em>(Optional)</em>
  6314. <p>ReadYourWrites ensures isolated read-after-write semantics by
  6315. providing discovered cluster replication states in each request.
  6316. More information about eventual consistency in Vault can be found here
  6317. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  6318. </td>
  6319. </tr>
  6320. <tr>
  6321. <td>
  6322. <code>forwardInconsistent</code></br>
  6323. <em>
  6324. bool
  6325. </em>
  6326. </td>
  6327. <td>
  6328. <em>(Optional)</em>
  6329. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  6330. leader instead of simply retrying within a loop. This can increase performance if
  6331. the option is enabled serverside.
  6332. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  6333. </td>
  6334. </tr>
  6335. </tbody>
  6336. </table>
  6337. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  6338. </h3>
  6339. <p>
  6340. (<em>Appears on:</em>
  6341. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6342. </p>
  6343. <p>
  6344. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  6345. </p>
  6346. <table>
  6347. <thead>
  6348. <tr>
  6349. <th>Field</th>
  6350. <th>Description</th>
  6351. </tr>
  6352. </thead>
  6353. <tbody>
  6354. <tr>
  6355. <td>
  6356. <code>type</code></br>
  6357. <em>
  6358. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  6359. WebhookCAProviderType
  6360. </a>
  6361. </em>
  6362. </td>
  6363. <td>
  6364. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  6365. </td>
  6366. </tr>
  6367. <tr>
  6368. <td>
  6369. <code>name</code></br>
  6370. <em>
  6371. string
  6372. </em>
  6373. </td>
  6374. <td>
  6375. <p>The name of the object located at the provider type.</p>
  6376. </td>
  6377. </tr>
  6378. <tr>
  6379. <td>
  6380. <code>key</code></br>
  6381. <em>
  6382. string
  6383. </em>
  6384. </td>
  6385. <td>
  6386. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  6387. </td>
  6388. </tr>
  6389. <tr>
  6390. <td>
  6391. <code>namespace</code></br>
  6392. <em>
  6393. string
  6394. </em>
  6395. </td>
  6396. <td>
  6397. <em>(Optional)</em>
  6398. <p>The namespace the Provider type is in.</p>
  6399. </td>
  6400. </tr>
  6401. </tbody>
  6402. </table>
  6403. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  6404. (<code>string</code> alias)</p></h3>
  6405. <p>
  6406. (<em>Appears on:</em>
  6407. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  6408. </p>
  6409. <p>
  6410. </p>
  6411. <table>
  6412. <thead>
  6413. <tr>
  6414. <th>Value</th>
  6415. <th>Description</th>
  6416. </tr>
  6417. </thead>
  6418. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  6419. <td></td>
  6420. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  6421. <td></td>
  6422. </tr></tbody>
  6423. </table>
  6424. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  6425. </h3>
  6426. <p>
  6427. (<em>Appears on:</em>
  6428. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6429. </p>
  6430. <p>
  6431. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  6432. </p>
  6433. <table>
  6434. <thead>
  6435. <tr>
  6436. <th>Field</th>
  6437. <th>Description</th>
  6438. </tr>
  6439. </thead>
  6440. <tbody>
  6441. <tr>
  6442. <td>
  6443. <code>method</code></br>
  6444. <em>
  6445. string
  6446. </em>
  6447. </td>
  6448. <td>
  6449. <p>Webhook Method</p>
  6450. </td>
  6451. </tr>
  6452. <tr>
  6453. <td>
  6454. <code>url</code></br>
  6455. <em>
  6456. string
  6457. </em>
  6458. </td>
  6459. <td>
  6460. <p>Webhook url to call</p>
  6461. </td>
  6462. </tr>
  6463. <tr>
  6464. <td>
  6465. <code>headers</code></br>
  6466. <em>
  6467. map[string]string
  6468. </em>
  6469. </td>
  6470. <td>
  6471. <em>(Optional)</em>
  6472. <p>Headers</p>
  6473. </td>
  6474. </tr>
  6475. <tr>
  6476. <td>
  6477. <code>body</code></br>
  6478. <em>
  6479. string
  6480. </em>
  6481. </td>
  6482. <td>
  6483. <em>(Optional)</em>
  6484. <p>Body</p>
  6485. </td>
  6486. </tr>
  6487. <tr>
  6488. <td>
  6489. <code>timeout</code></br>
  6490. <em>
  6491. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  6492. Kubernetes meta/v1.Duration
  6493. </a>
  6494. </em>
  6495. </td>
  6496. <td>
  6497. <em>(Optional)</em>
  6498. <p>Timeout</p>
  6499. </td>
  6500. </tr>
  6501. <tr>
  6502. <td>
  6503. <code>result</code></br>
  6504. <em>
  6505. <a href="#external-secrets.io/v1beta1.WebhookResult">
  6506. WebhookResult
  6507. </a>
  6508. </em>
  6509. </td>
  6510. <td>
  6511. <p>Result formatting</p>
  6512. </td>
  6513. </tr>
  6514. <tr>
  6515. <td>
  6516. <code>secrets</code></br>
  6517. <em>
  6518. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  6519. []WebhookSecret
  6520. </a>
  6521. </em>
  6522. </td>
  6523. <td>
  6524. <em>(Optional)</em>
  6525. <p>Secrets to fill in templates
  6526. These secrets will be passed to the templating function as key value pairs under the given name</p>
  6527. </td>
  6528. </tr>
  6529. <tr>
  6530. <td>
  6531. <code>caBundle</code></br>
  6532. <em>
  6533. []byte
  6534. </em>
  6535. </td>
  6536. <td>
  6537. <em>(Optional)</em>
  6538. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  6539. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6540. plain HTTP protocol connection. If not set the system root certificates
  6541. are used to validate the TLS connection.</p>
  6542. </td>
  6543. </tr>
  6544. <tr>
  6545. <td>
  6546. <code>caProvider</code></br>
  6547. <em>
  6548. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  6549. WebhookCAProvider
  6550. </a>
  6551. </em>
  6552. </td>
  6553. <td>
  6554. <em>(Optional)</em>
  6555. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  6556. </td>
  6557. </tr>
  6558. </tbody>
  6559. </table>
  6560. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  6561. </h3>
  6562. <p>
  6563. (<em>Appears on:</em>
  6564. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6565. </p>
  6566. <p>
  6567. </p>
  6568. <table>
  6569. <thead>
  6570. <tr>
  6571. <th>Field</th>
  6572. <th>Description</th>
  6573. </tr>
  6574. </thead>
  6575. <tbody>
  6576. <tr>
  6577. <td>
  6578. <code>jsonPath</code></br>
  6579. <em>
  6580. string
  6581. </em>
  6582. </td>
  6583. <td>
  6584. <em>(Optional)</em>
  6585. <p>Json path of return value</p>
  6586. </td>
  6587. </tr>
  6588. </tbody>
  6589. </table>
  6590. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  6591. </h3>
  6592. <p>
  6593. (<em>Appears on:</em>
  6594. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6595. </p>
  6596. <p>
  6597. </p>
  6598. <table>
  6599. <thead>
  6600. <tr>
  6601. <th>Field</th>
  6602. <th>Description</th>
  6603. </tr>
  6604. </thead>
  6605. <tbody>
  6606. <tr>
  6607. <td>
  6608. <code>name</code></br>
  6609. <em>
  6610. string
  6611. </em>
  6612. </td>
  6613. <td>
  6614. <p>Name of this secret in templates</p>
  6615. </td>
  6616. </tr>
  6617. <tr>
  6618. <td>
  6619. <code>secretRef</code></br>
  6620. <em>
  6621. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6622. </em>
  6623. </td>
  6624. <td>
  6625. <p>Secret ref to fill in credentials</p>
  6626. </td>
  6627. </tr>
  6628. </tbody>
  6629. </table>
  6630. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  6631. </h3>
  6632. <p>
  6633. (<em>Appears on:</em>
  6634. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6635. </p>
  6636. <p>
  6637. </p>
  6638. <table>
  6639. <thead>
  6640. <tr>
  6641. <th>Field</th>
  6642. <th>Description</th>
  6643. </tr>
  6644. </thead>
  6645. <tbody>
  6646. <tr>
  6647. <td>
  6648. <code>authorizedKeySecretRef</code></br>
  6649. <em>
  6650. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6651. </em>
  6652. </td>
  6653. <td>
  6654. <em>(Optional)</em>
  6655. <p>The authorized key used for authentication</p>
  6656. </td>
  6657. </tr>
  6658. </tbody>
  6659. </table>
  6660. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  6661. </h3>
  6662. <p>
  6663. (<em>Appears on:</em>
  6664. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6665. </p>
  6666. <p>
  6667. </p>
  6668. <table>
  6669. <thead>
  6670. <tr>
  6671. <th>Field</th>
  6672. <th>Description</th>
  6673. </tr>
  6674. </thead>
  6675. <tbody>
  6676. <tr>
  6677. <td>
  6678. <code>certSecretRef</code></br>
  6679. <em>
  6680. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6681. </em>
  6682. </td>
  6683. <td>
  6684. </td>
  6685. </tr>
  6686. </tbody>
  6687. </table>
  6688. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  6689. </h3>
  6690. <p>
  6691. (<em>Appears on:</em>
  6692. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6693. </p>
  6694. <p>
  6695. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  6696. </p>
  6697. <table>
  6698. <thead>
  6699. <tr>
  6700. <th>Field</th>
  6701. <th>Description</th>
  6702. </tr>
  6703. </thead>
  6704. <tbody>
  6705. <tr>
  6706. <td>
  6707. <code>apiEndpoint</code></br>
  6708. <em>
  6709. string
  6710. </em>
  6711. </td>
  6712. <td>
  6713. <em>(Optional)</em>
  6714. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6715. </td>
  6716. </tr>
  6717. <tr>
  6718. <td>
  6719. <code>auth</code></br>
  6720. <em>
  6721. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  6722. YandexCertificateManagerAuth
  6723. </a>
  6724. </em>
  6725. </td>
  6726. <td>
  6727. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  6728. </td>
  6729. </tr>
  6730. <tr>
  6731. <td>
  6732. <code>caProvider</code></br>
  6733. <em>
  6734. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  6735. YandexCertificateManagerCAProvider
  6736. </a>
  6737. </em>
  6738. </td>
  6739. <td>
  6740. <em>(Optional)</em>
  6741. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6742. </td>
  6743. </tr>
  6744. </tbody>
  6745. </table>
  6746. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  6747. </h3>
  6748. <p>
  6749. (<em>Appears on:</em>
  6750. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6751. </p>
  6752. <p>
  6753. </p>
  6754. <table>
  6755. <thead>
  6756. <tr>
  6757. <th>Field</th>
  6758. <th>Description</th>
  6759. </tr>
  6760. </thead>
  6761. <tbody>
  6762. <tr>
  6763. <td>
  6764. <code>authorizedKeySecretRef</code></br>
  6765. <em>
  6766. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6767. </em>
  6768. </td>
  6769. <td>
  6770. <em>(Optional)</em>
  6771. <p>The authorized key used for authentication</p>
  6772. </td>
  6773. </tr>
  6774. </tbody>
  6775. </table>
  6776. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  6777. </h3>
  6778. <p>
  6779. (<em>Appears on:</em>
  6780. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6781. </p>
  6782. <p>
  6783. </p>
  6784. <table>
  6785. <thead>
  6786. <tr>
  6787. <th>Field</th>
  6788. <th>Description</th>
  6789. </tr>
  6790. </thead>
  6791. <tbody>
  6792. <tr>
  6793. <td>
  6794. <code>certSecretRef</code></br>
  6795. <em>
  6796. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6797. </em>
  6798. </td>
  6799. <td>
  6800. </td>
  6801. </tr>
  6802. </tbody>
  6803. </table>
  6804. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  6805. </h3>
  6806. <p>
  6807. (<em>Appears on:</em>
  6808. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6809. </p>
  6810. <p>
  6811. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  6812. </p>
  6813. <table>
  6814. <thead>
  6815. <tr>
  6816. <th>Field</th>
  6817. <th>Description</th>
  6818. </tr>
  6819. </thead>
  6820. <tbody>
  6821. <tr>
  6822. <td>
  6823. <code>apiEndpoint</code></br>
  6824. <em>
  6825. string
  6826. </em>
  6827. </td>
  6828. <td>
  6829. <em>(Optional)</em>
  6830. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6831. </td>
  6832. </tr>
  6833. <tr>
  6834. <td>
  6835. <code>auth</code></br>
  6836. <em>
  6837. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  6838. YandexLockboxAuth
  6839. </a>
  6840. </em>
  6841. </td>
  6842. <td>
  6843. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  6844. </td>
  6845. </tr>
  6846. <tr>
  6847. <td>
  6848. <code>caProvider</code></br>
  6849. <em>
  6850. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  6851. YandexLockboxCAProvider
  6852. </a>
  6853. </em>
  6854. </td>
  6855. <td>
  6856. <em>(Optional)</em>
  6857. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6858. </td>
  6859. </tr>
  6860. </tbody>
  6861. </table>
  6862. <hr/>
  6863. <p><em>
  6864. Generated with <code>gen-crd-api-reference-docs</code>.
  6865. </em></p>
  6866. </article>
  6867. </div>
  6868. </div>
  6869. </main>
  6870. <footer class="md-footer">
  6871. <div class="md-footer-meta md-typeset">
  6872. <div class="md-footer-meta__inner md-grid">
  6873. <div class="md-copyright">
  6874. <div class="md-copyright__highlight">
  6875. &copy; 2023 The external-secrets Authors.<br/>
  6876. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  6877. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  6878. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  6879. </div>
  6880. Made with
  6881. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  6882. Material for MkDocs
  6883. </a>
  6884. </div>
  6885. </div>
  6886. </div>
  6887. </footer>
  6888. </div>
  6889. <div class="md-dialog" data-md-component="dialog">
  6890. <div class="md-dialog__inner md-typeset"></div>
  6891. </div>
  6892. <script id="__config" type="application/json">{"base": "..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../assets/javascripts/workers/search.208ed371.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  6893. <script src="../assets/javascripts/bundle.fac441b0.min.js"></script>
  6894. </body>
  6895. </html>